Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mikeabrahamsen/Flask-Meld
Flask-Meld is a library to provide server rendered templates over websockets for Flask applications to build reactive components without Javascript
https://github.com/mikeabrahamsen/Flask-Meld
flask python
Last synced: 2 days ago
JSON representation
Flask-Meld is a library to provide server rendered templates over websockets for Flask applications to build reactive components without Javascript
- Host: GitHub
- URL: https://github.com/mikeabrahamsen/Flask-Meld
- Owner: mikeabrahamsen
- License: mit
- Created: 2020-09-17T00:49:54.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2022-01-22T20:57:59.000Z (almost 3 years ago)
- Last Synced: 2024-10-30T02:36:58.944Z (6 days ago)
- Topics: flask, python
- Language: Python
- Homepage: https://www.flask-meld.dev/
- Size: 376 KB
- Stars: 313
- Watchers: 8
- Forks: 15
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
- awesome-python-web-frameworks - Flask-Meld - a library to provide server rendered templates over websockets for Flask applications to build reactive components without Javascript. (Front-end frameworks / More)
- jimsghstars - mikeabrahamsen/Flask-Meld - Flask-Meld is a library to provide server rendered templates over websockets for Flask applications to build reactive components without Javascript (Python)
README
# Flask-Meld
Official Website - [Flask-Meld.dev](https://www.flask-meld.dev)
Project inspiration (outdated examples) - [Ditch Javascript Frameworks For Pure Python Joy](https://michaelabrahamsen.com/posts/flask-meld-ditch-javascript-frameworks-for-pure-python-joy/)
Join the community on Discord - https://discord.gg/DMgSwwdahN
Meld is a framework for Flask to meld your frontend and backend code. What does
that mean? It means you can enjoy writing dynamic user interfaces in pure Python.Less context switching.
No need to write javascript.
More fun!# Flask-Meld Developer information
## Tests
### Installing test requirements
```sh
pip install -r tests/requirements.txt
playwright install
```### Run with browser tests
```sh
# run tests
pytest# to watch the browser tests
pytest --headed
```### Run without browser tests
```sh
pytest --ignore=tests/browser
```