PyPika VS asyncpg

Compare PyPika vs asyncpg and see what are their differences.

PyPika

PyPika is a python SQL query builder that exposes the full richness of the SQL language using a syntax that reflects the resulting query. PyPika excels at all sorts of SQL queries but is especially useful for data analysis. (by kayak)
Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
PyPika asyncpg
4 15
2,367 6,596
2.1% 1.3%
5.5 7.2
6 days ago 11 days ago
Python Python
Apache License 2.0 Apache License 2.0
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
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.

PyPika

Posts with mentions or reviews of PyPika. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-07-11.
  • any recommendations for a good query builder library with good support?
    2 projects | /r/learnpython | 11 Jul 2023
    I recently started using drizzle orm and I am now looking for something similar in python, my goal is to be as close to sql syntax as possible without just passing dml commands as strings, type safety would be cool as well, I saw this one pypika but it ha a lot of open issues and no commits for a year, is there anything similar but more stable?
  • Ask HN: Is SQLAlchemy the industry standard Python ORM in 2023?
    2 projects | news.ycombinator.com | 11 Jun 2023
    Yes it is. I haven't seen many Python projects using Prisma and

    Note that there are several types of technologies that can help connect an application to an SQL database:

    - SQL builders: the best known project seems to be Pypika by Kayak (https://github.com/kayak/pypika) but it seems to be dead of sleeping.

  • Write an SQL query builder in 150 lines of Python
    10 projects | news.ycombinator.com | 27 Aug 2021
    https://github.com/kayak/pypika

    Have used in multiple projects and have found it's the right balance between ORMs and writing raw SQL. It's also easily extensible and takes care of the many edge cases and nuances of rolling your own SQL generator.

  • Migrating to SQLAlchemy 2.0
    3 projects | news.ycombinator.com | 18 Feb 2021
    There is a middle-ground between writing SQL statement strings in your code, and a full-blown ORM: query builders. At least in my experience with small to medium projects, these have far fewer footguns while keeping the code composable and readable. Here's one for Python: https://github.com/kayak/pypika

asyncpg

Posts with mentions or reviews of asyncpg. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-01-27.
  • Ask HN: Is Python async/await some kind of joke?
    4 projects | news.ycombinator.com | 27 Jan 2024
    - SqlAlchemy/asyncpg => you can’t use it if you’re using PgBouncer (necessary most of the time with Postgres) in transaction mode? What?? https://github.com/MagicStack/asyncpg/issues/1058
  • Differences from Psycopg2
    1 project | news.ycombinator.com | 10 Oct 2023
    OK I stand corrected, asyncpg has these two C files:

    https://github.com/MagicStack/asyncpg/blob/master/asyncpg/pr...

    https://github.com/MagicStack/asyncpg/blob/master/asyncpg/pr...

    If you are interested here is a post by the psycopg author about psycopg2 and 3 and performance versus asyncpg.

    https://www.varrazzo.com/blog/2020/05/19/a-trip-into-optimis...

  • Asyncpg – A Fast PostgreSQL Database Client Library for Python/Asyncio
    1 project | news.ycombinator.com | 29 Sep 2023
  • Ruby Outperforms C: Breaking the Catch-22
    4 projects | news.ycombinator.com | 9 Sep 2023
    This pure Python library claims quite fabulous performance: https://github.com/MagicStack/asyncpg

    I believe it because that team have done lots of great stuff but I haven't used it, I just remembered thinking it was interesting the performance was so good. Not sure how related it is to running on the asyncio loop (or which loop they used for benchmarks).

  • PgBouncer is useful, important, and fraught with peril
    2 projects | news.ycombinator.com | 8 Sep 2023
    what a great post, we have had a ton of issues with users using pgbouncer and it's not because things are "broken" per se, it's just the situation is very complicated, and pgbouncer's docs are also IMO in need of updating to be more detailed and in a few critical cases less misleading, specifically the prepared statements docs.

    This blog post refers to this misleading nature at https://jpcamara.com/2023/04/12/pgbouncer-is-useful.html#pre... .

    > PgBouncer says it doesn’t support prepared statements in either PREPARE or protocol-level format. What it actually doesn’t support are named prepared statements in any form.

    That's also not really accurate. You can use a named prepared statement just fine in transaction mode. start a transaction (so you aren't in autocommit), use a named statement, works fine. you just can't use it again in another transaction, because it will be "gone" (more accurately, "unmoored" - might be in your session, might be in someone else's session). Making things worse, when the prepared statement is "unmoored", its name can then conflict with another client attempting to use the same name.

    so to use named prepared statements, you can less ideally name them with random strings to avoid conflicts, or you can DEALLOCATE the prepared statement(s) you used at the end of your transaction. for our users that use asyncpg, we have them use a uuid for prepared statements to avoid these name conflicts (asyncpg added this feature for us here: https://github.com/MagicStack/asyncpg/issues/837). however, they can just as well use DEALLOCATE ALL, set this as their `server_reset_query`, and then so that happens in transaction mode, also set `server_reset_query_always`, so that it's called at the end of transactions. Where pgbouncer here IMO entirely misleadingly documents this as "This setting is for working around broken setups that run applications that use session features over a transaction-pooled PgBouncer." - which is why nobody uses it, because pgbouncer claims this is "broken". It's not any more broken than it is to switch out the PostgreSQL session underneath a connection that uses multiple transactions. Pgbouncer can do better here and make this clearer and more accommodating of real world database drivers.

  • Library to connect Python to Postgresql
    1 project | /r/learnpython | 4 May 2023
    asyncpg is another great driver if you're using asyncio and want maximum performance (although they also break with DBAPI, but the tradeoff may be worth it).
  • aiopg vs asyncpg vs psycopg3
    3 projects | /r/learnpython | 28 Jun 2022
    asyncpg: 5.5k starts, last commit recently, ~150 issues, some incompatibility, few open PRs, extensive README. Includes benchmark showing it's supposedly 3x faster than aiopg and psycopg2, psycopg3 is not mentioned in the benchmark.
  • Announcing Quart-DB
    3 projects | /r/Python | 12 Apr 2022
    Quart-DB uses asyncpg to manage the connections and buildpg to parse the named parameter bindings.
  • Should I use TimescaleDB or partitioning is enough?
    1 project | /r/PostgreSQL | 4 Mar 2022
    A major performance boost specifically on inserts with timescaledb was actually starting to use https://github.com/MagicStack/asyncpg.
  • Cascade of doom: JIT, and how a Postgres update led to 70% failure on a critical national service
    7 projects | dev.to | 13 Nov 2021
    Simple query runs long when DB schema contains thousands of tables #186

What are some alternatives?

When comparing PyPika and asyncpg you can also consider the following projects:

TinyDB - TinyDB is a lightweight document oriented database optimized for your happiness :)

psycopg2 - PostgreSQL database adapter for the Python programming language

sqlc - Generate type-safe code from SQL

aiopg - aiopg is a library for accessing a PostgreSQL database from the asyncio

tksheet - Python tkinter table widget for displaying tabular data

pymssql - Official home for the pymssql source code.

PipelineDB - High-performance time-series aggregation for PostgreSQL

awesome-mysql - A curated list of awesome MySQL software, libraries, tools and resources

pickleDB - pickleDB is an open source key-value store using Python's json module.

pgbouncer - lightweight connection pooler for PostgreSQL

django-compositepk-model - Extended Django Model class with composite-primary-key support

mysql-python - MySQLdb is a Python DB API-2.0 compliant library to interact with MySQL 3.23-5.1 (unofficial mirror)