Metadata-Version: 2.1
Name: united-states-congress-python-api
Version: 0.0.1
Summary: UNKNOWN
Home-page: https://github.com/areed1192/united-states-congress-python-api
Author: Alex Reed
Author-email: coding.sigma@gmail.com
License: UNKNOWN
Description: # Python United Congress API Client
        
        ## Table of Contents
        
        - [Overview](#overview)
        - [Setup](#setup)
        - [Usage](#usage)
        - [Support These Projects](#support-these-projects)
        
        ## Overview
        
        This is a python API client library that is used to collect data from the
        United States Congress and a few other departments inside the US Government.
        This library will make filtering the requests easier, and give you a nice easy
        to use tool to grab vital civic data to be used in a wide range of analysis.
        
        ## Setup
        
        To **install** the library, run the following command from the terminal.
        
        ```console
        pip install united-states-congress-python-api
        ```
        
        To **upgrade** the library, run the following command from the terminal.
        
        ```console
        pip install --upgrade united-states-congress-python-api
        ```
        
        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 `congress` library to pull the bulk data
        sources and grabbing a speicifc year of bulk data for the Privacy Act Issuances.
        
        ```python
        from pprint import pprint
        from congress.client import Congress
        
        # Initialize the Congress Client.
        congress_client = Congress()
        
        # Grab the data sources.
        data_sources = congress_client.data_sources()
        pprint(data_sources)
        
        # Grab the different resources from the Privacy Act Issuance.
        pia_2017 = congress_client.privacy_act_issuances(file='2017')
        pprint(pia_2017)
        ```
        
        ## Support These Projects
        
        **Patreon:**
        Help support this project and future projects by donating to my [Patreon Page](https://www.patreon.com/sigmacoding). 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](https://www.youtube.com/c/SigmaCoding).
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Financial and Insurance Industry
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Office/Business :: News/Diary
Classifier: Intended Audience :: Science/Research
Classifier: Intended Audience :: Legal Industry
Requires-Python: >3.7
Description-Content-Type: text/markdown
