uszipstats


Nameuszipstats JSON
Version 0.5 PyPI version JSON
download
home_pagehttps://github.com/vrathi101/uszipstats.git
SummaryThis package will provide the ability to access IRS data
upload_time2023-07-30 16:44:23
maintainer
docs_urlNone
authorVEDANT RATHI
requires_python
licenseMIT
keywords data functions
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <h1 align="center">
<img src="https://raw.githubusercontent.com/vrathi101/uszipstats/main/Logo/TaxFilingFusion.png" alt="Project Logo" height="200" width="200" style="display: inline-block;">
</h1><be>

TaxFilingFusion stands as the ultimate solution for effortlessly accessing and navigating IRS tax filing data. This powerful package effortlessly transforms complexity into simplicity, empowering users to unlock fresh insights and delve deep into data analysis. Unravel the potential of tax data like never before – whether you're an expert or just starting out, TaxFilingFusion makes IRS data accessible and user-friendly for all.

Call for Contributions
----------------------
It provides:
- sophisticated functions
- a powerful connection between tax filing data and the American geography
- an API with a backend of BigQuery to allow user manipulation of data

Detailed Package Info
----------------------
This Python package provides access to individual income tax statistics for various zip codes using data obtained from the IRS. The data spans the years between 2015 and 2020, and each year's data may have a different format as some attributes may be dropped in certain years, while new attributes may be added. 
The data is ingested into Google BigQuery, where all individual year tables are combined into a single comprehensive table. To enrich the ZipCode data and provide more detailed information, the package utilizes crosswalk files from HUD USPS, which establish links between ZIP codes, state FIPS codes, county FIPS codes, and city FIPS codes. This enriched data allows users to obtain additional details about each ZIP code, such as county, state, region, and other associated information.
Several views, table query functions, and single-valued functions are implemented to support various data needs for the API. These functions are designed to expose the combined and enriched data for public access. By leveraging these APIs, we have created a beautiful and easy-to-use PyPI package that allows the public to interact with and analyze the IRS individual income tax statistics for different ZIP codes, enriched with valuable geographic information.

Call for Contributions
----------------------

The TaxFilingFusion project welcomes everyone's passions, thoughts, ideas, and contributions.

Small improvements or fixes are greatly appreciated. 
If you have any questions, please email: vedrathi10@gmail.com

Our GitHub repository may be small and much simpler than what you would expect of a full-fledged package like NumPy,
but our goal is to continue adding new features to make this data even more accessible for users.
To help contribute to our project, you can:
- review the code and create pull requests via forking the repo
- develop tutorials, presentations, and other educational materials
- help with outreach and publicity


Package Usage
----------------------
To download the package on a command-line interface, run:
    `pip install taxfilingfusion`
<br>  
To download the package on Jupyter Notebooks or IPython environments, run:
    `!pip install taxfilingfusion`
<br>  
To upgrade the package version (CLI), run: 
    `pip install taxfilingfusion --upgrade`.
<br>
To use the functions provided by this package, after downloading, run: 
    `from code_query import irs_data`
<br>
Then a method can be accessed using the dot operator, like:
    `irs_data.{function_name(parameters...)}`


