Azure Table Storage Tutorial - Python Azure Tables SDK with NBA Stats API
Scenario:
The NBA playoffs start on 15 April following the conclusion of the Play-In Tournament on 14 April. In this tutorial, we use the nba_api Python API Client for NBA.com to fetch NBA teams stats and then run the Python Azure Tables SDK to create Azure table and entries. Finally, with Azure Storage Explorer we can easily build search query and visualize the results.
Objective:
To illustrate Azure Tables Python SDK usage using NBA API, followed by querying Azure Table Storage with Azure Storage Explorer's Query Builder.
Pre-requisites:
For this example, you would need:
- An Azure Table Storage
Steps:
- Install nba_api
- Install Azure Tables client library for Python
- Python code to retrieve data, create table, and insert entries
- Run nba.py
- Visualize the NBA table (with Azure Storage Explorer)
- Sample query (with Azure Storage Explorer)
[STEP 1]: Install nba_api
[STEP 2]: Install Azure Tables client library for Python
[STEP 3]: Python code to retrieve data, create table, and insert entries
Note:
- replace STORAGE_CONNECTION_STRING with your storage connection string.
- I use "state" as PartitionKey and "abbreviation" as RowKey.
- This article describes best practice when choosing partition & row key for entities.
- The response from calling teams.get_teams() is like the following:
nba.py
[STEP 4]: Run nba.py
[STEP 5]: Visualize the NBA table (with Azure Storage Explorer)
The NBA table contains data of the 30 NBA teams with the following info:
- ID
- City Name
- State Name
- Nickname
- Full Name
- Year Founded
- Abbreviation
[STEP 6]: Sample query (with Azure Storage Explorer)
Query Example: To find out all NBA teams that are based in California and were founded in 1948.
1. Click the "Query" button on the upper-left corner of the table.
2. Use Query Builder to build the query. Then click ▶ to execute.
3. Result is Lakers (LAL) & Kings (SAC).
Conclusion:
This example shows how to use the nba_api to retrieve NBA teams stats and the Azure Tables Python SDK to work with Azure Table storage. The Azure Tables client library for Python provides a simple and intuitive API for working with Azure Table Storage, with methods for creating and managing table clients, table operations, and entities.
References:
- https://pypi.org/project/nba-api/
- https://learn.microsoft.com/en-us/azure/storage/tables/table-storage-overview
- https://learn.microsoft.com/en-us/python/api/overview/azure/data-tables-readme?view=azure-python
- https://learn.microsoft.com/en-us/python/api/azure-data-tables/azure.data.tables?view=azure-python
Published on:
Learn moreRelated posts
Introducing Azure DevOps ID Token Refresh and Terraform Task Version 5
We are excited to share some recent updates that improve the experience of using Workload identity federation (OpenID Connect) with Azure DevO...
Webinar: Translate Dynamics 365 Data in Real-Time using Azure AI Translator with our New App!
Is your business operating across multiple regions? Managing multilingual CRM data in Microsoft Dynamics 365 can lead to communication gaps, d...
Simplify Audit Log Export from Dataverse for Compliance and Governance Using Azure Synapse Link and Power BI
Audit logs are essential for enhancing security, meeting regulatory requirements, and monitoring changes made to business data within Microsof...
Microsoft Fabric: Changes to delegation capabilities for Microsoft Azure OpenAI tenant settings
Starting May 12, 2025, Microsoft Fabric will update tenant settings to allow tenant admins to control the “Users can use Copilot and oth...
Copilot Studio – Connect your data to Azure OpenAI for generative answers
We are announcing the Connect your data to Azure OpenAI for generative answers feature for Copilot Studio. This feature allows you to connect ...
Microsoft Azure: You’re not eligible for an Azure free account
Got the below message, while trying to setup the Microsoft Azure Trial for 30 days. You’re not eligible for an Azure free account Don...
How to create Microsoft Azure 30 days trial?
Microsoft Azure is a comprehensive cloud computing platform developed by Microsoft. It provides a wide range of cloud services, including comp...