Registry / devops / reflex-base

reflex-base

JSON →
library0.9.4pypypiunverified

Core types for the Reflex framework (version 0.9.4). Reflex is a library for building full-stack web apps in pure Python. reflex-base provides base classes and type definitions used by Reflex components. Released under the Apache-2.0 license, with active development.

pip install reflex-base
INSTALL
IMPORT
SIG · REFLEX-BASE
R
reflex-base
devopspythonv0.9.4
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.

Base
from reflex_base import Base
from reflex.base import Base

Create a simple state class using Base from reflex-base.

from reflex.base import Base class CustomState(Base): name: str = 'reflex' def greet(self) -> str: return f'Hello, {self.name}!' state = CustomState() print(state.greet()) # Hello, reflex!
Debug
Known issues
breakingReflex 0.5+ changed the import path for base classes from `reflex.state.Base` to `reflex.base.Base`.
fix
Update imports: from reflex.base import Base instead of from reflex.state import Base.
affects: >=0.5,<0.9
gotchaThe `reflex-base` package on PyPI only contains the base types, not the full Reflex framework. If you need components like `rx.html`, install `reflex` instead.
fix
Install reflex: pip install reflex
affects: all
Upgrade
Version history
0.9.4latest on PyPI · released Jun 4, 2026
Audit
Dependencies

No dependency data recorded yet.

Agent activity
4 hits · last 30 days
node
4
Resources

No resource links recorded.

reflex-base — pip install reflex-base · libregistry