# AccessDB Parser (Pure Python)
Microsoft Access (.mdb / .accdb) database files parser. The parsing logic is fully written in python and works without any external binary dependencies.
# Installing
Use pip: `pip install access-parser`
Or install manually:
```bash
git clone https://github.com/ClarotyICS/access_parser.git
cd access_parser
python3 setup.py install
```
# Demo
[](https://asciinema.org/a/345445)
# Usage Example
```python
from access_parser import AccessParser
# .mdb or .accdb file
db = AccessParser("/path/to/mdb/file.mdb")
# Print DB tables
print(db.catalog)
# Tables are stored as defaultdict(list) -- table[column][row_index]
table = db.parse_table("table_name")
# Pretty print all tables
db.print_database()
```
### Known Issues
*
This library was tested on a limited subset of database files. Due to the differences between database versions and the complexity of the parsing we expect to find more parsing edge-cases.
To help us resolve issues faster please provide as much data as you can when opening an issue - DB file if possible and full trace including log messages.
### Thanks
* This library was made possible by the great work by mdb-tools. The logic in this library heavily relies on the excellent documentation they have https://github.com/brianb/mdbtools
* Huge thanks to Mashav Sapir for the help debugging, CRing and contributing to this project https://github.com/mashavs
Raw data
{
"_id": null,
"home_page": "https://github.com/ClarotyICS/access_parser",
"name": "access-parser",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.6",
"maintainer_email": null,
"keywords": null,
"author": "Uri Katz",
"author_email": "uri.k@claroty.com",
"download_url": "https://files.pythonhosted.org/packages/cb/8f/2eb15ff25f58ae4674737aa3f5d6d7b44fc98d9a14c35f06c221a8950cc9/access_parser-0.0.6.tar.gz",
"platform": null,
"description": "# AccessDB Parser (Pure Python)\nMicrosoft Access (.mdb / .accdb) database files parser. The parsing logic is fully written in python and works without any external binary dependencies.\n\n# Installing\nUse pip: `pip install access-parser`\n\nOr install manually:\n```bash\ngit clone https://github.com/ClarotyICS/access_parser.git\ncd access_parser\npython3 setup.py install\n```\n\n# Demo\n[](https://asciinema.org/a/345445)\n\n# Usage Example\n```python\nfrom access_parser import AccessParser\n\n# .mdb or .accdb file\ndb = AccessParser(\"/path/to/mdb/file.mdb\")\n\n# Print DB tables\nprint(db.catalog)\n\n# Tables are stored as defaultdict(list) -- table[column][row_index]\ntable = db.parse_table(\"table_name\")\n\n# Pretty print all tables\ndb.print_database()\n\n```\n\n### Known Issues\n* \n\nThis library was tested on a limited subset of database files. Due to the differences between database versions and the complexity of the parsing we expect to find more parsing edge-cases.\n\nTo help us resolve issues faster please provide as much data as you can when opening an issue - DB file if possible and full trace including log messages.\n \n \n### Thanks\n* This library was made possible by the great work by mdb-tools. The logic in this library heavily relies on the excellent documentation they have https://github.com/brianb/mdbtools\n* Huge thanks to Mashav Sapir for the help debugging, CRing and contributing to this project https://github.com/mashavs\n\n\n",
"bugtrack_url": null,
"license": null,
"summary": "Access database (*.mdb, *.accdb) parser",
"version": "0.0.6",
"project_urls": {
"Homepage": "https://github.com/ClarotyICS/access_parser"
},
"split_keywords": [],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "cb8f2eb15ff25f58ae4674737aa3f5d6d7b44fc98d9a14c35f06c221a8950cc9",
"md5": "d55407121a20f1d9559d0540b8e65b61",
"sha256": "4fe1eb197cd49fa0b8ac02320d8dd98e07795f6fc01a59061434f50c064b4c69"
},
"downloads": -1,
"filename": "access_parser-0.0.6.tar.gz",
"has_sig": false,
"md5_digest": "d55407121a20f1d9559d0540b8e65b61",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.6",
"size": 17688,
"upload_time": "2025-01-23T17:41:40",
"upload_time_iso_8601": "2025-01-23T17:41:40.493701Z",
"url": "https://files.pythonhosted.org/packages/cb/8f/2eb15ff25f58ae4674737aa3f5d6d7b44fc98d9a14c35f06c221a8950cc9/access_parser-0.0.6.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-01-23 17:41:40",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "ClarotyICS",
"github_project": "access_parser",
"travis_ci": false,
"coveralls": false,
"github_actions": false,
"lcname": "access-parser"
}