A python API client library for the US Bureau of Economic Analysis
Project description
Python Bureau Of Economic Analysis API Client
Table of Contents
Overview
An Python API client used to pull and retrieve data from the US Bureau of Economic Analysis.
Grab an API Key
To grab an API key, you'll need to setup an account with the Bureau Of Economic Analysis. Go to the API Homepage and fill out the register form on the left hand side. Once filled out an API key will be sent to your email.
Setup
Right now, the library is not hosted on PyPi so you will need to do a local install on your system if you plan to use it in other scrips you use.
First, clone this repo to your local system. After you clone the repo, make sure to run the setup.py
file, so you
can install any dependencies you may need. To run the setup.py
file, run the following command in your terminal.
pip install python-bea
This will install all the dependencies listed in the setup.py
file. Once done you can use the library
wherever you want.
Usage
Here is a simple example of using the pybea
library to grab a list of the different datasets availabel.
from pprint import pprint
from pybea.client import BureauEconomicAnalysisClient
# Initalize the new Client.
bea_client = BureauEconomicAnalysisClient(api_key='YOUR_API_KEY_HERE')
# Grab the Dataset List.
dataset_list = bea_client.get_dataset_list()
pprint(dataset_list)
You will note the output of the above code would look like the following:
{
"BEAAPI": {
"Request": {
"RequestParam": [
{
"ParameterName": "METHOD",
"ParameterValue": "GETPARAMETERLIST"
},
{
"ParameterName": "RESULTFORMAT",
"ParameterValue": "JSON"
}
]
},
"Results": {
"Parameter": [
{
"ParameterName": "GeoFips",
"ParameterDataType": "string",
"ParameterDescription": "Comma-delimited list of 5-character geographic codes; COUNTY for all counties, STATE for all states, MSA for all MSAs, MIC for all Micropolitan Areas, PORT for all state metro/nonmetro portions, DIV for all Metropolitan Divisions, CSA for all Combined Statistical Areas, state post office abbreviation for all counties in one state (e.g. NY)",
"ParameterIsRequiredFlag": "1",
"MultipleAcceptedFlag": "1"
},
{
"ParameterName": "Year",
"ParameterDataType": "string",
"ParameterDescription": "Comma-delimted list of years; LAST5 for latest 5 years; LAST10 for latest 10 years; ALL for all years",
"ParameterIsRequiredFlag": "0",
"ParameterDefaultValue": "LAST5",
"MultipleAcceptedFlag": "1"
}
]
}
}
}
Support these Projects
Patreon: Help support this project and future projects by donating to my Patreon Page. I"m always looking to add more content for individuals like yourself, unfortuantely some of the APIs I would require me to pay monthly fees.
YouTube: If you"d like to watch more of my content, feel free to visit my YouTube channel Sigma Coding.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file python-bea-0.1.1.tar.gz
.
File metadata
- Download URL: python-bea-0.1.1.tar.gz
- Upload date:
- Size: 12.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 30abb16ee48b2dfc1ad7de5db8209b75f857eb3282d5453de4e491a283622122 |
|
MD5 | f75dcec9b14608a4bd4ec5ce471cb915 |
|
BLAKE2b-256 | 0f2706fd02e8eff645dcbc519a64e258ab504601203f055e989f52ef4b0a47dc |
File details
Details for the file python_bea-0.1.1-py3-none-any.whl
.
File metadata
- Download URL: python_bea-0.1.1-py3-none-any.whl
- Upload date:
- Size: 10.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2961b66d4463e5d714e711bd2e4db496c91ab89599e3832c46107f43dc0dfaed |
|
MD5 | b3284514572908686da71b54517b2e90 |
|
BLAKE2b-256 | 3e63f6c10494712891405e8ae0c87d704dc09b37c99c309ac48d99b055777d53 |