{ "info": { "author": "Aleksandar Velkoski", "author_email": "avelkoski@ltu.edu", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.2", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Topic :: Software Development" ], "description": "Federal Reserve Economic Data (FRED) Client\n==================================================\nPython client for interfacing with the Federal Reserve Bank's\nFRED API. Our goal is to provide a simple, well-documented\nsolution for FRED-related programming in Python.\n\nFor other ways to interface with FRED in Python, see\n`mortada/fredapi`_ or `zachwill/fred`_ .\n\n.. _mortada/fredapi: https://github.com/mortada/fredapi\n.. _zachwill/fred: https://github.com/zachwill/fred\n\n.. note::\n\n This is a third-party client that is developed and maintained\n independently of the Federal Reserve Bank. As such, it is not\n affiliated with or supported by the institution.\n\nCompatibility\n-------------\nThe Federal Reserve Bank does not provide a versioned API.\nWe constantly monitor the API to ensure that our client is\ncompatible with FRED. If you notice a compatibility issue,\nplease let use know and we'll work to resolve the issue.\n\nBasic usage\n-------------\n::\n\n from fred import Fred\n fr = Fred(api_key='abcdefghijklmnopqrstuvwxyz123456',response_type='dict')\n\n params = {\n 'limit':2,\n 'tag_names':'trade;goods'\n }\n\n res = fr.category.series(125,params=params)\n\n for record in res:\n print(record)\n\nFeatures\n--------\n\nThis client was built to provide users with an intuitive\nand effective framework for making requests to the FRED API\nfrom within Python. As such, our main feature is the\nability to interact with the FRED web-service.\n\nComprehensive query support\n~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nRequest economic data from all 5 data groups available in FRED and ALFRED.\nFor reference, the data groups are included below.\nSee `Federal Reserve Bank of St. Louis`_ for additional documentation,\nor click on a specific query to go directly to documentation for that query.\n\n.. _Federal Reserve Bank of St. Louis: https://research.stlouisfed.org/docs/api/fred/\n\n* **Categories**\n\n * `fred/category`_ - Get a category.\n * `fred/category/children`_ - Get the child categories for a specified parent category.\n * `fred/category/related`_ - Get the related categories for a category.\n * `fred/category/series`_ - Get the series in a category.\n * `fred/category/tags`_ - Get the tags for a category.\n * `fred/category/related_tags`_ - Get the related tags for a category.\n\n.. _fred/category: https://research.stlouisfed.org/docs/api/fred/category.html\n.. _fred/category/children: https://research.stlouisfed.org/docs/api/fred/category_children.html\n.. _fred/category/related: https://research.stlouisfed.org/docs/api/fred/category_related.html\n.. _fred/category/series: https://research.stlouisfed.org/docs/api/fred/category_series.html\n.. _fred/category/tags: https://research.stlouisfed.org/docs/api/fred/category_tags.html\n.. _fred/category/related_tags: https://research.stlouisfed.org/docs/api/fred/category_related_tags.html\n\n* **Releases**\n\n * `fred/releases`_ - Get all releases of economic data.\n * `fred/releases/dates`_ - Get release dates for all releases of economic data.\n * `fred/release`_ - Get a release of economic data.\n * `fred/release/dates`_ - Get release dates for a release of economic data.\n * `fred/release/series`_ - Get the series on a release of economic data.\n * `fred/release/sources`_ - Get the sources for a release of economic data.\n * `fred/release/tags`_ - Get the tags for a release.\n * `fred/release/related_tags`_ - Get the related tags for a release.\n\n.. _fred/releases: https://research.stlouisfed.org/docs/api/fred/releases.html\n.. _fred/releases/dates: https://research.stlouisfed.org/docs/api/fred/releases_dates.html\n.. _fred/release: https://research.stlouisfed.org/docs/api/fred/release.html\n.. _fred/release/dates: https://research.stlouisfed.org/docs/api/fred/release_dates.html\n.. _fred/release/series: https://research.stlouisfed.org/docs/api/fred/release_series.html\n.. _fred/release/sources: https://research.stlouisfed.org/docs/api/fred/release_sources.html\n.. _fred/release/tags: https://research.stlouisfed.org/docs/api/fred/release_tags.html\n.. _fred/release/related_tags: https://research.stlouisfed.org/docs/api/fred/release_related_tags.html\n\n* **Series**\n\n * `fred/series`_ - Get an economic data series.\n * `fred/series/categories`_ - Get the categories for an economic data series.\n * `fred/series/observations`_ - Get the observations or data values for an economic data series.\n * `fred/series/search`_ - Get economic data series that match keywords.\n * `fred/series/release`_ - Get the release for an economic data series.\n * `fred/series/search/tags`_ - Get the tags for a series search.\n * `fred/series/search/related_tags`_ - Get the related tags for a series search.\n * `fred/series/tags`_ - Get the tags for an economic data series.\n * `fred/series/updates`_ - Get economic data series sorted by when observations were updated on the FRED server.\n * `fred/series/vintagedates`_ - Get the dates in history when a series' data values were revised or new data values were released.\n\n.. _fred/series: https://research.stlouisfed.org/docs/api/fred/series.html\n.. _fred/series/categories: https://research.stlouisfed.org/docs/api/fred/series_categories.html\n.. _fred/series/observations: https://research.stlouisfed.org/docs/api/fred/series_observations.html\n.. _fred/series/release: https://research.stlouisfed.org/docs/api/fred/series_release.html\n.. _fred/series/search: https://research.stlouisfed.org/docs/api/fred/series_search.html\n.. _fred/series/search/tags: https://research.stlouisfed.org/docs/api/fred/series_search_tags.html\n.. _fred/series/search/related_tags: https://research.stlouisfed.org/docs/api/fred/series_search_related_tags.html\n.. _fred/series/tags: https://research.stlouisfed.org/docs/api/fred/series_tags.html\n.. _fred/series/updates: https://research.stlouisfed.org/docs/api/fred/series_updates.html\n.. _fred/series/vintagedates: https://research.stlouisfed.org/docs/api/fred/series_vintagedates.html\n\n* **Sources**\n\n * `fred/sources`_ - Get all sources of economic data.\n * `fred/source`_ - Get a source of economic data.\n * `fred/source/releases`_ - Get the releases for a source.\n\n.. _fred/sources: https://research.stlouisfed.org/docs/api/fred/sources.html\n.. _fred/source: https://research.stlouisfed.org/docs/api/fred/source.html\n.. _fred/source/releases: https://research.stlouisfed.org/docs/api/fred/source_releases.html\n\n* **Tags**\n\n * `fred/tags`_ - Get all tags, search for tags, or get tags by name.\n * `fred/related_tags`_ - Get the related tags for one or more tags.\n * `fred/tags/series`_ - Get the series matching tags.\n\n.. _fred/tags: https://research.stlouisfed.org/docs/api/fred/tags.html\n.. _fred/related_tags: https://research.stlouisfed.org/docs/api/fred/related_tags.html\n.. _fred/tags/series: https://research.stlouisfed.org/docs/api/fred/tags_series.html\n\nPopular response transformations\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nTransform data from http responses to your preferred format,\nallowing you to focus more time on data integration and analysis\nand less on response processing. If you prefer raw responses from FRED,\nso that you can conduct your own response parsing, simply set ``response_type``\nto *xml* or *json* (standard FRED responses). Otherwise, automatically\ntransform data into comma, tab, or pipe separated values,\npython dictionaries, pandas dataframes, or numpy arrays.\n\nFor dictionary, dataframe, and array responses, an attempt is made to\nconvert data to more useful dtypes. For example, ``realtime_start``\nand ``realtime_end`` response data are automatically converted\nfrom a string to *datetime64* numpy dtype. Similarly, counts\nand IDs (where appropriate) are converted to *int* while observation\nmeasures are converted to *float*.\n\n\n.. _fva-label:\n\nFRED vs. ALFRED\n---------------\n\nFRED stands for Federal Reserve Economic Data. FRED contains frequently\nupdated US macro and regional economic time series at annual, quarterly,\nmonthly, weekly, and daily frequencies.\n\nALFRED stands for Archival Federal Reserve Economic Data. ALFRED archives\nFRED data by adding the real-time period when values were originally\nreleased and later revised.\n\nFRED and ALFRED use the same web-service. As noted in the `Federal Reserve Bank documentation`_,\nmost users are interested in FRED. As such, default parameters have been selected by the bank\nto cater to FRED users. If you want to access ALFRED for a given period, simply provide\nthe real-time period by passing the relevant ``realtime_start`` and ``realtime_end``\nparameters to the function handling your request.\n\n.. _Federal Reserve Bank documentation: https://research.stlouisfed.org/docs/api/fred/fred_vs_alfred.html\n\nContents\n--------\n\n.. toctree::\n :maxdepth: 2\n\n usage\n api\n\nLicense\n-------\n\nThe MIT License (MIT)\n\nCopyright (c) 2016 Aleksandar Velkoski https://github.com/avelkoski\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n\nAffiliation\n-----------\n\nThe author is affiliated with the Data Science division of\nthe National Association of REALTORS.\n\nIndices and tables\n------------------\n\n* :ref:`genindex`\n* :ref:`modindex`\n* :ref:`search`", "description_content_type": null, "docs_url": null, "download_url": "https://github.com/avelkoski/FRB/archive/master.zip", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/avelkoski/FRB", "keywords": "macroeconomics microeconomics finance fred alfred api federal reserve bank economics data", "license": "MIT", "maintainer": null, "maintainer_email": null, "name": "FRB", "package_url": "https://pypi.org/project/FRB/", "platform": "UNKNOWN", "project_url": "https://pypi.org/project/FRB/", "project_urls": { "Download": "https://github.com/avelkoski/FRB/archive/master.zip", "Homepage": "https://github.com/avelkoski/FRB" }, "release_url": "https://pypi.org/project/FRB/1.1.4/", "requires_dist": null, "requires_python": null, "summary": "Federal Reserve Economic Data (FRED)", "version": "1.1.4" }, "last_serial": 1942685, "releases": { "1.1.0": [ { "comment_text": "", "digests": { "md5": "5ce5d1bef31f8c2666d56f20f58b9d95", "sha256": "8a35ffa1b7dcd8616938cf6a57663a0270d9240cfdbd7df8d3ebad3f32adebc9" }, "downloads": -1, "filename": "FRB-1.1.0.tar.gz", "has_sig": false, "md5_digest": "5ce5d1bef31f8c2666d56f20f58b9d95", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1380824, "upload_time": "2016-01-10T23:49:02", "url": "https://files.pythonhosted.org/packages/fd/80/239de686be3be03ef8db933418df861b00af1c1d91e9ad91576fdbb39f07/FRB-1.1.0.tar.gz" } ], "1.1.1": [ { "comment_text": "", "digests": { "md5": "50680dccb39b840747a18c9870d3316a", "sha256": "069eb7c5f239f27744b6d31ed6ffa67b3ea6d41fd71e6bd4bd1a497a3c475bda" }, "downloads": -1, "filename": "FRB-1.1.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "50680dccb39b840747a18c9870d3316a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 19286, "upload_time": "2016-01-14T16:35:59", "url": "https://files.pythonhosted.org/packages/99/ea/bf278bd2caf92f98c59383975a53267664835f42067a42783cf082357cd4/FRB-1.1.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0cac104241578e071c46d3773cce9d93", "sha256": "d9278d379f326365a448dd8cf2244cfefecf41b53eae8bf3b5f3f06c5b502a58" }, "downloads": -1, "filename": "FRB-1.1.1.tar.gz", "has_sig": false, "md5_digest": "0cac104241578e071c46d3773cce9d93", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1380988, "upload_time": "2016-01-14T16:36:18", "url": "https://files.pythonhosted.org/packages/ee/ba/a50bbef17b8cce24418e9e6e20159901dd788b3bba7bcd0e8c29a2876813/FRB-1.1.1.tar.gz" } ], "1.1.2": [ { "comment_text": "", "digests": { "md5": "3f38c7eb0749624304a0a9423eff05cf", "sha256": "23310e8d244db5353945b52320bc22b51785cc6cbaa0a244f0312a5589468ca3" }, "downloads": -1, "filename": "FRB-1.1.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "3f38c7eb0749624304a0a9423eff05cf", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 19288, "upload_time": "2016-02-01T22:35:38", "url": "https://files.pythonhosted.org/packages/e5/f8/3bdc48d50dbcc75021f929792f72996c771bec750e29218d1305ff964dc3/FRB-1.1.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "321102d4d3406bf82cc5d6e8444f559e", "sha256": "25a60f1b05ad86992ddac6aa0a6797c67c8d648ca3e6b36757309f63ca44cce0" }, "downloads": -1, "filename": "FRB-1.1.2.tar.gz", "has_sig": false, "md5_digest": "321102d4d3406bf82cc5d6e8444f559e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1381018, "upload_time": "2016-02-01T22:35:43", "url": "https://files.pythonhosted.org/packages/de/7a/80a9d1a0cb68b1272345bf9557cfe1dd794d65f919b84fa75654f9dca0a1/FRB-1.1.2.tar.gz" } ], "1.1.3": [ { "comment_text": "", "digests": { "md5": "35e80d7542b0312ab3673cedce5b0868", "sha256": "71b0bd942a2277cff212b259490bb746150224220f2740390c8612f672f96b7e" }, "downloads": -1, "filename": "FRB-1.1.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "35e80d7542b0312ab3673cedce5b0868", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 19300, "upload_time": "2016-02-06T02:45:40", "url": "https://files.pythonhosted.org/packages/24/fc/4c8b297fdeaf6e25f06babbb5a39b82a0c10e529a9c19218fb33579d9d57/FRB-1.1.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c4daa2b4a8e30fe82e87450092788f90", "sha256": "f923383bcf896cced6a7880c2d0787dd5a0afdbaa1951d9ed20501fa6a308662" }, "downloads": -1, "filename": "FRB-1.1.3.tar.gz", "has_sig": false, "md5_digest": "c4daa2b4a8e30fe82e87450092788f90", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1381025, "upload_time": "2016-02-06T02:45:58", "url": "https://files.pythonhosted.org/packages/10/37/234c2c742054eeb2fbe894b2044acb5259c7d12a5a88a8edf91a875bcdda/FRB-1.1.3.tar.gz" } ], "1.1.4": [ { "comment_text": "", "digests": { "md5": "2463454d85a7565af1fd2c514086b888", "sha256": "858be1189f0074fb66d20d0441e4ca72e869a750aef3b64f6f8ec046f5929321" }, "downloads": -1, "filename": "FRB-1.1.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2463454d85a7565af1fd2c514086b888", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 19300, "upload_time": "2016-02-06T02:49:49", "url": "https://files.pythonhosted.org/packages/48/ce/db08a6ee92b6b0eeb71f9ddbab45177488a579ce8d5600a7b7884ed97d36/FRB-1.1.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "363d7325e42677123451ef4ff54153bd", "sha256": "aff415df0084d15a1a65c04ce31e0530f8da2b93e7dec04617682b6992f6947b" }, "downloads": -1, "filename": "FRB-1.1.4.tar.gz", "has_sig": false, "md5_digest": "363d7325e42677123451ef4ff54153bd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1381026, "upload_time": "2016-02-06T02:50:07", "url": "https://files.pythonhosted.org/packages/af/2d/412a87bed2aea407f8b90157682a1e796b2a8ed0c31e915ec027596726f6/FRB-1.1.4.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "2463454d85a7565af1fd2c514086b888", "sha256": "858be1189f0074fb66d20d0441e4ca72e869a750aef3b64f6f8ec046f5929321" }, "downloads": -1, "filename": "FRB-1.1.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2463454d85a7565af1fd2c514086b888", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 19300, "upload_time": "2016-02-06T02:49:49", "url": "https://files.pythonhosted.org/packages/48/ce/db08a6ee92b6b0eeb71f9ddbab45177488a579ce8d5600a7b7884ed97d36/FRB-1.1.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "363d7325e42677123451ef4ff54153bd", "sha256": "aff415df0084d15a1a65c04ce31e0530f8da2b93e7dec04617682b6992f6947b" }, "downloads": -1, "filename": "FRB-1.1.4.tar.gz", "has_sig": false, "md5_digest": "363d7325e42677123451ef4ff54153bd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1381026, "upload_time": "2016-02-06T02:50:07", "url": "https://files.pythonhosted.org/packages/af/2d/412a87bed2aea407f8b90157682a1e796b2a8ed0c31e915ec027596726f6/FRB-1.1.4.tar.gz" } ] }