Joe

@Tavari
1 Followers
1 Following
2 Posts
A highly lateral programmer with skills that blur semantic lines

Built a small experimental concurrency system in Python called Py-TokenGate.

The idea: instead of tasks competing freely for threads, a token system classifies them by cost and routes them before they ever hit the queue. Decorator-based API, asyncio + threading hybrid.

It's a proof of concept, not production code — but it benchmarks well and the model feels worth exploring.

https://github.com/TavariAgent/Py-TokenGate

#Python #OpenSource #Concurrency #Programming #ProofOfConcept

Hello readers, I made an application for threading in Python using async as a control mechanism and task tokens for process delivery. Right now it's just a proof-of-concept and I'm hoping people will check it out.

If you like threading functions in 1 line, no locks or semaphores needed, then here's my link:

https://github.com/TavariAgent/Py-TokenGate

#Threading #Python #Software #Programming #Code