-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#3 Revert back to pipenv instead of poetry due to lack of support of…
… libraries like GDAL. Move swagger_client to the top level of the source code so that it can be used.
- Loading branch information
Showing
20 changed files
with
253 additions
and
654 deletions.
There are no files selected for viewing
This file contains 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,5 @@ | ||
.vscode/* | ||
|
||
src/generated/swagger_client.egg-info | ||
|
||
*.pyc |
This file contains 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,24 @@ | ||
[[source]] | ||
url = "https://pypi.org/simple" | ||
verify_ssl = true | ||
name = "pypi" | ||
|
||
[packages] | ||
certifi = "*" | ||
six = "*" | ||
python-dateutil = "*" | ||
urllib3 = "*" | ||
py = "*" | ||
randomize = "*" | ||
|
||
[dev-packages] | ||
black = "*" | ||
coverage = "*" | ||
nose = "*" | ||
pluggy = "*" | ||
|
||
[requires] | ||
python_version = "3.8" | ||
|
||
[pipenv] | ||
allow_prereleases = true |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains 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,10 @@ | ||
import os | ||
|
||
print(os.getcwd()) | ||
|
||
|
||
from swagger_client.api.categories_api import CategoriesApi | ||
|
||
|
||
api = CategoriesApi() | ||
api.get_category_by_id(1) |
Oops, something went wrong.