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
- Host: GitHub
- URL: https://github.com/austinv11/speed-stack
- Owner: austinv11
- License: mit
- Created: 2018-10-27T02:55:08.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2018-10-27T02:56:23.000Z (about 7 years ago)
- Last Synced: 2025-01-11T23:35:20.746Z (12 months ago)
- Topics: python, python3
- Language: Python
- Size: 7.81 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.