-
Notifications
You must be signed in to change notification settings - Fork 33
SDK v2 development #26
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 36 commits
Commits
Show all changes
38 commits
Select commit
Hold shift + click to select a range
d6d6dec
initial commit v2.0
fatihkurtoglu 8889dbd
v2.0 development pt2
fatihkurtoglu 7373239
minor fixes
fatihkurtoglu 7cb5a17
readme v2 and updates to objects
fatihkurtoglu 327db4e
readme updates
fatihkurtoglu d04b5fa
readme enhanced with samples
fatihkurtoglu f42f5c1
updates to gitignore, setup and manifest files
fatihkurtoglu 5791fd5
pytest updated
fatihkurtoglu 3e08bca
docstring updates in model files
fatihkurtoglu 107ada7
exception structure and pylint recommendations
fatihkurtoglu 49f19f8
pylint configuration
fatihkurtoglu 8bc75ed
re-formatting by black
fatihkurtoglu 04a6f01
fixed setup to add urllib3 requirement
fatihkurtoglu 7ae04eb
fixed docstring
fatihkurtoglu ee7cafc
updates to project model, update_project method
fatihkurtoglu c7f4521
updates to readme and migration guide
fatihkurtoglu ccc4dff
typo in migration guide
fatihkurtoglu cde7cd1
updates to migration guide
fatihkurtoglu 7691314
pre-commit configuration
fatihkurtoglu 5478aa4
readme whitespace changes
fatihkurtoglu 39283f7
pre-commit formatting updates
fatihkurtoglu 7d8c231
pre-commit settings updated
fatihkurtoglu c785f56
global http parameters
fatihkurtoglu c995778
minor updates to pytest and batch
fatihkurtoglu 67a3116
update pytest
fatihkurtoglu 00cac12
make project params optional in creation
fatihkurtoglu 697f9ee
pre-commit updates
fatihkurtoglu 5df8782
changes to pre-commit
fatihkurtoglu 1dbe25d
pre-commit updates
fatihkurtoglu aa52f5c
updated readme
fatihkurtoglu afdbd02
readme update
fatihkurtoglu 9067831
readme updated with icons
fatihkurtoglu 65f216c
automated publish to pypi
fatihkurtoglu 3b7938a
version update guide
fatihkurtoglu a105982
updated documentation
fatihkurtoglu cf018aa
Updated developer_guide
fatihkurtoglu 2118ffd
method updates
fatihkurtoglu 4ad0951
updated documentation
fatihkurtoglu File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,28 @@ | ||
*.pyc | ||
# Byte-compiled / optimized / DLL files | ||
__pycache__/ | ||
*.py[cod] | ||
*$py.class | ||
|
||
# Distribution / packaging | ||
/build/ | ||
/dist/ | ||
/*.egg-info | ||
.tox | ||
.cache | ||
/.vscode/ | ||
*.egg | ||
*.eggs | ||
*.egg-info/ | ||
MANIFEST | ||
|
||
# For Visual Studio Code | ||
.vscode/ | ||
|
||
# Mac | ||
.DS_Store | ||
/build/ | ||
|
||
# Unit test / coverage reports | ||
.[nt]ox/ | ||
htmlcov/ | ||
.coverage | ||
.coverage.* | ||
.*cache | ||
nosetests.xml | ||
coverage.xml | ||
*.cover |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
default_language_version: | ||
python: python3.6 | ||
default_stages: [commit] | ||
|
||
repos: | ||
- repo: https://github.com/pre-commit/pre-commit-hooks | ||
rev: v3.2.0 | ||
hooks: | ||
- id: trailing-whitespace | ||
- id: end-of-file-fixer | ||
- id: check-added-large-files | ||
- id: check-yaml | ||
- id: check-case-conflict | ||
- repo: https://github.com/pycqa/isort | ||
rev: 5.8.0 | ||
hooks: | ||
- id: isort | ||
name: isort | ||
args: ["--profile", "black"] | ||
- repo: https://github.com/psf/black | ||
rev: 20.8b1 | ||
hooks: | ||
- id: black | ||
- repo: https://gitlab.com/pycqa/flake8 | ||
rev: 3.8.4 | ||
hooks: | ||
- id: flake8 | ||
- repo: local | ||
hooks: | ||
- id: pylint | ||
name: pylint | ||
entry: pylint | ||
language: python | ||
types: [python] | ||
files: scaleapi/ | ||
additional_dependencies: | ||
- 'pylint>=2.7.4' | ||
- 'requests>=2.25.0' | ||
- 'urllib3>=1.26.0' | ||
- 'pytest>=6.2.2' | ||
language_version: python3.6 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
[MASTER] | ||
disable= | ||
missing-module-docstring, | ||
too-few-public-methods, | ||
too-many-locals, | ||
too-many-arguments, | ||
too-many-instance-attributes, | ||
invalid-name, |
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
black>=19.10b0 | ||
flake8>=3.8.4 | ||
pre-commit==2.11.1 | ||
isort>=5.7.0 | ||
pytest>=6.2.2 | ||
pylint>=2.7.2 |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.