uvicorn
Flask
uvicorn | Flask | |
---|---|---|
60 | 139 | |
8,604 | 68,179 | |
1.2% | 0.3% | |
8.6 | 8.8 | |
11 days ago | 8 days ago | |
Python | Python | |
BSD 3-clause "New" or "Revised" License | BSD 3-clause "New" or "Revised" 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.
uvicorn
-
How to Build a Python API from Scratch with FastAPI
Uvicorn - An ASGI web server implementation for Python
-
uvicorn VS tremolo - a user suggested alternative
2 projects | 11 Jul 2024
-
Setting up Fast API in IIS and run APIs in Python
You might find some recommendations to use hypercorn rather than uvicorn, I tried that initially but I couldn't resolve an issue with socket permission, I raised it as a bug in their GitHub repo.
-
How to Deploy a Fast API Application to a Kubernetes Cluster using Podman and Minikube
FastAPI & Uvicorn
-
LangChain, Python, and Heroku
This tells Heroku to run uvicorn, which is a web server implementation in Python.
-
Fun with Avatars: Crafting the core engine | Part. 1
FastAPI uses Uvicorn, an ASGI (Asynchronous Server Gateway Interface) web server implementation for Python.
-
Effortless API Documentation: Accelerating Development with FastAPI, Swagger, and ReDoc
Now, letโs run our FastAPI application using Uvicorn: uvicorn main:app --reload
-
FastHttp for Python (64k requests/s)
Uvicorn + Starlette 8k requests/s
-
Ask HN: Where to Host a FastAPI App
I switched to Hypercorn because Uvicorn currently supports HTTP/1.1 and WebSockets as mentioned at https://www.uvicorn.org
-
How to use Chroma to store and query vector embeddings
This will set up Chroma and run it as a server with uvicorn, making port 8000 accessible outside the net docker network. The command also mounts a persistent docker volume for Chroma's database, found at chroma/chroma from your project's root.
Flask
-
Bootstrap your projects with Docker init
Let's see how it works, with a simple example, running on Flask.
-
Unbundling Content Delivery Network Architecture: How CDN Work
Flask Official Documentation
-
Building Microservices Using Knative
Now that we have installed and configured Knative Serving and Eventing, backed by a kafka cluster hosted on Confluent Cloud, let's create a simple Knative service and deploy the service to the Knative cluster. In this article, we'll build our services using Python utilizing Flask, [Gunicorn[(https://gunicorn.org/)], and Werkzeug to implement the service end-point.
-
Designing a Pure Python Web Framework
On the one hand, there are frameworks like Django and Flask that are great for building production-grade web apps. But they only handle the backend - you still need to use JavaScript and a frontend framework, as well as writing a lot of boilerplate code to connect the frontend and backend.
-
Ask HN: High quality Python scripts or small libraries to learn from
I'd suggest Flask or some of the smaller projects in the Pallets ecosystem:
https://github.com/pallets/flask
-
Rapid Prototyping with Flask, Bootstrap and Secutio
#!/usr/bin/python # # https://flask.palletsprojects.com/en/3.0.x/installation/ # from flask import Flask, jsonify, request contacts = [ { "id": "1", "firstname": "Lorem", "lastname": "Ipsum", "email": "[email protected]", }, { "id": "2", "firstname": "Mauris", "lastname": "Quis", "email": "[email protected]", }, { "id": "3", "firstname": "Donec Purus", "lastname": "Purus", "email": "[email protected]", } ] app = Flask(__name__, static_url_path='', static_folder='public',) @app.route("/contact//save", methods=["PUT"]) def save_contact(id): data = request.json contacts[id - 1] = data return jsonify(contacts[id - 1]) @app.route("/contact/", methods=["GET"]) @app.route("/contact//edit", methods=["GET"]) def get_contact(id): return jsonify(contacts[id - 1]) @app.route('/') def root(): return app.send_static_file('index.html') if __name__ == '__main__': app.run(debug=True)
- Microdot "The impossibly small web framework for Python and MicroPython"
-
Why do all the popular projects use relative imports in __init__ files if PEP 8 recommends absolute?
I was looking at all the big projects like numpy, pytorch, flask, etc.
-
10 Github repositories to achieve Python mastery
Explore here.
-
Ask HN: What would you use to build a mostly CRUD back end today?
I may use Flask-Admin initially to offload the "CRUD" operations to have an initial prototype fast but then drop it ASAP because I don't want to write a "flask-admin application" to fight against later on. If the application is mainly "CRUD", then Flask-Admin is suitable.
Now...
Would you do a breakdown/list of all the jobs you've done by sector/vertical and by function/role and by application functionality?
- [0]: https://flask.palletsprojects.com
- [1]: https://flask-admin.readthedocs.io/en/latest
- [2]: https://flask.palletsprojects.com/en/2.3.x/patterns/celery
- [3]: https://sentry.io
- [4]: https://posthog.com
- [5]: https://www.docker.com
What are some alternatives?
daphne - Django Channels HTTP/WebSocket server
fastapi - FastAPI framework, high performance, easy to learn, fast to code, ready for production
hypercorn
Django - The Web framework for perfectionists with deadlines.
hypercorn - Hypercorn is an ASGI and WSGI Server based on Hyper libraries and inspired by Gunicorn.
AIOHTTP - Asynchronous HTTP client/server framework for asyncio and Python
dash - Data Apps & Dashboards for Python. No JavaScript Required.
starlette - The little ASGI framework that shines. ๐
quart - An async Python micro framework for building web applications.
granian - A Rust HTTP server for Python applications
Tornado - Tornado is a Python web framework and asynchronous networking library, originally developed at FriendFeed.