Registry / data / polars-cloud

polars-cloud

JSON →
library0.6.1pypypi✓ verified 84d ago

Run Polars remotely, either in the Cloud or On-Prem. Version 0.6.1 requires Python >=3.10. Still in early development; release cadence is irregular.

pip install polars-cloud
INSTALL
IMPORT
SIG · POLARS-CLOUD
P
polars-cloud
datapythonv0.6.1
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

ClientContext
✓ from polars_cloud import ClientContext
✗ from polars_cloud import PolarsCloudSession
ComputeContext
✓ from polars_cloud import ComputeContext
LazyFrameRemote
✓ from polars_cloud import LazyFrameRemote

Create a session and list datasets.

from polars_cloud import PolarsCloudSession session = PolarsCloudSession( token=os.environ.get('POLARS_CLOUD_TOKEN', ''), url=os.environ.get('POLARS_CLOUD_URL', 'https://cloud.polars.tech') ) # List available datasets datasets = session.datasets.list() print(datasets)
Debug
Known issues
gotchaThe token passed to PolarsCloudSession must be a personal access token, not an API key. Using an API key will fail silently.
fix
Generate a personal access token from the Polars Cloud UI and use that.
affects: <=0.6.1
breakingThe package was previously named 'cloud-polar' in pre-release; imports and PyPI naming have changed.
fix
Upgrade by pip install polars-cloud and change imports to polars_cloud.
affects: <0.1.0
deprecatedUsing session.datasets() as a callable (without .list) is deprecated. Use session.datasets.list() instead.
fix
Replace session.datasets() with session.datasets.list().
affects: >=0.3.0,<0.6.0
Upgrade
Version history
0.6.1latest on PyPI · released Apr 28, 2026
Audit
Dependencies

No dependency data recorded yet.

Agent activity
2 hits · last 30 days
node
2
Resources
polars-cloud — pip install polars-cloud · libregistry