fastpix-python 1.1.2__tar.gz → 1.1.4__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- fastpix_python-1.1.4/CHANGELOG.md +274 -0
- fastpix_python-1.1.4/CONTRIBUTING.md +26 -0
- fastpix_python-1.1.4/MANIFEST.in +35 -0
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/PKG-INFO +13 -13
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/README.md +11 -11
- fastpix_python-1.1.4/USAGE.md +70 -0
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/__init__.py +1 -1
- fastpix_python-1.1.4/fastpix_python/_hooks/__init__.py +4 -0
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/_hooks/sdkhooks.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/_hooks/types.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/_version.py +3 -3
- fastpix_python-1.1.4/fastpix_python/basesdk.py +314 -0
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/dimensions.py +56 -52
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/drm_configurations.py +89 -157
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/errors/__init__.py +2 -3
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/errors/badrequest_error.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/errors/duplicatemp4support_error.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/errors/duplicatereferenceiderrorresponse.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/errors/enable_live_streamop.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/errors/fastpixdefaulterror.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/errors/fastpixerror.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/errors/forbidden_error.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/errors/forbiddenresponse_error.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/errors/invalidpermission_error.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/errors/invalidplaylistidresponse_error.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/errors/livenotfounderror.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/errors/mediaclipnotfound_error.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/errors/medianotfound_error.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/errors/mediaorplaybacknotfound_error.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/errors/no_response_error.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/errors/notfounderror.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/errors/notfounderrorplaybackid.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/errors/notfounderrorsimulcast.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/errors/responsevalidationerror.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/errors/signingkeynotfounderror.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/errors/simulcastunavailable_error.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/errors/streamalreadydisablederror.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/errors/streamalreadyenablederror.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/errors/trackduplicaterequest_error.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/errors/trialplanrestrictionerror.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/errors/unauthorized_error.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/errors/unauthorizedresponse_error.py +1 -1
- fastpix_python-1.1.4/fastpix_python/errors/validationerrorresponse.py +82 -0
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/errors/viewnotfound_error.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/errors.py +28 -24
- fastpix_python-1.1.4/fastpix_python/fastpix.yaml +11522 -0
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/httpclient.py +7 -7
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/in_video_ai_features.py +151 -299
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/input_video.py +133 -161
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/live_playback.py +116 -231
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/manage_live_stream.py +283 -621
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/manage_videos.py +485 -1131
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/metrics.py +98 -94
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/__init__.py +1044 -607
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/accesspolicy.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/add_media_to_playlistop.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/add_media_trackop.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/addtrackrequest.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/addtrackresponse.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/audioinput.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/badrequest_error.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/basicaccesspolicy.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/browsernamedimensiondetails.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/cancel_uploadop.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/change_media_order_in_playlistop.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/chaptersresponse.py +2 -2
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/complete_live_streamop.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/create_media_playback_idop.py +26 -3
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/create_playbackid_of_streamop.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/create_simulcast_of_streamop.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/createlivestreamrequest.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/createmediarequest.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/createmediaresponse.py +21 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/createmediasuccessresponse.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/createplaylistrequest.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/createresponse.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/createsigningkeyresponsedto.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/datapagination.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/daterange.py +1 -1
- fastpix_python-1.1.4/fastpix_python/models/default_error.py +88 -0
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/delete_a_playlistop.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/delete_live_streamop.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/delete_media_from_playlistop.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/delete_media_playback_idop.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/delete_media_trackop.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/delete_mediaop.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/delete_playbackid_of_streamop.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/delete_signing_keyop.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/delete_simulcast_of_streamop.py +1 -1
- fastpix_python-1.1.4/fastpix_python/models/deletesigningkeyresponse.py +30 -0
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/direct_upload_video_mediaop.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/directupload.py +13 -3
- fastpix_python-1.1.4/fastpix_python/models/directuploadresponse.py +38 -0
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/disable_live_streamop.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/domainrestrictions.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/drmidresponse.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/duplicatemp4support_error.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/duplicatereferenceiderrorresponse.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/enable_live_streamop.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/errordetails.py +5 -5
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/fielderror.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/forbidden_error.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/forbiddenresponse_error.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/generate_subtitle_trackop.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/generatetrackresponse.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/get_all_playlistsop.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/get_all_streamsop.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/get_data_viewlist_current_views_filterop.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/get_data_viewlist_current_views_gettimeseriesviewsop.py +5 -5
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/get_live_stream_by_idop.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/get_live_stream_playback_idop.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/get_live_stream_viewer_count_by_idop.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/get_media_clipsop.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/get_mediaop.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/get_playback_idop.py +13 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/get_playlist_by_idop.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/get_signing_key_by_idop.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/get_specific_simulcast_of_streamop.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/get_timeseries_dataop.py +2 -2
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/get_video_view_detailsop.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/getallplaylistsresponse.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/getallsigningkeyresponse.py +7 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/getallsigningkeyresponsedto.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/getcreatelivestreamresponsedto.py +23 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/getdrmconfigurationbyidop.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/getdrmconfigurationop.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/getpublicpemusingsigningkeyidresponsedto.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/getstreamsresponse.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/invalidpermission_error.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/invalidplaylistidresponse_error.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/languagecode.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/list_breakdown_valuesop.py +9 -7
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/list_by_top_contentop.py +6 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/list_comparison_valuesop.py +3 -3
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/list_dimensionsop.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/list_errorsop.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/list_filter_values_for_dimensionop.py +4 -5
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/list_live_clipsop.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/list_mediaop.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/list_overall_valuesop.py +2 -2
- fastpix_python-1.1.4/fastpix_python/models/list_playback_idsop.py +235 -0
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/list_signing_keysop.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/list_uploadsop.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/list_video_viewsop.py +5 -5
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/livenotfounderror.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/livestreamdeleteresponse.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/livestreamgetresponse.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/livestreampagination.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/livestreamresponsedto.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/media.py +37 -8
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/mediacancelresponse.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/mediaclipnotfound_error.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/mediaclipresponse.py +10 -6
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/mediaidsrequest.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/medianotfound_error.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/mediaorplaybacknotfound_error.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/mediatype.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/metricsbreakdowndetails.py +5 -5
- fastpix_python-1.1.4/fastpix_python/models/metricscomparisondetails.py +69 -0
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/metricsoveralldatadetails.py +5 -5
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/metricsoverallmetadatadetails.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/metricstimeseriesdatadetails.py +5 -5
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/metricstimeseriesmetadatadetails.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/moderationresponse.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/namedentitiesresponse.py +2 -2
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/notfounderror.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/notfounderrorplaybackid.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/notfounderrorsimulcast.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/pagination.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/patchlivestreamrequest.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/patchresponsedata.py +14 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/patchresponsedto.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/playbackid.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/playbackidrequest.py +1 -1
- fastpix_python-1.1.4/fastpix_python/models/playbackidresponse.py +52 -0
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/playbackidsuccessresponse.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/playbacksettings.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/playlistbyidresponse.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/playlistcreatedresponse.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/playlistcreatedschema.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/playlistitem.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/playlistorder.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/policyaction.py +1 -1
- fastpix_python-1.1.4/fastpix_python/models/retrievemediainputinfoop.py +102 -0
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/security.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/signingkeynotfounderror.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/signingkeyworkspacedto.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/simulcastdeleteresponse.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/simulcastrequest.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/simulcastresponse.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/simulcastunavailable_error.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/simulcastupdaterequest.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/simulcastupdateresponse.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/singingkeyspagination.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/sortorder.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/srtplaybackresponse.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/streamalreadydisablederror.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/streamalreadyenablederror.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/subtitleinput.py +1 -1
- fastpix_python-1.1.4/fastpix_python/models/successresponse.py +29 -0
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/summaryresponse.py +3 -2
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/toperrordetails.py +5 -5
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/track.py +20 -5
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/trackduplicaterequest_error.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/tracksubtitlesgeneraterequest.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/trialplanrestrictionerror.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/unauthorized_error.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/unauthorizedresponse_error.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/update_a_playlistop.py +1 -1
- fastpix_python-1.1.4/fastpix_python/models/update_domain_restrictionsop.py +171 -0
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/update_live_streamop.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/update_media_chaptersop.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/update_media_moderationop.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/update_media_named_entitiesop.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/update_media_summaryop.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/update_media_trackop.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/update_specific_simulcast_of_streamop.py +1 -1
- fastpix_python-1.1.4/fastpix_python/models/update_user_agent_restrictionsop.py +171 -0
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/updated_mediaop.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/updated_mp4supportop.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/updated_source_accessop.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/updateplaylistrequest.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/updatetrackrequest.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/updatetrackresponse.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/useragentrestrictions.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/videoinput.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/viewnotfound_error.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/views.py +59 -65
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/viewsbytopcontentdetails.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/viewscountresponse.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/viewslist.py +5 -5
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/models/watermarkinput.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/playback.py +546 -208
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/playlist.py +259 -541
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/sdk.py +4 -5
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/sdkconfiguration.py +2 -2
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/signing_keys.py +147 -291
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/simulcast_stream.py +152 -323
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/start_live_stream.py +32 -28
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/types/__init__.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/types/basemodel.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/utils/__init__.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/utils/annotations.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/utils/datetimes.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/utils/enums.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/utils/eventstreaming.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/utils/forms.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/utils/headers.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/utils/logger.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/utils/metadata.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/utils/queryparams.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/utils/requestbodies.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/utils/retries.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/utils/security.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/utils/serializers.py +2 -2
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/utils/unmarshal_json_response.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/utils/url.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/utils/values.py +1 -1
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/views_sdk.py +160 -325
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python.egg-info/PKG-INFO +13 -13
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python.egg-info/SOURCES.txt +11 -0
- fastpix_python-1.1.4/py.typed +1 -0
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/pyproject.toml +4 -2
- fastpix_python-1.1.4/requirements.txt +6 -0
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/setup.py +4 -4
- fastpix_python-1.1.2/fastpix_python/_hooks/__init__.py +0 -4
- fastpix_python-1.1.2/fastpix_python/basesdk.py +0 -368
- fastpix_python-1.1.2/fastpix_python/errors/validationerrorresponse.py +0 -19
- fastpix_python-1.1.2/fastpix_python/models/deletesigningkeyresponse.py +0 -16
- fastpix_python-1.1.2/fastpix_python/models/directuploadresponse.py +0 -23
- fastpix_python-1.1.2/fastpix_python/models/metricscomparisondetails.py +0 -72
- fastpix_python-1.1.2/fastpix_python/models/playbackidresponse.py +0 -26
- fastpix_python-1.1.2/fastpix_python/models/retrievemediainputinfoop.py +0 -49
- fastpix_python-1.1.2/fastpix_python/models/successresponse.py +0 -29
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/LICENSE +0 -0
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python/py.typed +0 -0
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python.egg-info/dependency_links.txt +0 -0
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python.egg-info/requires.txt +0 -0
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/fastpix_python.egg-info/top_level.txt +0 -0
- {fastpix_python-1.1.2 → fastpix_python-1.1.4}/setup.cfg +0 -0
|
@@ -0,0 +1,274 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file.
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
---
|
|
7
|
+
|
|
8
|
+
## [1.1.4]
|
|
9
|
+
|
|
10
|
+
### Changed
|
|
11
|
+
- **SDK version bump: `1.1.3` → `1.1.4`.**
|
|
12
|
+
A maintenance release that aligns the SDK's internal version identifiers and
|
|
13
|
+
applies behaviour-preserving code-quality cleanup. It contains no functional,
|
|
14
|
+
API, or behavioural changes and is fully backward compatible with `1.1.3`.
|
|
15
|
+
|
|
16
|
+
Updated identifiers:
|
|
17
|
+
- `__version__` / package version — now reports `1.1.4` (the internal
|
|
18
|
+
identifiers were previously lagging at `1.0.1`; they are now aligned with
|
|
19
|
+
the package version).
|
|
20
|
+
- `User-Agent` header — outbound requests now identify as
|
|
21
|
+
`fastpix-sdk/python 1.1.4`.
|
|
22
|
+
|
|
23
|
+
Maintainability:
|
|
24
|
+
- Internal static-analysis (SonarQube) cleanup across the SDK, samples, and
|
|
25
|
+
test harness — bundled request-builder parameters, shared response-handling
|
|
26
|
+
helpers, duplicated string literals extracted into constants, and nested
|
|
27
|
+
conditionals merged. No public-surface impact.
|
|
28
|
+
|
|
29
|
+
### Compatibility
|
|
30
|
+
- No changes to public types, method signatures, request/response models,
|
|
31
|
+
default server URLs, hooks, or retry logic.
|
|
32
|
+
- No action required for existing integrations — upgrade the dependency and
|
|
33
|
+
re-run `pip install --upgrade fastpix_python`.
|
|
34
|
+
|
|
35
|
+
---
|
|
36
|
+
|
|
37
|
+
## [1.1.3]
|
|
38
|
+
|
|
39
|
+
### ⚠️ Important — FastPix is migrating from `.io` to `.com`
|
|
40
|
+
|
|
41
|
+
All FastPix-owned hosts, API endpoints, and documentation links are being moved from the `.io` TLD to `.com`. The `.io` hosts continue to serve traffic during the transition window, **but they are slated for deprecation soon** — please update any hard-coded references in your application as part of your next deploy.
|
|
42
|
+
|
|
43
|
+
| Old (`.io`) | New (`.com`) |
|
|
44
|
+
|---|---|
|
|
45
|
+
| `api.fastpix.io` | `api.fastpix.com` |
|
|
46
|
+
| `stream.fastpix.io` | `stream.fastpix.com` |
|
|
47
|
+
| `images.fastpix.io` | `images.fastpix.com` |
|
|
48
|
+
| `dashboard.fastpix.io` | `dashboard.fastpix.com` |
|
|
49
|
+
| `www.fastpix.io` | `www.fastpix.com` |
|
|
50
|
+
| `docs.fastpix.io/...` | `fastpix.com/docs/...` |
|
|
51
|
+
|
|
52
|
+
What this means for users of `fastpix_python`:
|
|
53
|
+
|
|
54
|
+
- **If you rely on SDK defaults**, no code change is required. The default `server_url` in this release points at `https://api.fastpix.com/v1/`, so bumping to `1.1.3` and re-running `pip install --upgrade fastpix_python` is enough.
|
|
55
|
+
- **If you have an explicit `server_url` override** (e.g. `Fastpix(server_url="https://api.fastpix.io/v1/")`), change it to `https://api.fastpix.com/v1/`.
|
|
56
|
+
- **If your application code references FastPix asset URLs directly** — playback URLs (`stream.fastpix.io/...`), image CDN (`images.fastpix.io/...`), dashboard deep links, or doc links in your own README — update them to the `.com` equivalents before the `.io` hosts are decommissioned.
|
|
57
|
+
- We strongly recommend upgrading **every official FastPix SDK** in your stack to its latest release as part of the same change — every SDK is being rolled out with the same migration.
|
|
58
|
+
|
|
59
|
+
### Changed
|
|
60
|
+
|
|
61
|
+
- All README, USAGE, and per-SDK documentation pages updated end-to-end from `dashboard.fastpix.io` / `docs.fastpix.io/...` to `dashboard.fastpix.com` / `fastpix.com/docs/...` so every link in the package points at the post-migration host structure.
|
|
62
|
+
- Reference links (Homepage, Dashboard, API Reference, "Detailed Usage") repointed to `fastpix.com`.
|
|
63
|
+
- Sample playback URLs in code examples updated from `stream.fastpix.io` to `stream.fastpix.com`.
|
|
64
|
+
|
|
65
|
+
### Docs
|
|
66
|
+
|
|
67
|
+
- 173 documentation links across 70 markdown files verified reachable after migration; zero `fastpix.com/docs/*` URLs are broken. The handful of remaining broken links in the link-check report are expired example assets / placeholder thumbnails inside API response snippets, not navigation targets.
|
|
68
|
+
|
|
69
|
+
---
|
|
70
|
+
|
|
71
|
+
## [1.1.2]
|
|
72
|
+
|
|
73
|
+
### Fixed
|
|
74
|
+
- Fixed `events` field in `get_video_view_details` response returning empty objects — added `validation_alias` mappings for abbreviated API keys (`pt`, `e`, `vt`, `d`) to full camelCase names (`playerPlayheadTime`, `eventName`, `viewerTime`, `eventDetails`)
|
|
75
|
+
- Fixed `eventDetails` nested object returning raw abbreviated keys — introduced `EventDetails` model with proper field mappings (`host`→`hostName`, `txt`→`text`, `c`→`code`, `err`→`error`, `t`→`type`, `u`→`url`, `br`→`bitrate`, `h`→`height`, `fps`→`fps`, `cd`→`codec`, `w`→`width`)
|
|
76
|
+
- Fixed `fpSDK` and `fpSDKVersion` fields missing from response — added `AliasChoices` to accept both `fpSdk` and `fpSDK` variants from the API
|
|
77
|
+
- Fixed `experimentName` null value being excluded from serialized output
|
|
78
|
+
- Added missing `custom` field to `Views` model to capture user-defined metadata object
|
|
79
|
+
|
|
80
|
+
### Improved
|
|
81
|
+
- Response models for video view details now fully conform to the OpenAPI spec field names
|
|
82
|
+
|
|
83
|
+
---
|
|
84
|
+
|
|
85
|
+
## [1.1.1]
|
|
86
|
+
|
|
87
|
+
### Fixed
|
|
88
|
+
- Fixed SDK import paths in `_sub_sdk_map` - changed from `Fastpix.*` to `fastpix_python.*` to resolve `ModuleNotFoundError` for end users
|
|
89
|
+
- Fixed all documentation examples - removed unnecessary `sys.path.append()` statements
|
|
90
|
+
- Updated method name from `create_from_url` to `create_media` in examples
|
|
91
|
+
|
|
92
|
+
### Improved
|
|
93
|
+
- All SDK documentation examples now work out-of-the-box without workarounds
|
|
94
|
+
- Consistent import statements across all documentation files
|
|
95
|
+
|
|
96
|
+
## [1.1.0]
|
|
97
|
+
|
|
98
|
+
### Fixed
|
|
99
|
+
- Fixed missing parameters in multiple API methods.
|
|
100
|
+
|
|
101
|
+
### Improved
|
|
102
|
+
- Improved overall developer experience through more accurate typings.
|
|
103
|
+
|
|
104
|
+
## [1.0.3]
|
|
105
|
+
|
|
106
|
+
### Fixed
|
|
107
|
+
- Fixed pyproject.toml file Packaging Issue
|
|
108
|
+
|
|
109
|
+
|
|
110
|
+
## [1.0.2]
|
|
111
|
+
|
|
112
|
+
### Fixed
|
|
113
|
+
- Fixed Packaging Issue
|
|
114
|
+
|
|
115
|
+
|
|
116
|
+
## [1.0.1]
|
|
117
|
+
|
|
118
|
+
### Fixed
|
|
119
|
+
- Fixed all error handling links in README.md documentation
|
|
120
|
+
- Corrected typos in file paths (e.g., `fFastpix` → `Fastpix`)
|
|
121
|
+
- Updated filenames to match actual error class files (added missing underscores)
|
|
122
|
+
- Fixed 23 error class links to properly redirect to correct files
|
|
123
|
+
- Verified all links now point to existing files in `src/Fastpix/errors/` directory
|
|
124
|
+
|
|
125
|
+
## [1.0.0]
|
|
126
|
+
|
|
127
|
+
### Added
|
|
128
|
+
- Complete API coverage for Media, Live Streaming, Video Data, and Signing Keys
|
|
129
|
+
- Python 3.9+ support with async/await patterns and type hints
|
|
130
|
+
- Media upload, management, and processing capabilities
|
|
131
|
+
- Live streaming with simulcasting support
|
|
132
|
+
- Video analytics and performance tracking
|
|
133
|
+
- Cryptographic signing keys for secure authentication
|
|
134
|
+
- In-video AI processing features
|
|
135
|
+
- DRM configuration and management
|
|
136
|
+
- Playlist creation and management
|
|
137
|
+
- Comprehensive error handling with specific exception types
|
|
138
|
+
- Both sync and async client implementations
|
|
139
|
+
- Built-in retry mechanisms and timeout handling
|
|
140
|
+
|
|
141
|
+
### Changed
|
|
142
|
+
- Reorganized package structure for better maintainability
|
|
143
|
+
- Updated dependencies to modern Python packages (httpx, pydantic, httpcore)
|
|
144
|
+
- Improved API design with better error handling
|
|
145
|
+
- Enhanced documentation and examples
|
|
146
|
+
|
|
147
|
+
### Fixed
|
|
148
|
+
- Improved error handling with specific exception types
|
|
149
|
+
- Fixed type annotation issues for better IDE support
|
|
150
|
+
- Ensured consistent API patterns across modules
|
|
151
|
+
|
|
152
|
+
---
|
|
153
|
+
|
|
154
|
+
## [0.1.8]
|
|
155
|
+
|
|
156
|
+
### Added
|
|
157
|
+
- Enhanced README documentation with comprehensive usage examples
|
|
158
|
+
- Improved project setup and installation instructions
|
|
159
|
+
|
|
160
|
+
### Changed
|
|
161
|
+
- Updated version number to reflect latest improvements
|
|
162
|
+
- Restructured documentation for better user experience
|
|
163
|
+
- Enhanced code examples and API usage guides
|
|
164
|
+
|
|
165
|
+
---
|
|
166
|
+
|
|
167
|
+
## [0.1.7]
|
|
168
|
+
|
|
169
|
+
### Added
|
|
170
|
+
- New base URL configuration system for better API connectivity
|
|
171
|
+
- Support for different API environments (production, staging, development)
|
|
172
|
+
|
|
173
|
+
### Changed
|
|
174
|
+
- Updated base URL configuration for improved API endpoint resolution
|
|
175
|
+
- Enhanced connection stability and reliability
|
|
176
|
+
- Improved error handling for connection issues
|
|
177
|
+
|
|
178
|
+
---
|
|
179
|
+
|
|
180
|
+
## [0.1.6]
|
|
181
|
+
|
|
182
|
+
### Added
|
|
183
|
+
- Project URL management system for better package distribution
|
|
184
|
+
- Enhanced package metadata and configuration
|
|
185
|
+
|
|
186
|
+
### Changed
|
|
187
|
+
- Updated project URLs in configuration files for better package identification
|
|
188
|
+
- Improved package metadata and distribution information
|
|
189
|
+
- Enhanced project discoverability and documentation links
|
|
190
|
+
|
|
191
|
+
---
|
|
192
|
+
|
|
193
|
+
## [0.1.5]
|
|
194
|
+
|
|
195
|
+
### Added
|
|
196
|
+
- Comprehensive version tracking and file management system
|
|
197
|
+
- Automated version control and release management
|
|
198
|
+
- Initial project structure and configuration framework
|
|
199
|
+
|
|
200
|
+
### Changed
|
|
201
|
+
- Updated version number and project configuration
|
|
202
|
+
- Improved project organization and file structure
|
|
203
|
+
- Enhanced build and deployment processes
|
|
204
|
+
|
|
205
|
+
---
|
|
206
|
+
|
|
207
|
+
## [0.1.4]
|
|
208
|
+
|
|
209
|
+
### Added
|
|
210
|
+
- New package naming convention for better identification
|
|
211
|
+
- Enhanced package metadata and distribution information
|
|
212
|
+
|
|
213
|
+
### Changed
|
|
214
|
+
- Changed package name for better identification and distribution
|
|
215
|
+
- Updated package metadata and configuration
|
|
216
|
+
- Improved package discoverability and installation process
|
|
217
|
+
|
|
218
|
+
---
|
|
219
|
+
|
|
220
|
+
## [0.1.3]
|
|
221
|
+
|
|
222
|
+
### Added
|
|
223
|
+
- Version management improvements
|
|
224
|
+
- Enhanced configuration system
|
|
225
|
+
|
|
226
|
+
### Changed
|
|
227
|
+
- Updated version number to reflect latest changes
|
|
228
|
+
- Improved project configuration and build processes
|
|
229
|
+
- Enhanced package metadata and dependencies
|
|
230
|
+
|
|
231
|
+
---
|
|
232
|
+
|
|
233
|
+
## [0.1.2]
|
|
234
|
+
|
|
235
|
+
### Added
|
|
236
|
+
- Comprehensive documentation link validation system
|
|
237
|
+
- Enhanced workflow automation and CI/CD pipeline
|
|
238
|
+
|
|
239
|
+
### Fixed
|
|
240
|
+
- Corrected redirection links in README documentation
|
|
241
|
+
- Fixed broken documentation links for better user experience
|
|
242
|
+
- Resolved navigation issues in project documentation
|
|
243
|
+
|
|
244
|
+
### Changed
|
|
245
|
+
- Updated workflow configuration and processes
|
|
246
|
+
- Improved project automation and deployment pipeline
|
|
247
|
+
- Enhanced documentation structure and organization
|
|
248
|
+
|
|
249
|
+
---
|
|
250
|
+
|
|
251
|
+
## [0.1.1]
|
|
252
|
+
|
|
253
|
+
### Changed
|
|
254
|
+
- Updated codebase with consistent naming conventions
|
|
255
|
+
- Added comprehensive package description
|
|
256
|
+
|
|
257
|
+
### Fixed
|
|
258
|
+
- Resolved naming convention inconsistencies
|
|
259
|
+
|
|
260
|
+
---
|
|
261
|
+
|
|
262
|
+
## [0.1.0]
|
|
263
|
+
|
|
264
|
+
### Added
|
|
265
|
+
- Initial release of FastPix Python SDK
|
|
266
|
+
- Sync and async client support
|
|
267
|
+
- Media API integration with upload, management, and processing
|
|
268
|
+
- Playback ID management for media files
|
|
269
|
+
- Media operations (list, get, update, delete)
|
|
270
|
+
- Presigned URL generation for video uploads
|
|
271
|
+
- Livestream API integration
|
|
272
|
+
- Livestream management (create, update, delete)
|
|
273
|
+
- Playback ID management for livestreams
|
|
274
|
+
- Simulcast configuration for livestreams
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# Contributing to This Repository
|
|
2
|
+
|
|
3
|
+
Thank you for your interest in contributing to this repository. Please note that this repository contains generated code. As such, we do not accept direct changes or pull requests. Instead, we encourage you to follow the guidelines below to report issues and suggest improvements.
|
|
4
|
+
|
|
5
|
+
## How to Report Issues
|
|
6
|
+
|
|
7
|
+
If you encounter any bugs or have suggestions for improvements, please open an issue on GitHub. When reporting an issue, please provide as much detail as possible to help us reproduce the problem. This includes:
|
|
8
|
+
|
|
9
|
+
- A clear and descriptive title
|
|
10
|
+
- Steps to reproduce the issue
|
|
11
|
+
- Expected and actual behavior
|
|
12
|
+
- Any relevant logs, screenshots, or error messages
|
|
13
|
+
- Information about your environment (e.g., operating system, software versions)
|
|
14
|
+
- For example can be collected using the `npx envinfo` command from your terminal if you have Node.js installed
|
|
15
|
+
|
|
16
|
+
## Issue Triage and Upstream Fixes
|
|
17
|
+
|
|
18
|
+
We will review and triage issues as quickly as possible. Our goal is to address bugs and incorporate improvements in the upstream source code. Fixes will be included in the next generation of the generated code.
|
|
19
|
+
|
|
20
|
+
## Contact
|
|
21
|
+
|
|
22
|
+
If you have any questions or need further assistance, please feel free to reach out by opening an issue.
|
|
23
|
+
|
|
24
|
+
Thank you for your understanding and cooperation!
|
|
25
|
+
|
|
26
|
+
The Maintainers
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
include README.md
|
|
2
|
+
include CHANGELOG.md
|
|
3
|
+
include CONTRIBUTING.md
|
|
4
|
+
include LICENSE
|
|
5
|
+
include USAGE.md
|
|
6
|
+
include py.typed
|
|
7
|
+
include requirements.txt
|
|
8
|
+
|
|
9
|
+
recursive-include fastpix_python *.py *.typed *.yaml
|
|
10
|
+
|
|
11
|
+
# Exclusions: keep developer-only and validation artifacts out of the sdist
|
|
12
|
+
exclude pyproject.toml.bak
|
|
13
|
+
exclude package.json
|
|
14
|
+
exclude package-lock.json
|
|
15
|
+
exclude pylintrc
|
|
16
|
+
exclude *.csv
|
|
17
|
+
exclude *.xlsx
|
|
18
|
+
exclude *.docx
|
|
19
|
+
exclude generate_feature_matrix.py
|
|
20
|
+
exclude fixed.yaml
|
|
21
|
+
exclude old-yaml.yaml
|
|
22
|
+
|
|
23
|
+
prune tests
|
|
24
|
+
prune test-project
|
|
25
|
+
prune samples
|
|
26
|
+
prune docs
|
|
27
|
+
prune scripts
|
|
28
|
+
prune src
|
|
29
|
+
prune .github
|
|
30
|
+
prune .git
|
|
31
|
+
prune __pycache__
|
|
32
|
+
prune .venv
|
|
33
|
+
prune dist
|
|
34
|
+
prune build
|
|
35
|
+
prune temp
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: fastpix_python
|
|
3
|
-
Version: 1.1.
|
|
3
|
+
Version: 1.1.4
|
|
4
4
|
Summary: Python Client SDK Generated by fastpix.
|
|
5
5
|
Home-page: https://github.com/FastPix/fastpix-python
|
|
6
6
|
Author: FastPix
|
|
7
|
-
Author-email: FastPix <devs@fastpix.
|
|
7
|
+
Author-email: FastPix <devs@fastpix.com>
|
|
8
8
|
License: Apache-2.0
|
|
9
9
|
Requires-Python: >=3.9.2
|
|
10
10
|
Description-Content-Type: text/markdown
|
|
@@ -43,7 +43,7 @@ The FastPix Python SDK simplifies integration with the FastPix platform. It prov
|
|
|
43
43
|
To get started with the FastPix Python SDK, ensure you have the following:
|
|
44
44
|
|
|
45
45
|
- The FastPix APIs are authenticated using a **Username** and a **Password**. You must generate these credentials to use the SDK.
|
|
46
|
-
- Follow the steps in the [Authentication with Basic Auth](https://
|
|
46
|
+
- Follow the steps in the [Authentication with Basic Auth](https://fastpix.com/docs/getting-started/activate-your-account#authentication-format) guide to obtain your credentials.
|
|
47
47
|
|
|
48
48
|
### Environment Variables (Optional)
|
|
49
49
|
|
|
@@ -189,7 +189,7 @@ with Fastpix(
|
|
|
189
189
|
inputs=[
|
|
190
190
|
{
|
|
191
191
|
"type": "video",
|
|
192
|
-
"url": "https://static.fastpix.
|
|
192
|
+
"url": "https://static.fastpix.com/fp-sample-video.mp4",
|
|
193
193
|
},
|
|
194
194
|
],
|
|
195
195
|
access_policy="public",
|
|
@@ -209,7 +209,7 @@ Comprehensive Python SDK for FastPix platform integration with full API coverage
|
|
|
209
209
|
|
|
210
210
|
Upload, manage, and transform video content with comprehensive media management capabilities.
|
|
211
211
|
|
|
212
|
-
For detailed documentation, see [FastPix Video on Demand Overview](https://
|
|
212
|
+
For detailed documentation, see [FastPix Video on Demand Overview](https://fastpix.com/docs/video-on-demand-api/overview).
|
|
213
213
|
|
|
214
214
|
#### Input Video
|
|
215
215
|
- [Create from URL](https://github.com/FastPix/fastpix-python/blob/feature/fixed-missing-parameters/docs/sdks/inputvideo/README.md#create_from_url) - Upload video content from external URL
|
|
@@ -257,7 +257,7 @@ For detailed documentation, see [FastPix Video on Demand Overview](https://docs.
|
|
|
257
257
|
|
|
258
258
|
Stream, manage, and transform live video content with real-time broadcasting capabilities.
|
|
259
259
|
|
|
260
|
-
For detailed documentation, see [FastPix Live Stream Overview](https://
|
|
260
|
+
For detailed documentation, see [FastPix Live Stream Overview](https://fastpix.com/docs/live-stream-api/overview).
|
|
261
261
|
|
|
262
262
|
#### Start Live Stream
|
|
263
263
|
- [Create Stream](https://github.com/FastPix/fastpix-python/blob/feature/fixed-missing-parameters/docs/sdks/startlivestream/README.md#create_stream) - Initialize new live streaming session with DVR mode support
|
|
@@ -288,7 +288,7 @@ For detailed documentation, see [FastPix Live Stream Overview](https://docs.fast
|
|
|
288
288
|
|
|
289
289
|
Monitor video performance and quality with comprehensive analytics and real-time metrics.
|
|
290
290
|
|
|
291
|
-
For detailed documentation, see [FastPix Video Data Overview](https://
|
|
291
|
+
For detailed documentation, see [FastPix Video Data Overview](https://fastpix.com/docs/video-data-api/overview).
|
|
292
292
|
|
|
293
293
|
#### Metrics
|
|
294
294
|
- [List Breakdown Values](https://github.com/FastPix/fastpix-python/blob/feature/fixed-missing-parameters/docs/sdks/metrics/README.md#list_breakdown_values) - Get detailed breakdown of metrics by dimension
|
|
@@ -370,7 +370,7 @@ with Fastpix(
|
|
|
370
370
|
inputs=[
|
|
371
371
|
{
|
|
372
372
|
"type": "video",
|
|
373
|
-
"url": "https://static.fastpix.
|
|
373
|
+
"url": "https://static.fastpix.com/fp-sample-video.mp4",
|
|
374
374
|
},
|
|
375
375
|
],
|
|
376
376
|
access_policy="public",
|
|
@@ -412,7 +412,7 @@ with Fastpix(
|
|
|
412
412
|
inputs=[
|
|
413
413
|
{
|
|
414
414
|
"type": "video",
|
|
415
|
-
"url": "https://static.fastpix.
|
|
415
|
+
"url": "https://static.fastpix.com/fp-sample-video.mp4",
|
|
416
416
|
},
|
|
417
417
|
],
|
|
418
418
|
access_policy="public",
|
|
@@ -457,7 +457,7 @@ with Fastpix(
|
|
|
457
457
|
inputs=[
|
|
458
458
|
{
|
|
459
459
|
"type": "video",
|
|
460
|
-
"url": "https://static.fastpix.
|
|
460
|
+
"url": "https://static.fastpix.com/fp-sample-video.mp4",
|
|
461
461
|
},
|
|
462
462
|
],
|
|
463
463
|
access_policy="public",
|
|
@@ -509,7 +509,7 @@ import json
|
|
|
509
509
|
from fastpix_python import Fastpix, models
|
|
510
510
|
|
|
511
511
|
with Fastpix(
|
|
512
|
-
server_url="https://api.fastpix.
|
|
512
|
+
server_url="https://api.fastpix.com/v1/",
|
|
513
513
|
security=models.Security(
|
|
514
514
|
username="your-access-token",
|
|
515
515
|
password="your-secret-key",
|
|
@@ -520,7 +520,7 @@ with Fastpix(
|
|
|
520
520
|
inputs=[
|
|
521
521
|
{
|
|
522
522
|
"type": "video",
|
|
523
|
-
"url": "https://static.fastpix.
|
|
523
|
+
"url": "https://static.fastpix.com/fp-sample-video.mp4",
|
|
524
524
|
},
|
|
525
525
|
],
|
|
526
526
|
access_policy="public",
|
|
@@ -666,6 +666,6 @@ We value community contributions and feedback. Feel free to submit pull requests
|
|
|
666
666
|
|
|
667
667
|
## Detailed Usage
|
|
668
668
|
|
|
669
|
-
For comprehensive understanding of each API's functionality, including detailed request and response specifications, parameter descriptions, and additional examples, please refer to the [FastPix API Reference](https://
|
|
669
|
+
For comprehensive understanding of each API's functionality, including detailed request and response specifications, parameter descriptions, and additional examples, please refer to the [FastPix API Reference](https://fastpix.com/docs/product-os-api/overview).
|
|
670
670
|
|
|
671
671
|
The API reference offers complete documentation for all available endpoints and features, enabling developers to integrate and leverage FastPix APIs effectively.
|
|
@@ -24,7 +24,7 @@ The FastPix Python SDK simplifies integration with the FastPix platform. It prov
|
|
|
24
24
|
To get started with the FastPix Python SDK, ensure you have the following:
|
|
25
25
|
|
|
26
26
|
- The FastPix APIs are authenticated using a **Username** and a **Password**. You must generate these credentials to use the SDK.
|
|
27
|
-
- Follow the steps in the [Authentication with Basic Auth](https://
|
|
27
|
+
- Follow the steps in the [Authentication with Basic Auth](https://fastpix.com/docs/getting-started/activate-your-account#authentication-format) guide to obtain your credentials.
|
|
28
28
|
|
|
29
29
|
### Environment Variables (Optional)
|
|
30
30
|
|
|
@@ -170,7 +170,7 @@ with Fastpix(
|
|
|
170
170
|
inputs=[
|
|
171
171
|
{
|
|
172
172
|
"type": "video",
|
|
173
|
-
"url": "https://static.fastpix.
|
|
173
|
+
"url": "https://static.fastpix.com/fp-sample-video.mp4",
|
|
174
174
|
},
|
|
175
175
|
],
|
|
176
176
|
access_policy="public",
|
|
@@ -190,7 +190,7 @@ Comprehensive Python SDK for FastPix platform integration with full API coverage
|
|
|
190
190
|
|
|
191
191
|
Upload, manage, and transform video content with comprehensive media management capabilities.
|
|
192
192
|
|
|
193
|
-
For detailed documentation, see [FastPix Video on Demand Overview](https://
|
|
193
|
+
For detailed documentation, see [FastPix Video on Demand Overview](https://fastpix.com/docs/video-on-demand-api/overview).
|
|
194
194
|
|
|
195
195
|
#### Input Video
|
|
196
196
|
- [Create from URL](https://github.com/FastPix/fastpix-python/blob/feature/fixed-missing-parameters/docs/sdks/inputvideo/README.md#create_from_url) - Upload video content from external URL
|
|
@@ -238,7 +238,7 @@ For detailed documentation, see [FastPix Video on Demand Overview](https://docs.
|
|
|
238
238
|
|
|
239
239
|
Stream, manage, and transform live video content with real-time broadcasting capabilities.
|
|
240
240
|
|
|
241
|
-
For detailed documentation, see [FastPix Live Stream Overview](https://
|
|
241
|
+
For detailed documentation, see [FastPix Live Stream Overview](https://fastpix.com/docs/live-stream-api/overview).
|
|
242
242
|
|
|
243
243
|
#### Start Live Stream
|
|
244
244
|
- [Create Stream](https://github.com/FastPix/fastpix-python/blob/feature/fixed-missing-parameters/docs/sdks/startlivestream/README.md#create_stream) - Initialize new live streaming session with DVR mode support
|
|
@@ -269,7 +269,7 @@ For detailed documentation, see [FastPix Live Stream Overview](https://docs.fast
|
|
|
269
269
|
|
|
270
270
|
Monitor video performance and quality with comprehensive analytics and real-time metrics.
|
|
271
271
|
|
|
272
|
-
For detailed documentation, see [FastPix Video Data Overview](https://
|
|
272
|
+
For detailed documentation, see [FastPix Video Data Overview](https://fastpix.com/docs/video-data-api/overview).
|
|
273
273
|
|
|
274
274
|
#### Metrics
|
|
275
275
|
- [List Breakdown Values](https://github.com/FastPix/fastpix-python/blob/feature/fixed-missing-parameters/docs/sdks/metrics/README.md#list_breakdown_values) - Get detailed breakdown of metrics by dimension
|
|
@@ -351,7 +351,7 @@ with Fastpix(
|
|
|
351
351
|
inputs=[
|
|
352
352
|
{
|
|
353
353
|
"type": "video",
|
|
354
|
-
"url": "https://static.fastpix.
|
|
354
|
+
"url": "https://static.fastpix.com/fp-sample-video.mp4",
|
|
355
355
|
},
|
|
356
356
|
],
|
|
357
357
|
access_policy="public",
|
|
@@ -393,7 +393,7 @@ with Fastpix(
|
|
|
393
393
|
inputs=[
|
|
394
394
|
{
|
|
395
395
|
"type": "video",
|
|
396
|
-
"url": "https://static.fastpix.
|
|
396
|
+
"url": "https://static.fastpix.com/fp-sample-video.mp4",
|
|
397
397
|
},
|
|
398
398
|
],
|
|
399
399
|
access_policy="public",
|
|
@@ -438,7 +438,7 @@ with Fastpix(
|
|
|
438
438
|
inputs=[
|
|
439
439
|
{
|
|
440
440
|
"type": "video",
|
|
441
|
-
"url": "https://static.fastpix.
|
|
441
|
+
"url": "https://static.fastpix.com/fp-sample-video.mp4",
|
|
442
442
|
},
|
|
443
443
|
],
|
|
444
444
|
access_policy="public",
|
|
@@ -490,7 +490,7 @@ import json
|
|
|
490
490
|
from fastpix_python import Fastpix, models
|
|
491
491
|
|
|
492
492
|
with Fastpix(
|
|
493
|
-
server_url="https://api.fastpix.
|
|
493
|
+
server_url="https://api.fastpix.com/v1/",
|
|
494
494
|
security=models.Security(
|
|
495
495
|
username="your-access-token",
|
|
496
496
|
password="your-secret-key",
|
|
@@ -501,7 +501,7 @@ with Fastpix(
|
|
|
501
501
|
inputs=[
|
|
502
502
|
{
|
|
503
503
|
"type": "video",
|
|
504
|
-
"url": "https://static.fastpix.
|
|
504
|
+
"url": "https://static.fastpix.com/fp-sample-video.mp4",
|
|
505
505
|
},
|
|
506
506
|
],
|
|
507
507
|
access_policy="public",
|
|
@@ -647,6 +647,6 @@ We value community contributions and feedback. Feel free to submit pull requests
|
|
|
647
647
|
|
|
648
648
|
## Detailed Usage
|
|
649
649
|
|
|
650
|
-
For comprehensive understanding of each API's functionality, including detailed request and response specifications, parameter descriptions, and additional examples, please refer to the [FastPix API Reference](https://
|
|
650
|
+
For comprehensive understanding of each API's functionality, including detailed request and response specifications, parameter descriptions, and additional examples, please refer to the [FastPix API Reference](https://fastpix.com/docs/product-os-api/overview).
|
|
651
651
|
|
|
652
652
|
The API reference offers complete documentation for all available endpoints and features, enabling developers to integrate and leverage FastPix APIs effectively.
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
<!-- Start SDK Example Usage [usage] -->
|
|
2
|
+
```python
|
|
3
|
+
# Synchronous Example
|
|
4
|
+
from fastpix_python import Fastpix, models
|
|
5
|
+
|
|
6
|
+
with Fastpix(
|
|
7
|
+
security=models.Security(
|
|
8
|
+
username="your-access-token",
|
|
9
|
+
password="your-secret-key",
|
|
10
|
+
),
|
|
11
|
+
) as fastpix:
|
|
12
|
+
|
|
13
|
+
res = fastpix.input_video.create_media(inputs=[
|
|
14
|
+
{
|
|
15
|
+
"type": "video",
|
|
16
|
+
"url": "https://static.fastpix.com/fp-sample-video.mp4",
|
|
17
|
+
},
|
|
18
|
+
], metadata={
|
|
19
|
+
"key1": "value1",
|
|
20
|
+
}, drm_configuration_id="your-drm-configuration-id", title="My Video Title", creator_id="your-creator-id", subtitles={
|
|
21
|
+
"language_name": "english",
|
|
22
|
+
"metadata": {
|
|
23
|
+
"key1": "value1",
|
|
24
|
+
},
|
|
25
|
+
"language_code": "en",
|
|
26
|
+
}, access_policy="public", mp4_support="capped_4k", source_access=True, optimize_audio=True, max_resolution="1080p", media_quality="standard", chapters=True, named_entities=True)
|
|
27
|
+
|
|
28
|
+
# Handle response
|
|
29
|
+
print(res)
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
</br>
|
|
33
|
+
|
|
34
|
+
The same SDK client can also be used to make asynchronous requests by importing asyncio.
|
|
35
|
+
|
|
36
|
+
```python
|
|
37
|
+
# Asynchronous Example
|
|
38
|
+
import asyncio
|
|
39
|
+
from fastpix_python import Fastpix, models
|
|
40
|
+
|
|
41
|
+
async def main():
|
|
42
|
+
|
|
43
|
+
async with Fastpix(
|
|
44
|
+
security=models.Security(
|
|
45
|
+
username="your-access-token",
|
|
46
|
+
password="your-secret-key",
|
|
47
|
+
),
|
|
48
|
+
) as fastpix:
|
|
49
|
+
|
|
50
|
+
res = await fastpix.input_video.create_media_async(inputs=[
|
|
51
|
+
{
|
|
52
|
+
"type": "video",
|
|
53
|
+
"url": "https://static.fastpix.com/fp-sample-video.mp4",
|
|
54
|
+
},
|
|
55
|
+
], metadata={
|
|
56
|
+
"key1": "value1",
|
|
57
|
+
}, drm_configuration_id="your-drm-configuration-id", title="My Video Title", creator_id="your-creator-id", subtitles={
|
|
58
|
+
"language_name": "english",
|
|
59
|
+
"metadata": {
|
|
60
|
+
"key1": "value1",
|
|
61
|
+
},
|
|
62
|
+
"language_code": "en",
|
|
63
|
+
}, access_policy="public", mp4_support="capped_4k", source_access=True, optimize_audio=True, max_resolution="1080p", media_quality="standard", chapters=True, named_entities=True)
|
|
64
|
+
|
|
65
|
+
# Handle response
|
|
66
|
+
print(res)
|
|
67
|
+
|
|
68
|
+
asyncio.run(main())
|
|
69
|
+
```
|
|
70
|
+
<!-- End SDK Example Usage [usage] -->
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
"""Code generated by fastpix (https://fastpix.
|
|
1
|
+
"""Code generated by fastpix (https://fastpix.com). DO NOT EDIT."""
|
|
2
2
|
|
|
3
3
|
import importlib.metadata
|
|
4
4
|
|
|
5
5
|
__title__: str = "fastpix_python"
|
|
6
|
-
__version__: str = "1.
|
|
6
|
+
__version__: str = "1.1.4"
|
|
7
7
|
__openapi_doc_version__: str = "1.0.0"
|
|
8
8
|
__gen_version__: str = "2.723.4"
|
|
9
|
-
__user_agent__: str = "fastpix-sdk/python 1.
|
|
9
|
+
__user_agent__: str = "fastpix-sdk/python 1.1.4 2.723.4 1.1.4 fastpix_python"
|
|
10
10
|
|
|
11
11
|
try:
|
|
12
12
|
if __package__ is not None:
|