pgjones

↗ HN profile [ 1309 ms ] full profile
Karma
173
Created
April 23, 2015 (11y ago)
Submissions
0
pgjones.dev

Quart, Flask, Werkzeug and Hypercorn maintainer, active in the Python async community.

  1. 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…

  2. 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…

  3. 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…