FRED API: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
 
(17 intermediate revisions by the same user not shown)
Line 5: Line 5:
=Internal=
=Internal=
* [[FRED#Subjects|FRED]]
* [[FRED#Subjects|FRED]]
=TODO=
<font color=darkkhaki>
Economic Data Analysis Project with Python Pandas - Data scraping, cleaning and exploration! https://www.youtube.com/watch?v=R67XuYc9NQ4
</font>


=Installation=
=Installation=
<syntaxhighlight lang='bash'>
<syntaxhighlight lang='bash'>
pip install fredapi
pip3 install fredapi
</syntaxhighlight>
</syntaxhighlight>
=Get the API Key=
=Get the API Key=
Line 14: Line 18:
Request an API key from here: https://fred.stlouisfed.org/docs/api/api_key.html
Request an API key from here: https://fred.stlouisfed.org/docs/api/api_key.html


=Organizatorium=
=Code Examples=
* <font color=darkkhaki>Source of data over API https://fred.stlouisfed.org and how to do it https://www.youtube.com/watch?v=R67XuYc9NQ4</font>
* [[Processing Financial Data with FRED API#Overview|Processing Financial Data with FRED API]]

Latest revision as of 19:29, 8 October 2023

External

Internal

TODO

Economic Data Analysis Project with Python Pandas - Data scraping, cleaning and exploration! https://www.youtube.com/watch?v=R67XuYc9NQ4

Installation

pip3 install fredapi

Get the API Key

Request an API key from here: https://fred.stlouisfed.org/docs/api/api_key.html

Code Examples