File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -3,4 +3,7 @@ google-python-exercises/
33python-trading /excel /
44ptyhon-trading /data /
55python-trading /oanda_api.py
6+ python-trading /quandl_api.py
7+ python-trading /currency_layer_api.py
8+ python-trading /exchange_rates.js
69python_fundamentals /prank /
Original file line number Diff line number Diff line change 22import openpyxl as xl
33import json
44
5- CURRENCY_LAYER_API_KEY = "96c83b8075825e87ee1b9f9e78209af5"
6- API_ENDPOINT = "http://apilayer.net/api/"
5+ from currency_layer_api import CURRENCY_LAYER_API_KEY , API_ENDPOINT
76
87def main ():
98 wb = xl .load_workbook ("excel/financial status_2016_test.xlsx" , read_only = False )
Original file line number Diff line number Diff line change 1+ """ Basic stock statistics """
2+
3+ import pandas as pd
4+ import numpy as np
5+ import Quandl as q
6+
7+ import urllib2 as url
8+ import openpyxl as xl
9+ import json
10+
11+ from quandl_api import QUANDL_API
12+
13+
14+
15+
16+
17+ def main ():
18+
19+
20+
21+
22+
23+ if __name__ == "__main__" :
24+ main ()
25+
You can’t perform that action at this time.
0 commit comments