-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix bug in to_json function * Beam analysis endpoint (#98) * add beam schema * add beam analysis endpoint * add BeamEndpoint import * update schema for python 3.8 * update schema for python 3.8 * update endpoints for python 3.8 * fix analysis endpoints and schema * add analysis group endpoints (#99) * add analysis group endpoints * add analysis group import * python 3.8 compat * fix signature * use optional type hint --------- Co-authored-by: Keegan Cordeiro <[email protected]> * Beam sink endpoint (#100) * beam sink endpoint - allow json, csv and ndjson upload * expose beam endpoint in sdk * allow extra fields so that new fields are visible without an update to the SDK * remove undocumented endpoints * add features-api to_csv mixin * remove accidental print statement * fix typing for python 3.8 * update build url test * fix bug in features api endpoint when using iter_all * update feature api tests * update readme, add examples and missing param to beam update function * add beam endpoint tests (#102) * add beam endpoint tests * address comments - use correct fixtures --------- Co-authored-by: Keegan Cordeiro <[email protected]> * add comment regarding features-api * Pagination (#103) * add ArgKwargResult set for custom pagination * use custom pagination on all supported beam endpoints --------- Co-authored-by: Keegan Cordeiro <[email protected]> --------- Co-authored-by: Keegan Cordeiro <[email protected]> --------- Co-authored-by: Keegan Cordeiro <[email protected]> * fix bug in upload demand endpoint * use config dict on each model --------- Co-authored-by: Keegan Cordeiro <[email protected]>
- Loading branch information
Showing
29 changed files
with
3,917 additions
and
12 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
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
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
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
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
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 @@ | ||
from .endpoint import BeamEndpoint | ||
from .schemas import Analysis, AnalysisGroup | ||
|
||
|
||
__all__ = ["BeamEndpoint", "Analysis", "AnalysisGroup"] |
Oops, something went wrong.