hypercorn
build-a-saas-app-with-flask
Our great sponsors
hypercorn | build-a-saas-app-with-flask | |
---|---|---|
3 | 37 | |
689 | 886 | |
- | - | |
0.0 | 0.0 | |
13 days ago | about 1 month ago | |
Python | HTML | |
MIT License | MIT License |
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
hypercorn
-
Granian – a Rust HTTP server for Python applications
for those wishing to use http3 with a Python web framework, the ASGI hypercorn[1] currently supports it.
made a Django example last week with a sample client based on the examples from aioquic[2]: https://github.com/djstein/django-http3-example
this example also includes the first pass at async Django REST Framework using adrift[3] based on these GitHub issues:
- https://github.com/encode/django-rest-framework/pull/8617
- https://github.com/encode/django-rest-framework/issues/8496
sources
[1]: https://github.com/pgjones/hypercorn
build-a-saas-app-with-flask
-
Show HN: The pure Python SaaS starter kit
Build a SAAS App with Flask. Course / Boilerplate. https://buildasaasappwithflask.com/
-
starter project?
Personally I maintain https://github.com/nickjj/docker-flask-example. There's also https://github.com/nickjj/build-a-saas-app-with-flask if you want more opinions.
-
Django 4.1 Released
Thanks a lot!
By the way the version of the course on Udemy doesn't get updated. The full version of the course is at https://buildasaasappwithflask.com/ which includes lifetime free updates (it has over 10+ hours of extra updates and new features not on the Udemy version). Udemy is a really bad platform for instructors which is why I've been trying hard to decouple myself from them over time.
As for a tutorial on using this repo specifically, did you find the readme file lacking in any way? I tried to write the readme to be fully self contained. It would expect prior Docker knowledge tho. I did give a talk at DockerCon going over a bunch of Docker best practices at https://nickjanetakis.com/blog/best-practices-around-product.... It was using a Flask example repo not Django but everything still applies. The same patterns are used.
-
Bittersweet Symfony: Devs accidentally turn off CSRF protection in PHP framework
Indeed, you can also create a Jinja macro to auto-insert the token into all of your forms too, here's a code example[0]. It's a 100% solved problem both on the Flask back-end and template side with an ability to opt out of it when you need to on the back-end such as accepting webhooks from another service.
[0]: https://github.com/nickjj/build-a-saas-app-with-flask/blob/1...
-
Gunicorn
Gunicorn is one of my favorite app servers. I've been using Gunicorn in production on a bunch of projects (any Flask / Django project) for around 8 years now. It's rock solid and extremely predictable.
I also use Gunicorn in development too, it supports code reloading and also lets you enable Flask's debug middleware so you can use the interactive debugger. This is all configured in my Build a SAAS App with Flask course, a code example is here: https://github.com/nickjj/build-a-saas-app-with-flask.
-
Miguel Grinberg Book/Tutorial
That makes sense. Also do you have any experience with https://buildasaasappwithflask.com/ ?
-
Corey Schafer vs Miguel Grinberg to learn Flask? Any other course recommendations?
Can’t speak to Corey Schafer’s, but I found this course here to be much better than Miguel’s https://buildasaasappwithflask.com/
- The rise of the one-person unicorn
-
Any suggestions on a up to date tutorial series?
There's https://buildasaasappwithflask.com/.
What are some alternatives?
uvicorn - An ASGI web server, for Python. 🦄
gunicorn - gunicorn 'Green Unicorn' is a WSGI HTTP Server for UNIX, fast clients and sleepy applications.
cookiecutter-flask - A flask template with Bootstrap, asset bundling+minification with webpack, starter templates, and registration/authentication. For use with cookiecutter.
daphne - Django Channels HTTP/WebSocket server
flask-boilerplate - Boilerplate template for a Python Flask application with Flask-SQLAlchemy, Flask-WTF, Fabric, Coverage, and Bootstrap
aioquic - QUIC and HTTP/3 implementation in Python
docker-flask-example - A production ready example Flask app that's using Docker and Docker Compose.
flask-boilerplate - Flask boilerplate using the application factory with basic authentication.
python-uvicorn - Multiarchitecture Docker Containers for Python and Uvicorn
python-gunicorn-uvicorn - Multiarchitecture Docker Containers for Python using Gunicorn and Uvicorn
microblog - A microblogging web application written in Python and Flask that I developed as part of my Flask Mega-Tutorial series.
clean-code-python - :bathtub: Clean Code concepts adapted for Python