-
Notifications
You must be signed in to change notification settings - Fork 6
Minimial python sdk #367
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
Open
brandon-wada
wants to merge
54
commits into
not_main
Choose a base branch
from
minimial_python_sdk
base: not_main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Minimial python sdk #367
Changes from 1 commit
Commits
Show all changes
54 commits
Select commit
Hold shift + click to select a range
956ba2c
remove docs and old examples
930f33e
Move experimental features into the main client
87a7296
Automatically reformatting code
ba58442
restoring changes accidentally brought in from another branch
ce03663
Merge branch 'brandon/counting_formal_release' of github.com:groundli…
5de38fa
Automatically reformatting code
cac0855
remove extraneous files pt2
4eafde1
remove other peripherals
2ab3b93
wip replacing pydantic objects
7ebee27
move api object init into main client
25b2a7b
Merge branch 'brandon/counting_formal_release' of github.com:groundli…
b92592c
Merge branch 'brandon/counting_formal_release' into minimial_python_sdk
791355f
wip
8c825fd
move import
524a665
Merge branch 'brandon/counting_formal_release' into minimial_python_sdk
d51754a
wip, client.py should? be updated
8181018
move more imports
a31fd78
making create_detector generic
55dd26c
makes create_detector generic
c92e726
Automatically reformatting code
a71f780
appease the linter
6cfe38f
Merge branch 'brandon/counting_formal_release' of github.com:groundli…
379b770
appease the linter
cb38c27
ok, even for a linter this is a bit much
20feac0
update docs
c222e52
Merge branch 'brandon/counting_formal_release' into minimial_python_sdk
0a1578c
fix merge
2b781e1
Automatically reformatting code
db990a9
fix imports
c0675b0
detector tests are passing
584f574
Merge branch 'minimial_python_sdk' of github.com:groundlight/python-s…
93d9b34
Automatically reformatting code
fa78d46
Merge branch 'main' into minimial_python_sdk
3545ec1
Merge branch 'minimial_python_sdk' of github.com:groundlight/python-s…
9506817
remove doc tests, adjust linter
afa82bf
fix workflow?
63f8c87
git workflows aren't working
d587803
issue with gha file?
a1a92ab
Automatically reformatting code
fffb7ed
fix linter errors
dd016c9
patch up iq_is_confident
32d50f0
Merge branch 'minimial_python_sdk' of github.com:groundlight/python-s…
803036b
undo non-backwards compatibile changes
52e0e7f
update spec manually
c09f089
upgrade to latest openapi generator
3e5284b
change requirements to allow pydantic 1
046ece0
update makefile, import statements, public api
4575e6a
run generator
1fef635
update imports, add aenum
ccbb285
fix whoami
a467034
remove debug line
9640e0d
remove cli tests
d806a35
several errors remain, putting aside for now
1775ad2
Automatically reformatting code
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
Automatically reformatting code
- Loading branch information
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
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
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 |
|---|---|---|
|
|
@@ -4,6 +4,7 @@ | |
|
|
||
| from enum import Enum | ||
|
|
||
|
|
||
| class ModeEnumSplint(str, Enum): | ||
| BINARY = "BINARY" | ||
| COUNT = "COUNT" | ||
|
|
||
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
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I didn't yet figure out a good way to access the generated enums, the play in the future is probably to modify the OpenAPI generator mustache templates to create this file for us, but just for this moment it'll prove the concept to write this manually