FRED API: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
 
(11 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=
Line 10: Line 14:
pip3 install fredapi
pip3 install fredapi
</syntaxhighlight>
</syntaxhighlight>
=Get the API Key=
=Get the API Key=


Line 16: Line 19:


=Code Examples=
=Code Examples=
 
* [[Processing Financial Data with FRED API#Overview|Processing Financial Data with FRED API]]
FRED with pandas:
 
<syntaxhighlight lang='py'>
</syntaxhighlight>
 
==Search==
<syntaxhighlight lang='py'>
</syntaxhighlight>
 
==Get Series==
 
=Organizatorium=
<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>

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