Skip to content

Commit

Permalink
v1-alpha
Browse files Browse the repository at this point in the history
  • Loading branch information
TerenceLiu98 committed May 27, 2021
1 parent 8eea00d commit 3496d84
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@

### Python ###
# Byte-compiled / optimized / DLL files

__pycache__/
*.py[cod]
*$py.class
Expand Down
26 changes: 25 additions & 1 deletion CEDA/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from CEDA.MacroEcon.cn import (
gdp_quarter,
gdp_quarterly,
ppi_monthly,
cpi_monthly,
pmi_monthly,
Expand All @@ -26,4 +26,28 @@
drr_monthly,
interest_monthly,
gdc_daily
)

from CEDA.MacroEcon.us import (
gdpc1_quarterly,
gdp_quarterly,
oecd_gdp_monthly,
payems_monthly,
unrate,
erate,
pce_monthly,
cpi,
m1,
m2,
m3,
ltgby,
gdp_ipd,
cci,
bci,
ibr_3,
gfcf_3,
pfce,
tlp,
rt,
bir
)
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@ This is a data collecting project, with both `python` and `R`
* `python` version: (https://github.com/TerenceLiu98/CEDApy)[https://github.com/TerenceLiu98/CEDApy]
* `R` version: (https://github.com/TerenceLiu98/CEDAr)[https://github.com/TerenceLiu98/CEDAr]

## Installation

```python
conda create -n CEDA python=3.7
conda activate CEDA
python setup.py install
```

## Acknowledgement

Expand Down

0 comments on commit 3496d84

Please sign in to comment.