Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/schonfinkel/internet-magic-money
(Unfinished) An analysis of the Close Price of some criptocurrencies using Pandas and Quandl's Bitcoin API.
https://github.com/schonfinkel/internet-magic-money
Last synced: 25 days ago
JSON representation
(Unfinished) An analysis of the Close Price of some criptocurrencies using Pandas and Quandl's Bitcoin API.
- Host: GitHub
- URL: https://github.com/schonfinkel/internet-magic-money
- Owner: schonfinkel
- License: mit
- Created: 2017-10-23T14:40:24.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2018-01-04T21:00:35.000Z (about 7 years ago)
- Last Synced: 2024-12-17T20:39:01.459Z (30 days ago)
- Language: Jupyter Notebook
- Homepage:
- Size: 444 KB
- Stars: 1
- Watchers: 2
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Internet-Magic-Money
An analysis of the Weighted Price of some criptocurrencies using Pandas and Quandl's Bitcoin API.--------
# Tutorial
## Setting your API Key
Set your Quandl API Key in the `scripts/settings/__init__.py` file, or better, just overwrite it when calling the settings package.
```
from scripts import settings as st
st.API_KEY = "YOUR QUANDL API_KEY"
```## Folder Structure (As of now)
.
├── DATA # Pickled files from Quandl API
├── scripts # Scripts package
| ├── utils
| | ├── data.py # Useful methods for using the data
| | └── __init__.py
| ├── settings
| | └── __init__.py # You can place your Quandl API Key here
| └── __init__.py
├── bitcoin.ipynb # Jupyter Notebook
├── environment.yml # Conda environment
├── LICENSE
└── README.md