Subscribe via RSS
  Looking for VBA Tutorials?

Understanding Python Regex Matching

Jun 7, 2019

Understanding Python Regex (concatenation, alternation, and repetition) and how to use the Python re module to match strings and byte sequences to a regular expression.

Making New Collations with Python SQLite create_collation

May 24, 2019

Learn how to make your own collations, or collate sequences, with the Python SQLite3 create_collation method. We will also describe the predefined collations.

Ultimate VBA Training Bundle

$120.00 $57.00

Want to learn more programming languages? We've combined each of our comprehensive VBA reference guides into a single bundle with over 200 tips and macros covering the 125 most important topics in VBA.

Create Scalar and Aggregate Functions for Python SQLite

May 10, 2019

Learn how to create your own scalar and aggregate functions and add them to a Python SQLite connection with the create_function and create_aggregate methods.

Convert CSV to SQLite Python and Export SQLite to CSV

Apr 26, 2019

In this tutorial we will learn how to import data from a CSV file into a SQLite database using Python adapters, and how to write data from a SQLite database to a CSV file using Python converters.

Adapting and Converting SQLite Data Types for Python

Apr 12, 2019

This tutorial will explain all the methods the sqlite3 module provides for converting and adapting Python data types into SQLite types, and the other way around.

Thought about learning VBA?

$120.00 $57.00

We created a suite of 6 VBA cheat sheets with over 200 tips showing you everything you need to know to start making power Excel applications. Take a look!

Copy Data from Excel to an sqlite3 Database with Python

Apr 5, 2019

This tutorial describes how to read data from an Excel sheet and transfer the data to an SQLite database using the pandas, xlrd and sqlite3 Python libraries.

How to Add and Read Database Data with Python sqlite3

Mar 22, 2019

This tutorials describes the native SQLite data types, and explains the core features of the Python sqlite3 module, including how to add data to and read data from a SQL Database.

Writing CSV Files with the Python CSV Module

Mar 8, 2019

This tutorial explains how to write a CSV file using Python. It shows several Python CSV writing examples, including how to export data from a database to a CSV file.

Reading CSV Files with the Python CSV Module

Feb 22, 2019

Learn how to use Python to read CSV files with this tutorial describing the Python CSV reader function, the CSV DictReader class, and troubleshooting encoding errors.

Introduction to CSV Dialects with the Python CSV Module

Feb 15, 2019

The CSV data format lets you exchange data between applications in an implementation-independent fashion. This tutorial describes the syntax of the CSV dialects, and how you can use the Python CSV module to handle different CSV files.

subscribe via RSS