Codemod to convert synchronous Python code to async.
Project description
asyncify-codemod
asyncify-codemod is a codemod that converts synchronous Python code into async where
possible. It focuses on a few common patterns (like requests, time.sleep,
and file I/O) and rewrites them to async equivalents.
Usage
Run with pipx
pipx run asyncify-codemod [files you wish to transform ...]
E.g. if your python source files are located in src/:
pipx run asyncify-codemod src/**/*.py
pipx run asyncify-codemod --stdout path/to/file.py path/to/another.py
Comparison: asyncio.to_thread() vs async rewrites
Because “real async I/O” and “sync I/O in a thread” solve different problems, and they behave very differently at scale and under cancellation.
Where to_thread is great
Fast migration / compatibility shim: you can call existing blocking code from an async app without freezing the event loop. No behavioral rewrite: minimal code churn; good for legacy code you don’t want to touch yet. Sync-only dependencies: if there is no solid async alternative, threads are the pragmatic choice.
Where to_thread breaks down (and why a codemod helps)
- Concurrency limits: to_thread is bounded by a thread pool. You can run thousands of concurrent await httpx/... calls; you generally can’t run thousands of threads. Under load, this becomes queueing/latency rather than throughput.
- Cancellation semantics: cancelling an await to_thread(...) usually does not stop the underlying blocking call; it just stops waiting for it. With real async libs, cancellation is often propagated more cleanly (still not perfect everywhere, but materially better).
- Resource efficiency: threads cost memory + scheduling overhead; async sockets/file ops can be much lighter per in-flight operation. You can’t “mix in” async behavior inside: if a function is wrapped, everything inside it stays sync. A codemod can turn the internals into await points (time.sleep → anyio.sleep, requests → httpx, open() → anyio.open_file), enabling cooperative scheduling throughout the call graph.
- Observability/context: thread offloading can complicate tracing/log context propagation and debugging (it’s doable, just another layer). Pure async tends to integrate more directly with async frameworks’ middleware/instrumentation.
Use a codemod when you want the codebase to become natively async so it scales better, cancels better, and composes naturally with async frameworks—without hand-editing hundreds of mechanical changes.
Caveats
Sync-only dependencies
Currently, this codemod only rewrites commonly used I/O-bound operations with async alternatives (as mentioned above). If you're using custom libraries where there are no solid async alternatives, they will in your new async functions after a codemod. This is a huge performance blocker and the only way to resolve this right now is to manually update its usages (i.e. send it to asyncio.to_thread).
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file asyncify_codemod-0.5.0.tar.gz.
File metadata
- Download URL: asyncify_codemod-0.5.0.tar.gz
- Upload date:
- Size: 42.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
281dd0b21a97dd44b74beb41918bb6714d1c3e6802c0507c04e4e84108d692bd
|
|
| MD5 |
515626b2bf80303cd5f59a84c63d8727
|
|
| BLAKE2b-256 |
5c157885f3969544baa9d273d6a47c191af3721968b174528711dbce9cb1256a
|
Provenance
The following attestation bundles were made for asyncify_codemod-0.5.0.tar.gz:
Publisher:
publish.yml on 7CaD/python-asyncify-codemod
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
asyncify_codemod-0.5.0.tar.gz -
Subject digest:
281dd0b21a97dd44b74beb41918bb6714d1c3e6802c0507c04e4e84108d692bd - Sigstore transparency entry: 937733413
- Sigstore integration time:
-
Permalink:
7CaD/python-asyncify-codemod@2f76535a6f2274f245523bf3b3df70b7b3cb470c -
Branch / Tag:
refs/tags/v0.5.0 - Owner: https://github.com/7CaD
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@2f76535a6f2274f245523bf3b3df70b7b3cb470c -
Trigger Event:
push
-
Statement type:
File details
Details for the file asyncify_codemod-0.5.0-py3-none-any.whl.
File metadata
- Download URL: asyncify_codemod-0.5.0-py3-none-any.whl
- Upload date:
- Size: 32.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a298956ac277608224819761c5fcd9bde97ab4278fb92ff0842cdb3eeeabec1d
|
|
| MD5 |
e829cd08c41ef9670a4d5e7a169ea443
|
|
| BLAKE2b-256 |
7d9b1e38eff7311be547f8915f85b01600236400e9b45e0fdd9994ab9eb3659f
|
Provenance
The following attestation bundles were made for asyncify_codemod-0.5.0-py3-none-any.whl:
Publisher:
publish.yml on 7CaD/python-asyncify-codemod
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
asyncify_codemod-0.5.0-py3-none-any.whl -
Subject digest:
a298956ac277608224819761c5fcd9bde97ab4278fb92ff0842cdb3eeeabec1d - Sigstore transparency entry: 937733427
- Sigstore integration time:
-
Permalink:
7CaD/python-asyncify-codemod@2f76535a6f2274f245523bf3b3df70b7b3cb470c -
Branch / Tag:
refs/tags/v0.5.0 - Owner: https://github.com/7CaD
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@2f76535a6f2274f245523bf3b3df70b7b3cb470c -
Trigger Event:
push
-
Statement type: