Registry / devops / reflex-enterprise

reflex-enterprise

JSON →
library0.8.3pypypi✓ verified 82d ago

Paid add-on package for Reflex (formerly Pynecone) providing pro/team/enterprise features such as authentication, hosting, and deployment. Current version 0.8.3, updated regularly alongside Reflex core.

pip install reflex-enterprise
INSTALL
IMPORT
SIG · REFLEX-ENTERPRISE
R
reflex-enterprise
devopspythonv0.8.3
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.

App
from reflex_enterprise import App
from reflex_enterprise.auth import Auth0Provider

Initialize an app with enterprise auth and deploy capabilities. Requires a Reflex Pro/Team license.

from reflex import Reflex from reflex_enterprise.auth import Auth0Provider from reflex_enterprise.deploy import Deploy app = Reflex() app.register_provider(Auth0Provider( domain=os.environ.get('AUTH0_DOMAIN', ''), client_id=os.environ.get('AUTH0_CLIENT_ID', ''), client_secret=os.environ.get('AUTH0_CLIENT_SECRET', '') )) app.deploy(provider=Deploy( api_key=os.environ.get('REFLEX_DEPLOY_KEY', '') ))
Debug
Known issues
breakingReflex Enterprise 0.8.x requires Reflex core 0.8.x. Installing mismatched versions will cause import errors.
fix
Keep reflex and reflex-enterprise versions in sync.
affects: >=0.8.0
deprecatedThe 'reflex_enterprise.auth' module was renamed from 'reflex_enterprise.authentication' in v0.7.0. Old imports will fail.
fix
Use 'from reflex_enterprise.auth import ...' instead.
affects: <0.7.0
gotchaEnterprise features require a valid license key set via the REFLEX_LICENSE_KEY environment variable. Without it, imports may silently fail.
fix
Set REFLEX_LICENSE_KEY before starting the app.
affects: all
gotchaDeployment to Reflex Cloud requires the 'reflex-enterprise' package and a Pro/Team subscription. Free tier deployments won't work.
fix
Upgrade to Pro/Team plan via the Reflex dashboard.
affects: all
Upgrade
Version history
0.8.3latest on PyPI · released Jun 1, 2026
Audit
Dependencies
reflexrequiredCore Reflex framework required; reflex-enterprise extends it
Agent activity
4 hits · last 30 days
node
4
Resources

No resource links recorded.

reflex-enterprise — pip install reflex-enterprise · libregistry