
Product
Introducing Custom Tabs for Org Alerts
Create and share saved alert views with custom tabs on the org alerts page, making it easier for teams to return to consistent, named filter sets.
mdb-parser
Advanced tools
Easy use Python library to read Microsoft Access (.mdb, .accdb) database files, this library use the mdb-tools command.
Use pip: pip install mdb-parser
Or install manually:
git clone https://github.com/fedestella263/mdb_parser
cd mdb_parser
python3 setup.py install
from mdb_parser import MDBParser, MDBTable
db = MDBParser(file_path="db.accdb")
# Get and print the database tables
print(db.tables)
# Get a table from the DB.
table = db.get_table("MY_TABLE_NAME")
# Or you can use the MDBTable class.
table = MDBTable(file_path="db.accdb", table="MY_TABLE_NAME")
# Get and print the table columns.
print(table.columns)
# Iterate the table rows.
for row in table:
print(row)
FAQs
Microsoft Access (.mdb, .accdb) database file parser
We found that mdb-parser demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Product
Create and share saved alert views with custom tabs on the org alerts page, making it easier for teams to return to consistent, named filter sets.

Product
Socket’s Rust and Cargo support is now generally available, providing dependency analysis and supply chain visibility for Rust projects.

Security News
Chrome 144 introduces the Temporal API, a modern approach to date and time handling designed to fix long-standing issues with JavaScript’s Date object.