Python utils for everyday use.
Project description
Python Humble Utils
Python utils for everyday use.
Please, open issues before sending emails to the maintainers: You will get a much faster response!
Feature Areas
File operations.
File/directory paths extraction.
File/directory paths randomization.
String case conversions.
Python class convenience shortcuts.
py.test fixtures and helpers.
Installation
$ pip install python-humble-utils
or install from sources:
$ python setup.py install
Refer to Installation for detailed instructions.
Usage
import os
from python_humble_utils.commands import (
yield_file_paths,
camel_or_pascal_case_to_snake_case
)
# ...
file_paths = yield_file_paths(dir_path=os.path.join('dir', 'with', 'scripts'),
allowed_file_extensions=['.sh', '.bash'],
recursively=True)
# assert set(file_paths) == set(['s1.sh', 's2.bash', 's3.bash'])
s = camel_or_pascal_case_to_snake_case('camelCasedString')
# assert s == 'camel_cased_string'
s = camel_or_pascal_case_to_snake_case('PascalCasedString')
# assert s == 'pascal_cased_string'
# ...
Contributing
Your contributions are very much welcome! Refer to Contributing for more details.
Code of Conduct
All those using python-humble-utils, including its codebase and project management ecosystem are expected to follow the Python Community Code of Conduct.
Acknowledgements
This package was scaffolded via Cookiecutter with audreyr/cookiecutter-pypackage template.
History
v1.0.2
v1.0.1
v1.0.0
v0.5.0
v0.4.0
v0.3.0
v0.2.0
First release on PyPI.
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
Hashes for python-humble-utils-1.0.2.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | d61f01a0cc844cefc96e7a3c709cecb0eee01df07022f59118b81b91bb29ba0a |
|
MD5 | debfbeae1099bdd9e0a7e20a701f7567 |
|
BLAKE2b-256 | 64c6f746ceba47dc99810cf1c320b80723b0eee7a33a88ad29f41877f368ab06 |
Hashes for python_humble_utils-1.0.2-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 311f84d51534d5f9cdbdd97be68e1c6996141692bc434e2008c08179ea21e8c0 |
|
MD5 | e3459d8200a3a5f5c56c1cd6fad80189 |
|
BLAKE2b-256 | 3503e1610764449caffc0f2a4980ee1b606a7366f8827760b99968eec9f79f47 |