pydol is a Python module that provides an interface for the U.S. Department of Labor API.
Usage
from pydol import DOLAPI
# Create an instance of the API
DOL = DOLAPI("d9c6c290-da4c-424e-a378-fb4bd027b58b",
"mysecret11111111111")
# Get dataset metadata as a dictionary structure
# Multi-part dataset names are separated by a /
BLS = DOL.metadata("statistics/BLS_Numbers")
# Get table data as a list of dictionaries
UNEMPLOYMENT = DOL.table("statistics/BLS_Numbers", "unemploymentRate")
# detailed examples at docs/examples.txt
Product's homepage
Requirements:
· Python
What's New in This Release: [ read full changelog ]
· Fixed mistakes in documentation.