Sources
----------------------
- IRS tax filing statistics: https://www.irs.gov/statistics/soi-tax-stats-individual-income-tax-statistics-zip-code-data-soi
- Zip code data crosswalk files: https://www.huduser.gov/portal/datasets/usps_crosswalk.html

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/vrathi101/uszipstats.git",
    "name": "uszipstats",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "DATA,FUNCTIONS",
    "author": "VEDANT RATHI",
    "author_email": "vedrathi10@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/d5/b4/88bb702831fdcc417a745982dc435d4fc7e8f9efa7764549be117dfc8f9d/uszipstats-0.5.tar.gz",
    "platform": null,
    "description": "<h1 align=\"center\">\n<img src=\"https://raw.githubusercontent.com/vrathi101/uszipstats/main/Logo/TaxFilingFusion.png\" alt=\"Project Logo\" height=\"200\" width=\"200\" style=\"display: inline-block;\">\n</h1><be>\n\nTaxFilingFusion stands as the ultimate solution for effortlessly accessing and navigating IRS tax filing data. This powerful package effortlessly transforms complexity into simplicity, empowering users to unlock fresh insights and delve deep into data analysis. Unravel the potential of tax data like never before \u2013 whether you're an expert or just starting out, TaxFilingFusion makes IRS data accessible and user-friendly for all.\n\nCall for Contributions\n----------------------\nIt provides:\n- sophisticated functions\n- a powerful connection between tax filing data and the American geography\n- an API with a backend of BigQuery to allow user manipulation of data\n\nDetailed Package Info\n----------------------\nThis Python package provides access to individual income tax statistics for various zip codes using data obtained from the IRS. The data spans the years between 2015 and 2020, and each year's data may have a different format as some attributes may be dropped in certain years, while new attributes may be added. \nThe data is ingested into Google BigQuery, where all individual year tables are combined into a single comprehensive table. To enrich the ZipCode data and provide more detailed information, the package utilizes crosswalk files from HUD USPS, which establish links between ZIP codes, state FIPS codes, county FIPS codes, and city FIPS codes. This enriched data allows users to obtain additional details about each ZIP code, such as county, state, region, and other associated information.\nSeveral views, table query functions, and single-valued functions are implemented to support various data needs for the API. These functions are designed to expose the combined and enriched data for public access. By leveraging these APIs, we have created a beautiful and easy-to-use PyPI package that allows the public to interact with and analyze the IRS individual income tax statistics for different ZIP codes, enriched with valuable geographic information.\n\nCall for Contributions\n----------------------\n\nThe TaxFilingFusion project welcomes everyone's passions, thoughts, ideas, and contributions.\n\nSmall improvements or fixes are greatly appreciated. \nIf you have any questions, please email: vedrathi10@gmail.com\n\nOur GitHub repository may be small and much simpler than what you would expect of a full-fledged package like NumPy,\nbut our goal is to continue adding new features to make this data even more accessible for users.\nTo help contribute to our project, you can:\n- review the code and create pull requests via forking the repo\n- develop tutorials, presentations, and other educational materials\n- help with outreach and publicity\n\n\nPackage Usage\n----------------------\nTo download the package on a command-line interface, run:\n    `pip install taxfilingfusion`\n<br>  \nTo download the package on Jupyter Notebooks or IPython environments, run:\n    `!pip install taxfilingfusion`\n<br>  \nTo upgrade the package version (CLI), run: \n    `pip install taxfilingfusion --upgrade`.\n<br>\nTo use the functions provided by this package, after downloading, run: \n    `from code_query import irs_data`\n<br>\nThen a method can be accessed using the dot operator, like:\n    `irs_data.{function_name(parameters...)}`\n\n\nSources\n----------------------\n- IRS tax filing statistics: https://www.irs.gov/statistics/soi-tax-stats-individual-income-tax-statistics-zip-code-data-soi\n- Zip code data crosswalk files: https://www.huduser.gov/portal/datasets/usps_crosswalk.html\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "This package will provide the ability to access IRS data",
    "version": "0.5",
    "project_urls": {
        "Download": "https://github.com/vrathi101/uszipstats/archive/refs/tags/v_05.tar.gz",
        "Homepage": "https://github.com/vrathi101/uszipstats.git"
    },
    "split_keywords": [
        "data",
        "functions"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d5b488bb702831fdcc417a745982dc435d4fc7e8f9efa7764549be117dfc8f9d",
                "md5": "a605f16426793a9eede8eb85cfaecb88",
                "sha256": "05619731bc5cd80be616b37ad55e54ed85b2286bd2215f6c020565e671256ff7"
            },
            "downloads": -1,
            "filename": "uszipstats-0.5.tar.gz",
            "has_sig": false,
            "md5_digest": "a605f16426793a9eede8eb85cfaecb88",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 11616,
            "upload_time": "2023-07-30T16:44:23",
            "upload_time_iso_8601": "2023-07-30T16:44:23.928607Z",
            "url": "https://files.pythonhosted.org/packages/d5/b4/88bb702831fdcc417a745982dc435d4fc7e8f9efa7764549be117dfc8f9d/uszipstats-0.5.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-07-30 16:44:23",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "vrathi101",
    "github_project": "uszipstats",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "uszipstats"
}
        
Elapsed time: 0.09728s