Hey everyone, I built reaktiv, a small reactive signals library for Python, inspired by Angular’s reactivity model. It lets you define Signals, Computed Values, and Effects that automatically track dependencies and update efficiently. The main focus is async-first reactivity without external dependencies.
Here is an example code:
``` import asyncio from reaktiv import Signal, ComputeSignal, Effect
async def main(): count = Signal(0) doubled = ComputeSignal(lambda: count.get() * 2)
async def log_count():
print(f"Count: {count.get()}, Doubled: {doubled.get()}")
Effect(log_count).schedule()
count.set(5) # Triggers: "Count: 5, Doubled: 10"
await asyncio.sleep(0) # Allow effects to process
asyncio.run(main())
```
Comments URL: https://news.ycombinator.com/item?id=42880873
Points: 6
# Comments: 1
Autentifică-te pentru a adăuga comentarii
Alte posturi din acest grup
Article URL: https://www.selfref.com/self-signed-jwts
Comments URL: https://ne
Article URL: https://www.google.com/search?q=bad+UX
Comments URL: https://news.y

Article URL: https://www.cyberdaily.au/digita

Article URL: https://blog.langchain.com/deep-agents/
Comments URL: https://news

Article URL: https://www.dbreunig.com/2025/08/01/does-the-bitter-lesson-have-limits.html
Comments U