pdAzTables

Easy Azure table storage into Pandas dataframe


Keywords
Pandas, Azure, NoSQL, Data, azure-storage, azure-table-storage, pandas-python, python
License
MIT
Install
pip install pdAzTables==0.0.6

Documentation

PdAzTables

This is a simple library that makes it easy to get a Pandas DataFrame from a table in Azure Table Storage (Azure Data Lake's Table service)

# Import library
from pdaztables import AzTable

# Create service object with login info
table_service = AzTable('Your data lake conn string here')

# Get Pandas DataFrame!
table_service.get_table('Table name here')