flowright
Get Started
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
Release files for flowright 0.1.4
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| flowright-0.1.4.tar.gz | 13.8 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| flowright-0.1.4-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 29.7 kB
Release files / flowright-0.1.4.tar.gz
| Download URL | flowright-0.1.4.tar.gz |
|---|---|
| Size | 13.8 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
ddb20b960f5aa57c5efa3c6f5eb2f31a7e7a7eb3ee44f3da0e86543fdbd41581
|
|
BLAKE2b-256 checksum How to use checksums |
a126a7ae5e60ce192eafb8501fb732498b13267841dcf465ada7697a878cdc12
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
poetry/1.5.1 CPython/3.11.5 Darwin/23.0.0
|
Release files / flowright-0.1.4-py3-none-any.whl
| Download URL | flowright-0.1.4-py3-none-any.whl |
|---|---|
| Size | 15.9 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
b1eeeb3168bfd470c632e7d308e1246d43e90ac19c4e547b4f53ae5577b7a574
|
|
BLAKE2b-256 checksum How to use checksums |
a564e66df8da4f9940e78b227af8d0a8654e2b3841465dc8ee182b4afbb65c76
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
poetry/1.5.1 CPython/3.11.5 Darwin/23.0.0
|