Skip to content

Commit bf27095

Browse files
authored
Merge pull request #20 from cryptomkt/api-v3-update
Update API v3
2 parents abe5217 + 972032f commit bf27095

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

81 files changed

+6791
-2538
lines changed

.gitignore

Lines changed: 26 additions & 124 deletions
Original file line numberDiff line numberDiff line change
@@ -1,128 +1,30 @@
1+
.vscode/
2+
p-env/
13

2-
# Created by https://www.gitignore.io/api/pycharm+all,pycharm+iml
4+
# Byte-compiled / optimized / DLL files
5+
__pycache__/
6+
*.py[cod]
7+
*$py.class
38

4-
### PyCharm+all ###
5-
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
6-
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
9+
# C extensions
10+
*.so
711

8-
# User-specific stuff:
9-
.idea/**/workspace.xml
10-
.idea/**/tasks.xml
11-
.idea/dictionaries
12-
13-
# Sensitive or high-churn files:
14-
.idea/**/dataSources/
15-
.idea/**/dataSources.ids
16-
.idea/**/dataSources.xml
17-
.idea/**/dataSources.local.xml
18-
.idea/**/sqlDataSources.xml
19-
.idea/**/dynamic.xml
20-
.idea/**/uiDesigner.xml
21-
22-
# Gradle:
23-
.idea/**/gradle.xml
24-
.idea/**/libraries
25-
26-
# CMake
27-
cmake-build-debug/
28-
29-
# Mongo Explorer plugin:
30-
.idea/**/mongoSettings.xml
31-
32-
## File-based project format:
33-
*.iws
34-
35-
## Plugin-specific files:
36-
37-
# IntelliJ
38-
/out/
39-
40-
# mpeltonen/sbt-idea plugin
41-
.idea_modules/
42-
43-
# JIRA plugin
44-
atlassian-ide-plugin.xml
45-
46-
# Cursive Clojure plugin
47-
.idea/replstate.xml
48-
49-
# Crashlytics plugin (for Android Studio and IntelliJ)
50-
com_crashlytics_export_strings.xml
51-
crashlytics.properties
52-
crashlytics-build.properties
53-
fabric.properties
54-
55-
### PyCharm+all Patch ###
56-
# Ignores the whole idea folder
57-
# See https://github.com/joeblau/gitignore.io/issues/186 and https://github.com/joeblau/gitignore.io/issues/360
58-
59-
.idea/
60-
61-
### PyCharm+iml ###
62-
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
63-
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
64-
65-
# User-specific stuff:
66-
67-
# Sensitive or high-churn files:
68-
69-
# Gradle:
70-
71-
# CMake
72-
73-
# Mongo Explorer plugin:
74-
75-
## File-based project format:
76-
77-
## Plugin-specific files:
78-
79-
# IntelliJ
80-
81-
# mpeltonen/sbt-idea plugin
82-
83-
# JIRA plugin
84-
85-
# Cursive Clojure plugin
86-
87-
# Crashlytics plugin (for Android Studio and IntelliJ)
88-
89-
### PyCharm+iml Patch ###
90-
# Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-249601023
91-
92-
*.ipr
93-
94-
# End of https://www.gitignore.io/api/pycharm+all,pycharm+iml
95-
96-
/tests
97-
/dist
98-
*-info
99-
/build
100-
101-
.vscode
102-
#personal files
103-
main.py
104-
keys.txt
105-
criptomarket/socketio/keys.txt
12+
# Distribution / packaging
10613
.Python
107-
/cryptomarket/__pycache__
108-
/cryptomarket/exchange/__pycache__
109-
110-
#python environment
111-
/bin
112-
/include
113-
/liby
114-
/cpmkt-py-sdk
115-
116-
#python stuff
117-
cryptomarket/__init__.pyc
118-
cryptomarket/exchange/__init__.pyc
119-
cryptomarket/exchange/client.pyc
120-
121-
#DS_store
122-
.DS_Store
123-
cryptomarket/.DS_Store
124-
125-
test.py
126-
socket.log
127-
128-
*/__pycache__/*
14+
build/
15+
develop-eggs/
16+
dist/
17+
downloads/
18+
eggs/
19+
.eggs/
20+
lib/
21+
lib64/
22+
parts/
23+
sdist/
24+
var/
25+
wheels/
26+
share/python-wheels/
27+
*.egg-info/
28+
.installed.cfg
29+
*.egg
30+
MANIFEST

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@
186186
same "printed page" as the copyright notice for easier
187187
identification within third-party archives.
188188

189-
Copyright 2020 CryptoMarket Inc.
189+
Copyright 2021 CryptoMarket Inc.
190190

191191
Licensed under the Apache License, Version 2.0 (the "License");
192192
you may not use this file except in compliance with the License.

0 commit comments

Comments
 (0)