https://github.com/micahjsmith/freddata.jl
Pull data from Federal Reserve Economic Data (FRED) directly into Julia
https://github.com/micahjsmith/freddata.jl
economic-data financial-data fred-api julia
Last synced: 20 days ago
JSON representation
Pull data from Federal Reserve Economic Data (FRED) directly into Julia
- Host: GitHub
- URL: https://github.com/micahjsmith/freddata.jl
- Owner: micahjsmith
- License: other
- Created: 2015-11-06T05:18:18.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2024-04-29T13:37:50.000Z (about 1 year ago)
- Last Synced: 2025-03-24T03:34:54.394Z (about 1 month ago)
- Topics: economic-data, financial-data, fred-api, julia
- Language: Julia
- Homepage: https://micahjsmith.github.io/FredData.jl/dev
- Size: 204 KB
- Stars: 65
- Watchers: 6
- Forks: 20
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://micahjsmith.github.io/FredData.jl/dev)
[](https://github.com/micahjsmith/FredData.jl/actions/workflows/Tests.yml)
[](https://codecov.io/gh/micahjsmith/FredData.jl)
[](https://juliahub.com/ui/Packages/FredData/SEoaS)
[](https://juliahub.com/ui/Packages/FredData/SEoaS)# FredData.jl
A third-party Julia library to pull data from
[Federal Reserve Economic Data](https://research.stlouisfed.org/fred2/) (FRED).* Homepage: https://github.com/micahjsmith/FredData.jl
* Documentation: https://micahjsmith.github.io/FredData.jl/dev
* License: [MIT License](LICENSE)## Disclaimer
*FredData* is not affiliated in any way with Federal Reserve Bank of St. Louis and is not
officially maintained or otherwise supported by Federal Reserve Bank of St. Louis.## Quickstart
Here is what you can do with *FredData*:
```julia
julia> using FredDatajulia> f = Fred()
API key loaded.
FRED API Connection
url: http://api.stlouisfed.org/fred/
key: 0123456789abcdef0123456789abcdefjulia> a = get_data(f, "GDPC1")
FredSeries
id: GDPC1
title: Real Gross Domestic Product
units: Billions of Chained 2009 Dollars
seas_adj (native): Seasonally Adjusted Annual Rate
freq (native): Quarterly
realtime_start: 2015-12-11
realtime_end: 2015-12-11
last_updated: 2015-11-24T08:01:09
notes: BEA Account Code: A191RX1 Real gross domestic product is the inflation adjusted value of the goods and services produced by labor and property located in the United States. For more information see the Guide to the National Income and Product Accounts of the United States (NIPA) - (http://www.bea.gov/national/pdf/nipaguid.pdf)
trans_short: lin
data: 275x4 DataFrame with columns [:realtime_start,:realtime_end,:date,:value]
```For full usage, refer to the [documentation](https://micahjsmith.github.io/FredData.jl/dev)