Skip to main content

Some tiny python utils so I can be lazier.

Project description

python-utils

So maybe I stop writing the same things over and over.

Installation

# Python 3.9+ only (due to PEP 585 type annotations)
pip install mbforbes-python-utils

Usage

from mbforbes_python_utils import read, write, flatten

# read() removes leading/trailing whitespace.
contents = read("foo.txt")

# write() creates intermediate directories if needed.
# Pass `info_print = False` to disable printing.
write("bar/baz.txt", contents)

# flatten() flattens lists.
flatten([[1, [2, [3]]]])  # -> [1, 2, 3]

Tests

python test_mbforbes_python_utils.py

Releasing

I don't do this enough to remember how to do it

# Increment version in setup.py. Then,
pip install twine wheel
python setup.py sdist bdist_wheel
twine check dist/*
# If the above failed, `rm -rf build/ dist/ *.egg-info` before retrying
twine upload dist/*

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mbforbes_python_utils-0.4.0.tar.gz (3.0 kB view hashes)

Uploaded Source

Built Distribution

mbforbes_python_utils-0.4.0-py3-none-any.whl (3.7 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page