Explore >> Select a destination


You are here

blog.pamelafox.org
| | www.laac.dev
10.7 parsecs away

Travel
| | Python's AsyncIO web ecosystem continues to mature, but should you build your next production application with one of these shiny new frameworks such as FastAPI, Starlette, or Quart?
| | blog.tedivm.com
13.1 parsecs away

Travel
| | Multi-Py publishes container images for popular Python packages targeting AMD64, ARM64, and ARM v7, on Ubuntu and Alpine.
| | avelino.run
14.7 parsecs away

Travel
| | I started a new project with the name nacho, asynchronous web framework for Python 3. Our goals It was designed to work on Python 3.x Some of syntax were inspired on Tornado's syntax Tornado is the default server, but Eventlet is stable as well Templates are done by Jinja2 HTML5 as the big-main-thing Work friendly with NoSQL (otherwise we should stop talking about them) Handle asynchronous requests properly Example class MainHandler(ApplicationController): def get(self): data = {'title': 'testando lero lero'} self.render("home.html", **data) r = Routers([(r"/", MainHandler),])
| | wittchen.io
22.1 parsecs away

Travel
| Introduction I have my own tiny Python project called spotify-cli-linux, which is (surprise!) command line interface for Spotify desktop app on Linux. Python is not my primary programming language and I work more with Java. Nevertheless, I find this language enjoyable and useful in many cases, so I try to learn something new about it from time to time. In the beginning, I've provided instructions how to install my Python script in the system via curl and wget, which is fine, but it's not recommended and ...