معرفی شرکت ها


access-parser-c-0.0.7


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

Access database (*.mdb, *.accdb) parser
ویژگی مقدار
سیستم عامل -
نام فایل access-parser-c-0.0.7
نام access-parser-c
نسخه کتابخانه 0.0.7
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Sascha Saumer
ایمیل نویسنده s.saumer@hotmail.de
آدرس صفحه اصلی https://github.com/McSash/access_parser_c
آدرس اینترنتی https://pypi.org/project/access-parser-c/
مجوز -
# 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 git+https://github.com/McSash/access_parser_c` Or install manually: ```bash git clone https://github.com/McSash/access_parser_c.git cd access_parser_c python3 setup.py install ``` # Demo [![asciicast](https://asciinema.org/a/345445.svg)](https://asciinema.org/a/345445) # Usage Example ```python from access_parser_c 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() ``` # Another Usage Example ```python from access_parser import AccessParser from azure.storage.blob import ContainerClient # Download access file from azure blob storage BlobContainerClient = ContainerClient.from_connection_string("<StorageConnectionString>", container_name="<ContainerName>") access_object = BlobContainerClient.download_blob("<PathToFile>").readall() # Bytes object of .mdb or .accdb file db = AccessParser(access_object) # 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 * OLE fields are currently not supported * Only a subset of memo fields are parsed 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 fork was made possible by the great work by claroty: https://github.com/claroty/access_parser


زبان مورد نیاز

مقدار نام
>=3.6 Python


نحوه نصب


نصب پکیج whl access-parser-c-0.0.7:

    pip install access-parser-c-0.0.7.whl


نصب پکیج tar.gz access-parser-c-0.0.7:

    pip install access-parser-c-0.0.7.tar.gz