Metadata-Version: 2.1
Name: flowright
Version: 0.1.1
Summary: 
Author: ReeceJones
Author-email: reece_jones@icloud.com
Requires-Python: >=3.9,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Dist: aiofiles (>=23.1.0,<24.0.0)
Requires-Dist: fire (>=0.5.0,<0.6.0)
Requires-Dist: markdown (>=3.4.3,<4.0.0)
Requires-Dist: pydantic (>=1.10.7,<2.0.0)
Requires-Dist: pygments (>=2.15.1,<3.0.0)
Requires-Dist: requests (>=2.31.0,<3.0.0)
Requires-Dist: starlette (>=0.26.1,<0.27.0)
Requires-Dist: uvicorn (>=0.21.1,<0.22.0)
Requires-Dist: uvloop (>=0.17.0,<0.18.0)
Requires-Dist: watchfiles (>=0.19.0,<0.20.0)
Requires-Dist: websockets (>=11.0.1,<12.0.0)
Description-Content-Type: text/markdown

# flowright
## Get Started
```python
import flowright as flow

# initialize databases, read files, etc.

while flow.running():
    flow.text("Hello world!")

    with flow.column():
        flow.text("Column 1")
    with flow.column():
        flow.text("Column 2")
        selection = flow.selectbox(["a", "b", "c"])
        flow.text(selection)
    with flow.column():
        flow.text("Column 3")
        resp = flow.button("Click me!")
        if resp:
            flow.text("button pressed!")
    
    flow.divider()

    flow.text("Look at this cool image!")

    flow.image("https://picsum.photos/500/300")

    flow.graph(plt.plot(list(range(10)), list(range(10))))  # soon maybe

    flow.divider()

    flow.text("And now look at this cool table!")
    for row in flow.table(range(5)):
        for col in flow.columns(range(5)):
            if (row + col) % 2 == 0:
                flow.text("Fizz")
            else:
                flow.button("Buzz")

# clean up


```
