Skip to content

Commit 6e364b1

Browse files
Yaroslav SmirnovYaroslav Smirnov
authored andcommitted
updated gitignore
1 parent 5017ab6 commit 6e364b1

3 files changed

Lines changed: 29 additions & 2 deletions

File tree

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,7 @@ google-python-exercises/
33
python-trading/excel/
44
ptyhon-trading/data/
55
python-trading/oanda_api.py
6+
python-trading/quandl_api.py
7+
python-trading/currency_layer_api.py
8+
python-trading/exchange_rates.js
69
python_fundamentals/prank/

python-trading/exchange_rates.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@
22
import openpyxl as xl
33
import 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

87
def main():
98
wb = xl.load_workbook("excel/financial status_2016_test.xlsx", read_only=False)

python-trading/stock_stats.py

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
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+

0 commit comments

Comments
 (0)