gordthompson / msaccessdb

Python package to create a new (empty) Access database.
Apache License 2.0
10 stars 3 forks source link

msaccessdb

A package to create a new (empty) Access database. Potentially of interest to pyodbc users who:

Installation:

pip install msaccessdb

Usage:

import msaccessdb
msaccessdb.create(r'C:\path\to\new.accdb')

Notes:

  1. This package does not need the Access Database Engine to create a database.

  2. No effort is made to prevent overwriting an existing file.

  3. This package simply creates the file. It doesn't automatically connect to it using pyodbc (or anything else).