Signal
Advertise
Signal
Advertise
Sign in
Submit
Discover trends that matter
Trending repositories
Daily
Weekly
Monthly
Yearly
Live mentions
Topics
GitHub trending
Repositories
Developers
Insights
Stats
Log in
tugrulguner/dexpot — GitHub trending stats & insights | Trendshift
Omnigraph
tugrulguner/dexpot
A synchronous Python API framework with adaptive GIL and free-threaded execution.
Visit GitHub
Like tugrulguner/dexpot, 0 likes
0
Bookmark tugrulguner/dexpot, 0 bookmarks
0
Python
2
2 contributors
MIT License
Social mentions
Recent discussions about this repository across the web
A service keeps an in-memory cache shared by its request handlers. Traditional multiprocess deployment duplicates that state and adds coordination whenever workers need to agree. Free-threaded Python…
@Tugrul_Guner · x.com
An inventory endpoint receives JSON containing a SKU and quantity. The useful path is short: turn bytes into a typed object, reject invalid data clearly, and call the handler. Represent the payload…
@Tugrul_Guner · x.com
A webhook receives an order, calls a synchronous payment SDK, writes through a blocking database client, and returns JSON. Converting every call site to async would add ceremony while both…
@Tugrul_Guner · x.com
Typed request bodies should not require a tower of validation layers. pip install dexpot class Order(msgspec.Struct): sku: str quantity: int dexpot decodes and validates the body in one fused…
@Tugrul_Guner · x.com
Your API is fine at normal traffic. Then its queue grows and tail latency explodes. dexpot attacks saturation directly with a bounded pool on GIL builds and explicit 503 shedding when full. pip…
@Tugrul_Guner · x.com
You have a sync SDK, a blocking database client, and a plain Python handler. Async integration often adds thread-pool boundaries or rewrites. pip install "dexpot[cli]" dexpot serve main:app …
@Tugrul_Guner · x.com
dexpot dresses for the Python runtime it has. Free-threaded build? Threads across cores. Classic GIL? Bounded pool with overload shedding. Same synchronous API, fewer costume changes for you.
@Tugrul_Guner · x.com
Repository activities
repository's daily and monthly activities across stars, forks, merged PRs, issues, and closed issues