An open API service indexing awesome lists of open source software.

https://github.com/austinv11/speed-stack

Quick python tweaks
https://github.com/austinv11/speed-stack

python python3

Last synced: 10 months ago
JSON representation

Quick python tweaks

Awesome Lists containing this project

README

          

# Speed-Stack
Easy enhancements to python by replacing system modules with various (optional)
third party packages.

Current available configurations:
* uvloop: Injects uvloop as the current asyncio EventLoop Policy
* ujson: Injects ujson as the json module implementation
* rapidjson: Injects python-rapidjson as the json module implementation
* dill: Injects dill as the json module implementation
* multiprocess: (Inherits the dill configuration) Injects multiprocess as the multiprocessing module implementation
* recommended: Injects uvloop, ujson, dill and multiprocess.

## Usage
Simply ensure that `import speed_stack` is one of the first lines run in your program.