FastPix Python SDK moves to fastpix.com, with import-path and view-event fixes

Back to Changelog
JUN 30, 2026
ImprovementFixSDKs

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_url is now https://api.fastpix.com/v1/. If you rely on the defaults, just run pip install --upgrade fastpix_python. If you pass an explicit .io server_url override, change it to .com, and update any hard-coded .io playback, image, or dashboard URLs before the .io hosts are decommissioned.

  • Fixed ModuleNotFoundError on import: the SDK import paths in _sub_sdk_map were corrected (from Fastpix.* to fastpix_python.*), resolving import failures for end users. Documentation examples now work out of the box, without sys.path.append() workarounds.

  • Fixed view-details responses: get_video_view_details events 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.