https://github.com/grnet/objpool
A Python library for object pools
https://github.com/grnet/objpool
Last synced: 5 months ago
JSON representation
A Python library for object pools
- Host: GitHub
- URL: https://github.com/grnet/objpool
- Owner: grnet
- License: other
- Created: 2013-02-08T16:07:33.000Z (over 13 years ago)
- Default Branch: develop
- Last Pushed: 2017-10-19T09:14:24.000Z (over 8 years ago)
- Last Synced: 2025-09-05T12:01:57.123Z (10 months ago)
- Language: Python
- Size: 73.2 KB
- Stars: 7
- Watchers: 18
- Forks: 8
- Open Issues: 1
-
Metadata Files:
- Readme: README.txt
- Changelog: Changelog
- License: LICENSE.txt
Awesome Lists containing this project
README
=======
objpool
=======
objpool provides a generic library for pooling resources as objects. As an
example, it includes a pool for httplib HTTP connections, but it is generalized
and expects you to extend it to create your own pooled objects.
Usage::
To see how to create your own pooled types of objects, see the example
implementation at objpool/http.py