A collection of helpful Python tools!
Project description
Let me check my pockets…
The Pockets library pulls together many of the Python helper functions I’ve found useful over the years.
If you’ve worked on a project that exports an API and accesses a data store, you’ve probably seen some code that looks like this:
# Receive a data type with underscores from some API data_type = 'user_preference' # Convert underscored data type to CamelCase to match the data model model_name = camel(data_type) # Resolve the model name into a model class model_class = resolve(model_name, modules=["webapp.model.admin", "webapp.model.user", "webapp.model.businesslogic"] # Instantiate the model class and do stuff with the instance... instance = model_class()
There’s an impedance mismatch any time you work with two different frameworks; especially when you want to update your back-end while maintaining legacy compatibility with an external API.
Pockets is full of highly tested, well maintained functions that help bridge the gap. Here are just a few examples…
Easily get the right logger no matter where you are
>>> from pockets.autolog import log >>> log.error("Always log from the correct module.Class!") mymodule.MyClass: Always log from the correct module.Class!
Convert underscore_separated string to CamelCase
>>> from pockets import camel >>> camel("xml_http_request", upper_segments=[1]) 'XmlHTTPRequest'
Convert CamelCase string to underscore_separated
>>> from pockets import uncamel >>> uncamel("XmlHTTPRequest") 'xml_http_request'
Resolve a string into an object
>>> from pockets import resolve >>> resolve("calendar.TextCalendar") <class 'calendar.TextCalendar'>
Peek ahead iterator
>>> from pockets import iterpeek >>> p = iterpeek(["a", "b", "c", "d", "e"]) >>> p.peek() 'a' >>> p.next() 'a' >>> p.peek(3) ['b', 'c', 'd']
Downloads and Docs
Full documentation is available on Read the Docs.
Built packages are available on PyPI.
Source code is available on GitHub. Feel free to:
Create an issue to request a feature or a report a bug.
Fork the repository and make changes to the master branch for next release.
Send a pull request and pester the maintainer until it’s merged. Make sure to add yourself to AUTHORS and update CHANGES.
Build Status
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file pockets-0.9.1.tar.gz
.
File metadata
- Download URL: pockets-0.9.1.tar.gz
- Upload date:
- Size: 25.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9320f1a3c6f7a9133fe3b571f283bcf3353cd70249025ae8d618e40e9f7e92b3 |
|
MD5 | 4f7e699bd6d1a6b05e1a71905c1d58d1 |
|
BLAKE2b-256 | df8e0601097cfcce2e8c2297db5080e9719f549c2bd4b94420ddc8d3f848bbca |
File details
Details for the file pockets-0.9.1-py2.py3-none-any.whl
.
File metadata
- Download URL: pockets-0.9.1-py2.py3-none-any.whl
- Upload date:
- Size: 26.3 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 68597934193c08a08eb2bf6a1d85593f627c22f9b065cc727a4f03f669d96d86 |
|
MD5 | 0b212b5c5118a5f8cedab335be44a731 |
|
BLAKE2b-256 | e92fa4583c70fbd8cd04910e2884bcc2bdd670e884061f7b4d70bc13e632a993 |