pgjones
No user record in our sample, but pgjones has activity below (stories or comments). Likely we have partial data — the full bulk-load will fill profiles in.
-
SQL-tString is a SQL builder that utilises the recently accepted PEP-750, https://peps.python.org/pep-0750/, t-strings to build SQL queries, for example, from sql_tstring import sql val = 2 query, values = sql(t"SELECT…
-
Flask is a web microframework built to be used with WSGI servers and synchronous code. Quart is the same web microframework built to be used with ASGI servers and asynchronous code. In other words Flask and Quart are…
- Tips and techniques for modern Flask apps (pgjones.dev)
- Faster Routing for Flask and Quart (pgjones.dev)
- Things you should be doing with cookies (but probably aren't) (moneyed.co.uk)
- An early look at HTTP/3 (pgjones.dev)
- How to serve HTTP 1, 2, & 3 in Python (pgjones.dev)
- Show HN: HTTP/2 Python-Asyncio Web Microframework (gitlab.com)
-
I've been looking into HTTP/2 server push recently* and I haven't found any sites using it, including the big tech firms. So I suspect that it isn't really useful in practice. Does anyone here use it, or know more about…