Privex's Python Helpers

This small Python 3 module is comprised of various small functions and classes that were often
copied and pasted across our projects.
Each of these "helper" functions, decorators or classes are otherwise too small to be independently
packaged, and so we've amalgamated them into this PyPi package, privex-helpers
.
+===================================================+
| © 2019 Privex Inc. |
| https://www.privex.io |
+===================================================+
| |
| Originally Developed by Privex Inc. |
| |
| Core Developer(s): |
| |
| (+) Chris (@someguy123) [Privex] |
| (+) Kale (@kryogenic) [Privex] |
| |
+===================================================+
Tl;Dr; Install and use Privex Helpers
Install from PyPi (detailed install info at Install and Using package extras)
pipenv install privex-helpers
pip3 install privex-helpers
pipenv install 'privex-helpers[full]'
pip3 install 'privex-helpers[full]'
Very import and basic usage (detailed examples at Example Uses)
from privex.helpers import is_true, empty
if is_true('yes'):
print('yes is truthful')
if empty(''):
print("'' is empty")
Table of Contents (Github README)
NOTE: The below Table of Contents is designed to work on Github. The links do NOT work on PyPi's description,
and may not work if you're reading this README.md elsewhere.
-
Why use Privex Helpers?
1.1. Lightweight
1.2. Keeps your code DRY (Don't repeat yourself!)
1.3. Makes your life just plain easier
1.4. Thorough unit tests
1.5. Overview of what's included
-
Install
2.1 Via PyPi (pip)
2.2 Manually via Git
-
Documentation
-
License
-
Example Uses
-
Minimal Dependencies / Using package extras
6.1 Modules with dependencies
6.2 Using Setuptools Extras
6.3 Installing extras when using the cloned repository
-
Unit Tests
-
Contributing
Why use Privex Helpers?
Privex helpers was created with a very simple goal in mind: make developing Python applications easy, fun, simple,
and painless.
Lightweight
Whether you're using it in a library, or in your project, you'll be pleased to know that the privex-helpers
and
all of it's required dependencies make up less than 200kb total. For comparison, the Django
package alone
(that's excluding it's dependencies) is a whopping 26 MEGABYTES.
Most of privex-helpers
can be used without any additional dependencies. Some modules, or parts of modules
may require a certain dependency, but will cleanly disable themselves if the necessary dependency isn't available.
See Modules with dependencies to see which modules only work if you have a certain
package installed, and modules which are dependency-free but enable additional functionality if you install
extra packages.
Keeps your code DRY (Don't repeat yourself!)
Tired of writing those same long if
statements to check if a user entered value was some sort-of boolean value?
Use is_true
and is_false
- trim those long if statements into a single function call. Less typing, and more
readable.
Makes your life just plain easier
Writing a library and need caching? Not sure whether you should just force your users to use Redis, whether you
should just make this a Django plugin, or write some sort-of rudimentary caching system yourself? privex-helpers
includes a modular caching abstraction layer that Just Works™ out of the box, without forcing tons of dependencies on
your users.
Maybe you just need to encrypt a string, or generate an RSA keypair. But you tried taking a look at the
popular cryptography package docs, and it looks like you're going to be writing
scaffolding code for hours just to do that... Say hello to privex.helpers.crypto
- whether you're dealing with
symmetric or asymmetric encryption, it's just one import line, a few lines of code and you're DONE.
Thorough unit tests
Included in the tests/
folder, is a collection of over 70 individual unit tests, which is constantly
having more unit tests added over time.
This project uses Travis for continuous integration (automatic testing with each commit), and CodeCov keeping
track of how much of the codebase is covered by unit tests. See Unit Tests for more details.
This ensures that privex-helpers
is reliable and robust - if a part of the library is broken with a new update,
then we'll be alerted shortly after pushing out the update that our tests are failing, so we can fix the issue ASAP.
Overview of what's included
This is not an exhaustive list, and may sometimes be a little outdated. To see everything that's available in
privex-helpers
then check out the Documentation.
-
common
- a melting pot of functions and classes that will generally just make developing python code 100x easier,
and make it 10x more readable. some of the most useful include:
empty
- checking if a value is "empty", e.g. None
, ''
, 0
, '0'
, []
etc.is_true
- fuzzy "true" testing, checks for common forms of true, e.g. True
, "true"
, "yes"
, 1
is_false
- fuzzy "false" testing, checks for common forms of false, e.g. False
, "false"
, "no"
, 0
env_csv
- load an environment variable like a CSV, allowing for list representation in env varsenv_keyval
- load an environment variable like a key value map, allowing for tuple pair / dict
representation in env varsdec_round
- round a python Decimal
using the built-in Quantize method, but without the hassle.Dictable
- easily create your Python 3.7 dataclass
from a dictionary, plus enable them to be casted
into a plain dict using dict(mydataclass)
- and MORE, check the documentation!
-
cache
- a dependency-free, framework agnostic caching layer, with support for:
- automatic timeouts
- ability to extend the timeout of a cache item (even after it's already "expired" on some cache adapters)
- get_or_set with callback function/method support
- can optionally use Redis if you'd prefer (requires an optional dependency)
-
crypto
- classes which make both symmetric and asymmetric encryption extremely easy to use
EncryptHelper
- for symmetric AES-128 encryption / decryption with a shared key, with the ability to generate
either a secure random shared key, or a shared key generated from a password + saltKeyManager
- for asymmetric signing / verification, plus encryption/decryption if you use RSA. supports
generating/loading RSA, ECDSA, and Ed25519 keys, as well as outputting them in a variety of formats
and encodings.
-
setuppy
- a module with various functions to help with making python packages or dealing with
requirements.txt files
common.extras_require
- A helper function which allows you to generate an extras_require
setting in
setup.py simply by passing a list of extras names, e.g. extras_require=extras_require(['cache', 'net']),
bump.bump_version
- Bumps a certain part of a package's semver version number and updates the file containing
the versioncommands.BumpCommand
- A setup.py command class, which allows you to use bump.bump_version
within
your package, just by typing a command such as ./setup.py bump --minor
(bumps your package's minor 0.x.0
version and updates the file which contains the version)commands.ExtrasCommand
- Exposes various functionality for managing extras_require
in your package,
including easily generating/saving requirements.txt files for your extras, installing the requirements,
and outputting a list of extras.
-
decorators
- various decorators to simplify your code
retry_on_err
- automatically re-run a function/method when exceptions are thrown, with a variety of
customization availabler_cache
- automatic caching of a function/property, with support for caching based on parameters or a lambda
-
net
- various networking functions, including:
- handling IP addresses
- generating reverse DNS records
- looking up ASN names based on their number
- checking if an IP is up (via ping) - with both IPv4 and IPv6 support
-
asyncx
- various async helper functions, to help synchronous code play nicely with async code
-
django
various Django helper functions, most of which you'll probably question "why is this not built into django?"
-
exceptions
- various exception classes, most of which are used by privex-helpers functions/classes, but can be
used in any python project to save you re-inventing an exception name
Install
Download and install from PyPi
Using Pipenv (recommended)
pipenv install privex-helpers
Using standard Python pip
pip3 install privex-helpers
(Alternative) Manual install from Git
Option 1 - Use pip to install straight from Github
pip3 install git+https://github.com/Privex/python-helpers
Option 2 - Clone and install manually
git clone https://github.com/Privex/python-helpers
cd python-helpers
pip3 install .
python3 setup.py install
Documentation

Full documentation for this project is available above (click the Read The Docs image), including:
- How to install the application and it's dependencies
- How to use the various functions and classes
- General documentation of the modules and classes for contributors
To build the documentation:
git clone https://github.com/Privex/python-helpers
cd python-helpers/docs
pip3 install -r requirements.txt
make clean && make html
make live
License
This Python module was created by Privex Inc. of Belize City, and licensed under the X11/MIT License.
See the file LICENSE for the license text.
TL;DR; license:
We offer no warranty. You can copy it, modify it, use it in projects with a different license, and even in commercial (paid for) software.
The most important rule is - you MUST keep the original license text visible (see LICENSE
) in any copies.
Example uses
We export all of the submodule's contents in privex/helpers/__init__.py
, so you can import any
function/class/attribute straight from privex.helper
without needing several import lines.
Here are some of the most useful examples (part of our .common
module, no dependencies)
from privex.helpers import empty, is_true, random_str, ip_is_v4, ip_is_v6
x = ''
if empty(x):
print('Var x is empty: either None or empty string')
y = []
if empty(y, itr=True):
print('Var y is empty: either None, empty string, or empty iterable')
enable_x = 'YES'
if is_true(enable_x):
print('Enabling feature X')
random_str()
random_str(12, chars='abcdef12345')
ip_is_v4('192.168.1.1')
ip_is_v4('2a07:e00::1')
ip_is_v6('192.168.1.1')
ip_is_v6('2a07:e00::1')
Minimal dependencies
Most of our helper code is independent, and does not result in any extra dependencies being installed.
Some of our helpers are dependant on external libraries or frameworks, such as Django or Flask. To avoid
large Python packages such as Django being installed needlessly, we programatically enable/disable some
of the helpers based on whether you have the required dependency installed.
This package only requires (and automatically installs if needed) a single dependency - our
privex-loghelper package, which itself is lightweight
and dependency free.
As of version 2.0.0 - Privex Helpers now supports Setuptools Extras, allowing you
to specify extra dependencies related to privex-helpers in your requirements.txt, or when running
pip3 install.
What is each extra for?
Extras designed for using the privex-helpers
package in a project/package:
- full - A meta-extra which includes most other extras required for full functionality of the library.
- It does NOT include the
django
extra, because the Django
package and it's sub-dependencies results in
a good 30-50mb of packages being installed, and those who would use the django
module probably already
have Django
installed... - It does NOT include the
docs
or tests
extras, as those two are only required for building the
documentation, or running the unit tests.
- crypto - Install dependencies required to use the
crypto
module - cache - Install optional dependencies to enable all cache backends in
cache
- django - Install dependencies related to the
django
module (including Django
itself) - net - Install optional dependencies to enable full functionality of the
net
module - setuppy - Install optional dependencies to enable full functionality of the
setuppy
modules
Extras designed for use when developing, testing, documenting, or building privex-helpers
:
- dev - Includes everything required for development and related activities with
privex-helper
.
Generally includes ALL extras, unlike full
this includes django
, docs
and tests
- docs - This extra is not required for privex-helpers modules. It contains requirements for building the docs.
- tests - Not required for privex-helpers module usage. Contains requirements for running the unit tests.
Using the extras with pip install
# Example: Install privex-helpers AND all optional dependencies (excluding django), for full functionality
pip3 install 'privex-helpers[full]'
# Example: Install privex-helpers with only the crypto and cache module dependencies
pip3 install 'privex-helpers[cache,crypto]'
# Example: Install just privex-helpers and REQUIRED dependencies (i.e. critical to basic functionality)
pip3 install privex-helpers
Alternatively, just pip3 install
extra packages depending on the helpers you require:
# For all Django-specific helpers in privex.helpers.django
Django
# For certain DNS dependant helpers in privex.helpers.net
dnspython>=1.16.0
# For using Redis with the privex.helpers.cache module
redis>=3.3.8
# For using the privex.helpers.crypto module
cryptography>=2.8
First, it's recommended to install the requirements in extras/setuppy.txt
to ensure setup.py functions fully.
pip3 install -r extras/setuppy.txt
As of privex-helpers 2.1.0, you can use the handy setup.py extras
command to install individual extras requirements,
or all extra requirements painlessly:
./setup.py extras -i
./setup.py extras -i -e cache
If you just want to install the privex-helpers
package from source, then you can use pip to install
the current folder, and specify the extras you want:
pip3 install '.[full]'
pip3 install '.[dev]'
Modules with dependencies
If you're using privex-helpers
within a normal project (not a package), then it's recommended to simply
install privex-helpers[full]
which includes all main dependencies for full functionality.
If you're using it inside of a package, then you should only require the extras that are critical to your package
functioning. Anything non-essential should be placed in the extras_require
of your setup.py to avoid
un-necessary packages being installed on your users.
Modules which require a dependency to use them
crypto
- This module won't work at all without the cryptography
library (or privex-helpers[crypto]
)django
- Django related helpers obviously don't work without Django
installed. But since they're intended
for use within a Django project, you'd already have Django
installed anyway if you needed them :)
Dynamic modules which simply enable additional features if you install certain packages
setuppy
- The common
sub-module should generally work without any dependencies, but to be able to use all
functionality of this module such as the bump
and commands
sub-modules, you'll need to install with the
setuppy
extra, e.g. privex-helpers[setuppy]
net
- Some functions are dependent on dnspython
(or privex-helpers[net]
), but the majority of the module
is dependency-freecache
- The cache layer works just fine without any dependencies. If you're using privex-helper
within a project,
then you may want to install redis
(or privex-helpers[cache]
) to make the Redis cache adapter available.plugin
- While this module isn't very often used within other projects/packages, it does expose some
Redis singleton management functions (and possibly others at the time of writing). If you plan on using
this module, we recommend using privex-helpers[full]
for the best experience.
Unit Tests
As of late October 2019, we have over 70 individual unit tests in the tests/
folder, which are split into several
test_xxxx
files, with each file holding tests for a specific module or smaller area of code. This library
consistently maintains on average 70-80% test coverage, helping to show this package is highly tested to ensure
reliable and robust code.
We use Travis CI for continuous integration, which runs the test
suite every time a new commit, tag, or branch is pushed to this Github repo.
We also use CodeCov which integrates with our Travis CI setup, and
provides test coverage statistics, so ourselves and contributors can visually see how much of the code is covered
by our unit tests
TL;Dr; Run the tests:
pip3 install -r docs/requirements.txt
pytest -v
For more information about using the unit tests, see the
How to use the unit tests section of
the documentation.
Contributing
We're happy to accept pull requests, no matter how small.
Please make sure any changes you make meet these basic requirements:
- No additional dependencies. We want our helper package to be lightweight and painless to install.
- Any code taken from other projects should be compatible with the MIT License
- This is a new project, and as such, supporting Python versions prior to 3.4 is very low priority.
- However, we're happy to accept PRs to improve compatibility with older versions of Python, as long as it doesn't:
- drastically increase the complexity of the code
- OR cause problems for those on newer versions of Python.
Legal Disclaimer for Contributions
Nobody wants to read a long document filled with legal text, so we've summed up the important parts here.
If you contribute content that you've created/own to projects that are created/owned by Privex, such as code or
documentation, then you might automatically grant us unrestricted usage of your content, regardless of the open source
license that applies to our project.
If you don't want to grant us unlimited usage of your content, you should make sure to place your content
in a separate file, making sure that the license of your content is clearly displayed at the start of the file
(e.g. code comments), or inside of it's containing folder (e.g. a file named LICENSE).
You should let us know in your pull request or issue that you've included files which are licensed
separately, so that we can make sure there's no license conflicts that might stop us being able
to accept your contribution.
If you'd rather read the whole legal text, it should be included as privex_contribution_agreement.txt
.
Thanks for reading!
If this project has helped you, consider grabbing a VPS or Dedicated Server from Privex.
Prices start at as little as US$8/mo (we take cryptocurrency!)