Metadata-Version: 2.4
Name: refvar
Version: 0.1.0
Summary: A minimal reactive variable wrapper for Python.
Author-email: Emerson Erlando <emerson.mtr3@gmail.com>
License: 
        ---
        
        # 📌 **LICENSE (MIT)**
        
        ```text
        MIT License
        
        Copyright (c) 2025 Emerson Erlando
        
        Permission is hereby granted, free of charge, to any person obtaining a copy...
        
Project-URL: Homepage, https://github.com/Emersonmtr3-prog/ref
Project-URL: Repository, https://github.com/Emersonmtr3-prog/ref
Keywords: refvar,ref,reactive,state,variable,python
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# ref

A minimal and elegant reactive variable for Python.

```python
from ref import Ref

count = Ref(0)

print(count)   # 0

count(10)

print(count)   # 10

if count == 10:
    print("Works!")
