FastPix Python SDK moves to fastpix.com, with import-path and view-event fixes
FastPix Python SDK moves to fastpix.com, with import-path and view-event fixes
The FastPix Python SDK (fastpix_python) now defaults to the fastpix.com hosts, fixes broken import paths that caused ModuleNotFoundError, and corrects view-details deserialization. For most integrations, upgrading the dependency is enough.
What’s new:
-
Default hosts moved to fastpix.com: the default
server_urlis nowhttps://api.fastpix.com/v1/. If you rely on the defaults, just runpip install --upgrade fastpix_python. If you pass an explicit.ioserver_urloverride, change it to.com, and update any hard-coded.ioplayback, image, or dashboard URLs before the.iohosts are decommissioned. -
Fixed
ModuleNotFoundErroron import: the SDK import paths in_sub_sdk_mapwere corrected (fromFastpix.*tofastpix_python.*), resolving import failures for end users. Documentation examples now work out of the box, withoutsys.path.append()workarounds. -
Fixed view-details responses:
get_video_view_detailsevents were returning empty objects, and some fields (fpSDK/fpSDKVersion,custom,experimentName) were missing or dropped. Correct field mappings were added so responses conform to the OpenAPI field names. -
Maintenance (v1.1.4): aligned the internal version identifiers with the package version and completed a behavior-preserving SonarQube cleanup, with no public-surface changes.