Skip to content
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

DO NOT MERGE, but all tests pass #29

Open
wants to merge 1 commit into
base: ed/sdk-ng
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,9 @@ coverage.xml
*,cover
.hypothesis/
venv/
.venv/
.python-version
.pytest_cache

# Translations
*.mo
Expand Down
33 changes: 33 additions & 0 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# ref: https://docs.gitlab.com/ee/ci/README.html

stages:
- test

.nosetest:
stage: test
script:
- pip install -r requirements.txt
- pip install -r test-requirements.txt
- pytest --cov=mux_python

nosetest-2.7:
extends: .nosetest
image: python:2.7-alpine
nosetest-3.3:
extends: .nosetest
image: python:3.3-alpine
nosetest-3.4:
extends: .nosetest
image: python:3.4-alpine
nosetest-3.5:
extends: .nosetest
image: python:3.5-alpine
nosetest-3.6:
extends: .nosetest
image: python:3.6-alpine
nosetest-3.7:
extends: .nosetest
image: python:3.7-alpine
nosetest-3.8:
extends: .nosetest
image: python:3.8-alpine
232 changes: 232 additions & 0 deletions .openapi-generator/FILES
Original file line number Diff line number Diff line change
@@ -0,0 +1,232 @@
.gitignore
.gitlab-ci.yml
README.md
docs/AbridgedVideoView.md
docs/Asset.md
docs/AssetErrors.md
docs/AssetMaster.md
docs/AssetNonStandardInputReasons.md
docs/AssetRecordingTimes.md
docs/AssetResponse.md
docs/AssetStaticRenditions.md
docs/AssetStaticRenditionsFiles.md
docs/AssetsApi.md
docs/BreakdownValue.md
docs/CreateAssetRequest.md
docs/CreateLiveStreamRequest.md
docs/CreatePlaybackIDRequest.md
docs/CreatePlaybackIDResponse.md
docs/CreateSimulcastTargetRequest.md
docs/CreateTrackRequest.md
docs/CreateTrackResponse.md
docs/CreateUploadRequest.md
docs/DeliveryReport.md
docs/DeliveryUsageApi.md
docs/DimensionValue.md
docs/DimensionsApi.md
docs/DirectUploadsApi.md
docs/DisableLiveStreamResponse.md
docs/EnableLiveStreamResponse.md
docs/Error.md
docs/ErrorsApi.md
docs/ExportsApi.md
docs/FilterValue.md
docs/FiltersApi.md
docs/GetAssetInputInfoResponse.md
docs/GetAssetOrLiveStreamIdResponse.md
docs/GetAssetOrLiveStreamIdResponseData.md
docs/GetAssetOrLiveStreamIdResponseDataObject.md
docs/GetAssetPlaybackIDResponse.md
docs/GetMetricTimeseriesDataResponse.md
docs/GetOverallValuesResponse.md
docs/GetRealTimeBreakdownResponse.md
docs/GetRealTimeHistogramTimeseriesResponse.md
docs/GetRealTimeHistogramTimeseriesResponseMeta.md
docs/GetRealTimeTimeseriesResponse.md
docs/Incident.md
docs/IncidentBreakdown.md
docs/IncidentNotification.md
docs/IncidentNotificationRule.md
docs/IncidentResponse.md
docs/IncidentsApi.md
docs/InputFile.md
docs/InputInfo.md
docs/InputSettings.md
docs/InputSettingsOverlaySettings.md
docs/InputTrack.md
docs/Insight.md
docs/ListAllMetricValuesResponse.md
docs/ListAssetsResponse.md
docs/ListBreakdownValuesResponse.md
docs/ListDeliveryUsageResponse.md
docs/ListDimensionValuesResponse.md
docs/ListDimensionsResponse.md
docs/ListErrorsResponse.md
docs/ListExportsResponse.md
docs/ListFilterValuesResponse.md
docs/ListFiltersResponse.md
docs/ListFiltersResponseData.md
docs/ListIncidentsResponse.md
docs/ListInsightsResponse.md
docs/ListLiveStreamsResponse.md
docs/ListRealTimeDimensionsResponse.md
docs/ListRealTimeDimensionsResponseData.md
docs/ListRealTimeMetricsResponse.md
docs/ListRelatedIncidentsResponse.md
docs/ListSigningKeysResponse.md
docs/ListUploadsResponse.md
docs/ListVideoViewsResponse.md
docs/LiveStream.md
docs/LiveStreamResponse.md
docs/LiveStreamsApi.md
docs/Metric.md
docs/MetricsApi.md
docs/NotificationRule.md
docs/OverallValues.md
docs/PlaybackID.md
docs/PlaybackIDApi.md
docs/PlaybackPolicy.md
docs/RealTimeApi.md
docs/RealTimeBreakdownValue.md
docs/RealTimeHistogramTimeseriesBucket.md
docs/RealTimeHistogramTimeseriesBucketValues.md
docs/RealTimeHistogramTimeseriesDatapoint.md
docs/RealTimeTimeseriesDatapoint.md
docs/Score.md
docs/SignalLiveStreamCompleteResponse.md
docs/SigningKey.md
docs/SigningKeyResponse.md
docs/SimulcastTarget.md
docs/SimulcastTargetResponse.md
docs/Track.md
docs/URLSigningKeysApi.md
docs/UpdateAssetMP4SupportRequest.md
docs/UpdateAssetMasterAccessRequest.md
docs/Upload.md
docs/UploadError.md
docs/UploadResponse.md
docs/VideoView.md
docs/VideoViewEvent.md
docs/VideoViewResponse.md
docs/VideoViewsApi.md
mux_python/__init__.py
mux_python/api/__init__.py
mux_python/api/assets_api.py
mux_python/api/delivery_usage_api.py
mux_python/api/dimensions_api.py
mux_python/api/direct_uploads_api.py
mux_python/api/errors_api.py
mux_python/api/exports_api.py
mux_python/api/filters_api.py
mux_python/api/incidents_api.py
mux_python/api/live_streams_api.py
mux_python/api/metrics_api.py
mux_python/api/playback_id_api.py
mux_python/api/real_time_api.py
mux_python/api/url_signing_keys_api.py
mux_python/api/video_views_api.py
mux_python/api_client.py
mux_python/configuration.py
mux_python/exceptions.py
mux_python/models/__init__.py
mux_python/models/abridged_video_view.py
mux_python/models/asset.py
mux_python/models/asset_errors.py
mux_python/models/asset_master.py
mux_python/models/asset_non_standard_input_reasons.py
mux_python/models/asset_recording_times.py
mux_python/models/asset_response.py
mux_python/models/asset_static_renditions.py
mux_python/models/asset_static_renditions_files.py
mux_python/models/breakdown_value.py
mux_python/models/create_asset_request.py
mux_python/models/create_live_stream_request.py
mux_python/models/create_playback_id_request.py
mux_python/models/create_playback_id_response.py
mux_python/models/create_simulcast_target_request.py
mux_python/models/create_track_request.py
mux_python/models/create_track_response.py
mux_python/models/create_upload_request.py
mux_python/models/delivery_report.py
mux_python/models/dimension_value.py
mux_python/models/disable_live_stream_response.py
mux_python/models/enable_live_stream_response.py
mux_python/models/error.py
mux_python/models/filter_value.py
mux_python/models/get_asset_input_info_response.py
mux_python/models/get_asset_or_live_stream_id_response.py
mux_python/models/get_asset_or_live_stream_id_response_data.py
mux_python/models/get_asset_or_live_stream_id_response_data_object.py
mux_python/models/get_asset_playback_id_response.py
mux_python/models/get_metric_timeseries_data_response.py
mux_python/models/get_overall_values_response.py
mux_python/models/get_real_time_breakdown_response.py
mux_python/models/get_real_time_histogram_timeseries_response.py
mux_python/models/get_real_time_histogram_timeseries_response_meta.py
mux_python/models/get_real_time_timeseries_response.py
mux_python/models/incident.py
mux_python/models/incident_breakdown.py
mux_python/models/incident_notification.py
mux_python/models/incident_notification_rule.py
mux_python/models/incident_response.py
mux_python/models/input_file.py
mux_python/models/input_info.py
mux_python/models/input_settings.py
mux_python/models/input_settings_overlay_settings.py
mux_python/models/input_track.py
mux_python/models/insight.py
mux_python/models/list_all_metric_values_response.py
mux_python/models/list_assets_response.py
mux_python/models/list_breakdown_values_response.py
mux_python/models/list_delivery_usage_response.py
mux_python/models/list_dimension_values_response.py
mux_python/models/list_dimensions_response.py
mux_python/models/list_errors_response.py
mux_python/models/list_exports_response.py
mux_python/models/list_filter_values_response.py
mux_python/models/list_filters_response.py
mux_python/models/list_filters_response_data.py
mux_python/models/list_incidents_response.py
mux_python/models/list_insights_response.py
mux_python/models/list_live_streams_response.py
mux_python/models/list_real_time_dimensions_response.py
mux_python/models/list_real_time_dimensions_response_data.py
mux_python/models/list_real_time_metrics_response.py
mux_python/models/list_related_incidents_response.py
mux_python/models/list_signing_keys_response.py
mux_python/models/list_uploads_response.py
mux_python/models/list_video_views_response.py
mux_python/models/live_stream.py
mux_python/models/live_stream_response.py
mux_python/models/metric.py
mux_python/models/notification_rule.py
mux_python/models/overall_values.py
mux_python/models/playback_id.py
mux_python/models/playback_policy.py
mux_python/models/real_time_breakdown_value.py
mux_python/models/real_time_histogram_timeseries_bucket.py
mux_python/models/real_time_histogram_timeseries_bucket_values.py
mux_python/models/real_time_histogram_timeseries_datapoint.py
mux_python/models/real_time_timeseries_datapoint.py
mux_python/models/score.py
mux_python/models/signal_live_stream_complete_response.py
mux_python/models/signing_key.py
mux_python/models/signing_key_response.py
mux_python/models/simulcast_target.py
mux_python/models/simulcast_target_response.py
mux_python/models/track.py
mux_python/models/update_asset_master_access_request.py
mux_python/models/update_asset_mp4_support_request.py
mux_python/models/upload.py
mux_python/models/upload_error.py
mux_python/models/upload_response.py
mux_python/models/video_view.py
mux_python/models/video_view_event.py
mux_python/models/video_view_response.py
mux_python/rest.py
requirements.txt
setup.cfg
setup.py
test-requirements.txt
test/__init__.py
tox.ini
1 change: 1 addition & 0 deletions .openapi-generator/VERSION
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
5.0.1
Loading