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 initially scaffolded via Cookiecutter with audreyr/cookiecutter-pypackage template.
History
v2.0.0
v1.0.4
v1.0.3
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-3.0.0.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | c0cbed701e73bdc505f4c228e1cde7e1d7636163ea6bc745588b9e9369fb04fb |
|
MD5 | 7c490e1919c499ae3d6bb52d193ce65e |
|
BLAKE2b-256 | 36333210cc478d03858df658575fbbdcf9bafab9d79d648acc9cae8539861eee |
Hashes for python_humble_utils-3.0.0-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | b0647c98c33397a63f2d20d1bd42f365f9d505d20dd600ff18d04af57aaf8253 |
|
MD5 | 6c79d896dfe9c38ab4685afccccf62db |
|
BLAKE2b-256 | 3fdfed14efb570c82677198cd2b87562b3a77db539e69c46356d1c128333a219 |