Skip to content

Commit f910afd

Browse files
committed
Updated README.md and .gitignore
1 parent ecf2e59 commit f910afd

File tree

2 files changed

+56
-3
lines changed

2 files changed

+56
-3
lines changed

.gitignore

Lines changed: 44 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,46 @@
1-
gemini/keys.txt
2-
gemini/testing.py
1+
keys.txt
2+
33
*.pyc
44
*~
5-
*.swp
5+
*.swp
6+
7+
# C extensions
8+
*.so
9+
10+
# Distribution / packaging
11+
.Python
12+
env/
13+
build/
14+
develop-eggs/
15+
dist/
16+
downloads/
17+
eggs/
18+
.eggs/
19+
lib/
20+
lib64/
21+
parts/
22+
sdist/
23+
var/
24+
*.egg-info/
25+
.installed.cfg
26+
*.egg
27+
28+
# PyInstaller
29+
# Usually these files are written by a python script from a template
30+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
31+
*.manifest
32+
*.spec
33+
34+
# Installer logs
35+
pip-log.txt
36+
pip-delete-this-directory.txt
37+
38+
# Unit test / coverage reports
39+
htmlcov/
40+
.tox/
41+
.coverage
42+
.coverage.*
43+
.cache
44+
nosetests.xml
45+
coverage.xml
46+
*,cover

README.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -221,3 +221,15 @@ r.export_to_xml(r'/c/Users/user/Documents', 'accepted')
221221
- Export recorded data from market data or order events websocket into a matplotlib graph
222222
- Export recorded data from market data or order events websocket into a sqlite, postgresl or sql database
223223
- Add test for the cached metaclass
224+
225+
# Change Log
226+
*0.2.0*
227+
- Created BaseWebsocket class
228+
- Created OrderEventsWS class to interact with the order events websocket
229+
- Created MarketDataWS class to interact with the market data websocket
230+
- Added greater support for heartbeat API's
231+
- Improved the Cached metaclass
232+
- Added support for sandbox urls
233+
234+
*0.0.1*
235+
- Original release

0 commit comments

Comments
 (0)