No project description provided
Project description
Description
This module contains miscellaneous utility functions that can be applied in a variety of circumstances; there are context managers, membership functions (test if an argument is of a given type), numerical functions, string functions and functions to aid in the unit testing of modules Pytest is the supported test runner
Interpreter
The package has been developed and tested with Python 3.5, 3.6, 3.7 and 3.8 under Linux (Debian, Ubuntu), Apple macOS and Microsoft Windows
Installing
$ pip install pmisc
Documentation
Available at Read the Docs
Contributing
Abide by the adopted code of conduct
Fork the repository from GitHub and then clone personal copy [1]:
$ github_user=myname $ git clone --recurse-submodules \ https://github.com/"${github_user}"/pmisc.git Cloning into 'pmisc'... ... $ cd pmisc || exit 1 $ export PMISC_DIR=${PWD} $
The package uses two sub-modules: a set of custom Pylint plugins to help with some areas of code quality and consistency (under the pylint_plugins directory), and a lightweight package management framework (under the pypkg directory). Additionally, the pre-commit framework is used to perform various pre-commit code quality and consistency checks. To enable the pre-commit hooks:
$ cd "${PMISC_DIR}" || exit 1 $ pre-commit install pre-commit installed at .../pmisc/.git/hooks/pre-commit $
Ensure that the Python interpreter can find the package modules (update the
$PYTHONPATH
environment variable, or use sys.paths(), etc.)$ export PYTHONPATH=${PYTHONPATH}:${PMISC_DIR} $
Install the dependencies (if needed, done automatically by pip):
Cog (2.5.1 or newer)
Coverage (4.5.3 or newer)
Decorator (4.4.0 or newer)
Docutils (0.14 or newer)
Funcsigs (1.0.2 or newer)
Inline Syntax Highlight Sphinx Extension (0.2 or newer)
Mock (2.0.0 or newer)
Numpy (1.16.2 or newer)
Pydocstyle (3.0.0 or newer)
Pylint (2.3.1 or newer)
Pytest (4.3.1 or newer)
Pytest-coverage (2.6.1 or newer)
Pytest-xdist (optional, 1.26.1 or newer)
ReadTheDocs Sphinx theme (0.4.3 or newer)
Shellcheck Linter Sphinx Extension (1.0.8 or newer)
Sphinx (1.8.5 or newer)
Tox (3.7.0 or newer)
Virtualenv (16.4.3 or newer)
Implement a new feature or fix a bug
Write a unit test which shows that the contributed code works as expected. Run the package tests to ensure that the bug fix or new feature does not have adverse side effects. If possible achieve 100% code and branch coverage of the contribution. Thorough package validation can be done via Tox and Pytest:
$ PKG_NAME=pmisc tox GLOB sdist-make: .../pmisc/setup.py py35-pkg create: .../pmisc/.tox/py35 py35-pkg installdeps: -r.../pmisc/requirements/tests_py35.pip, -r.../pmisc/requirements/docs_py35.pip ... py35-pkg: commands succeeded py36-pkg: commands succeeded py37-pkg: commands succeeded py38-pkg: commands succeeded congratulations :) $
Setuptools can also be used (Tox is configured as its virtual environment manager):
$ PKG_NAME=pmisc python setup.py tests running tests running egg_info writing pmisc.egg-info/PKG-INFO writing dependency_links to pmisc.egg-info/dependency_links.txt writing requirements to pmisc.egg-info/requires.txt ... py35-pkg: commands succeeded py36-pkg: commands succeeded py37-pkg: commands succeeded py38-pkg: commands succeeded congratulations :) $
Tox (or Setuptools via Tox) runs with the following default environments: py35-pkg, py36-pkg, py37-pkg and py38-pkg [3]. These use the 3.5, 3.6, 3.7 and 3.8 interpreters, respectively, to test all code in the documentation (both in Sphinx *.rst source files and in docstrings), run all unit tests, measure test coverage and re-build the exceptions documentation. To pass arguments to Pytest (the test runner) use a double dash (--) after all the Tox arguments, for example:
$ PKG_NAME=pmisc tox -e py35-pkg -- -n 4 GLOB sdist-make: .../pmisc/setup.py py35-pkg inst-nodeps: .../pmisc/.tox/.tmp/package/1/pmisc-1.5.12.zip ... py35-pkg: commands succeeded congratulations :) $
Or use the
-a
Setuptools optional argument followed by a quoted string with the arguments for Pytest. For example:$ PKG_NAME=pmisc python setup.py tests -a "-e py35-pkg -- -n 4" running tests ... py35-pkg: commands succeeded congratulations :) $
There are other convenience environments defined for Tox [3]:
py35-repl, py36-repl, py37-repl and py38-repl run the Python 3.5, 3.6, 3.7 and 3.8 REPL, respectively, in the appropriate virtual environment. The pmisc package is pip-installed by Tox when the environments are created. Arguments to the interpreter can be passed in the command line after a double dash (--).
py35-test, py36-test, py37-test and py38-test run Pytest using the Python 3.5, 3.6, 3.7 and 3.8 interpreter, respectively, in the appropriate virtual environment. Arguments to pytest can be passed in the command line after a double dash (--) , for example:
$ PKG_NAME=pmisc tox -e py35-test -- -x test_pmisc.py GLOB sdist-make: .../pmisc/setup.py py35-pkg inst-nodeps: .../pmisc/.tox/.tmp/package/1/pmisc-1.5.12.zip ... py35-pkg: commands succeeded congratulations :) $
py35-test, py36-test, py37-test and py38-test test code and branch coverage using the 3.5, 3.6, 3.7 and 3.8 interpreter, respectively, in the appropriate virtual environment. Arguments to pytest can be passed in the command line after a double dash (--). The report can be found in
${PMISC_DIR}/.tox/py[PV]/usr/share/pmi sc/tests/htmlcov/index.html
where [PV] stands for 3.5, 3.6, 3.7 or 3.8 depending on the interpreter used.
Verify that continuous integration tests pass. The package has continuous integration configured for Linux, Apple macOS and Microsoft Windows (all via Azure DevOps).
Document the new feature or bug fix (if needed). The script
${PMISC_DIR}/pypkg/build_docs.py
re-builds the whole package documentation (re-generates images, cogs source files, etc.):$ "${PMISC_DIR}"/pypkg/build_docs.py -h usage: build_docs.py [-h] [-d DIRECTORY] [-r] [-n NUM_CPUS] [-t] Build pmisc package documentation optional arguments: -h, --help show this help message and exit -d DIRECTORY, --directory DIRECTORY specify source file directory (default ../pmisc) -r, --rebuild rebuild exceptions documentation. If no module name is given all modules with auto-generated exceptions documentation are rebuilt -n NUM_CPUS, --num-cpus NUM_CPUS number of CPUs to use (default: 1) -t, --test diff original and rebuilt file(s) (exit code 0 indicates file(s) are identical, exit code 1 indicates file(s) are different)
Footnotes
License
The MIT License (MIT)
Copyright (c) 2013-2020 Pablo Acosta-Serafini
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. .. CHANGELOG.rst .. Copyright (c) 2013-2020 Pablo Acosta-Serafini .. See LICENSE for details
Changelog
1.5.12 [2020-01-28]: Micro documentation update for correct PyPI rendering
1.5.11 [2020-01-28]: Removed hard-coded aliases of certain APIs, these can be done in the project code that uses the library, using whatever aliases are deemed appropriate for the project
1.5.10 [2020-01-21]: Documentation update
1.5.9 [2020-01-21]: Dropped support for Python 2.7. Added testing for Python 3.8. Fixed CI bugs under Microsoft Windows. Added more granular argument checks in assert_ro_prop API. Fixed bugs with assert_ro_prop API in new(er) Pytest versions
1.5.8 [2019-03-21]: Minor documentation update
1.5.7 [2019-03-21]: Small enhancement to ste API to make it more flexible.
1.5.6 [2019-03-16]: Suppress warnings while extracting exception message
1.5.5 [2019-03-02]: Fixed bug affecting pytest-pmisc plugin
1.5.4 [2019-03-01]: Abstracted package management to a lightweight framework
1.5.3 [2019-02-25]: Package management updates
1.5.2 [2019-02-15]: Continuous integration bug fix
1.5.1 [2019-02-15]: Minor documentation update
1.5.0 [2019-02-15]: Dropped support for Python 2.6, 3.3 and 3.4. Updates to support newest versions of dependencies
1.4.2 [2018-03-01]: Fixed bugs in gcd and per functions which were not correctly handling Numpy data types. Minor code refactoring
1.4.1 [2018-02-18]: Moved traceback shortening functions to test module so as to enable the pytest-pmisc Pytest plugin to shorten the tracebacks of the test module functions in that environment
1.4.0 [2018-02-16]: Shortened traceback of test methods to point only to the line that uses the function that generates the exception
1.3.1 [2018-01-18]: Minor package build fix
1.3.0 [2018-01-18]: Dropped support for Python interpreter versions 2.6, 3.3 and 3.4. Updated dependencies versions to their current versions. Fixed failing tests under newer Pytest versions
1.2.2 [2017-02-09]: Package build enhancements and fixes
1.2.1 [2017-02-07]: Python 3.6 support
1.2.0 [2016-10-28]: Added TmpDir context manager to work with temporary directories
1.1.9 [2016-09-26]: Minor documentation update
1.1.8 [2016-08-27]: Fixed Appveyor-CI failures
1.1.7 [2016-08-24]: Fixed Travis-CI failures
1.1.6 [2016-08-24]: Fixed Py.test 3.0.x-related incompatibilities
1.1.5 [2016-08-24]: assert_exception now prints better message when actual exception is different than expected exception
1.1.4 [2016-08-06]: assert_exception now prints traceback when exception raised is different than expected exception
1.1.3 [2016-06-09]: assert_exception exception message is now not limited to just strings
1.1.2 [2016-06-01]: Fixed continuous integration failures in term_echo function testing
1.1.1 [2016-06-01]: Enhanced TmpFile context manager by allowing positional and keyword arguments to be passed to optional write function
1.1.0 [2016-05-15]: Added incfile, ste and term_echo functions. These produce output marked up in reStructuredText of source files (incfile) or terminal commands (ste, term_echo). All can be used to include relevant information in docstrings to enhance documentation
1.0.5 [2016-05-13]: Minor documentation update
1.0.4 [2016-05-02]: Minor documentation and testing enhancements
1.0.3 [2016-04-26]: Dependencies fixes
1.0.2 [2016-04-26]: Windows continuous integration fixes
1.0.1 [2016-04-26]: Removed dependency on Numpy
1.0.0 [2016-04-23]: Final release of 1.0.0 branch
1.0.0rc1 [2016-04-22]: Initial commit, merges misc and test modules of putil PyPI package
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 Distributions
File details
Details for the file pmisc-1.5.12.zip
.
File metadata
- Download URL: pmisc-1.5.12.zip
- Upload date:
- Size: 413.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.35.0 CPython/3.7.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e161000fe400794737bbd148695cdf4dbffd24f07975cb710110afc911eecf3c |
|
MD5 | b76d7a20bbffe161f85fee6c43fd9e78 |
|
BLAKE2b-256 | ffe0101dfea3c5b9080413359edd028f540e2c5a68fdd452e809cbcffebe3f63 |
File details
Details for the file pmisc-1.5.12-py38-none-any.whl
.
File metadata
- Download URL: pmisc-1.5.12-py38-none-any.whl
- Upload date:
- Size: 31.5 kB
- Tags: Python 3.8
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.35.0 CPython/3.7.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5b6aad2846f9d512a8a7bbf92aad6ad42afee3d7d10db0055a6c66a8695bcbdf |
|
MD5 | 1d5f6590af02a97423e7b028a1335f8e |
|
BLAKE2b-256 | ea1a3581a9c41861c6818b1cdd89757745c3ba3a606cf9377327c425f397d928 |
File details
Details for the file pmisc-1.5.12-py37-none-any.whl
.
File metadata
- Download URL: pmisc-1.5.12-py37-none-any.whl
- Upload date:
- Size: 31.5 kB
- Tags: Python 3.7
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.35.0 CPython/3.7.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 96712cc10dc4caa1ab4d3eec5510bacf6a5297fbfaf5f2d83c36044d0acd3032 |
|
MD5 | d79832e603f63fb493004711ed87df4f |
|
BLAKE2b-256 | 4f38f5f22de20010a47d05295de8e0033790d5a697873fea39b8b0900f01c21e |
File details
Details for the file pmisc-1.5.12-py36-none-any.whl
.
File metadata
- Download URL: pmisc-1.5.12-py36-none-any.whl
- Upload date:
- Size: 31.5 kB
- Tags: Python 3.6
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.35.0 CPython/3.7.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8aa0a13d61dbdafbfb1cc93a90b5c41409e219d31c00e2cafb034682356746f5 |
|
MD5 | 8e837cdeec3e389bc82ad1bccb052d1f |
|
BLAKE2b-256 | 64e8f86bde21fc197af16ccf2045b5f343f63ff384aa2cd311d0e6e119ae54f3 |
File details
Details for the file pmisc-1.5.12-py35-none-any.whl
.
File metadata
- Download URL: pmisc-1.5.12-py35-none-any.whl
- Upload date:
- Size: 31.5 kB
- Tags: Python 3.5
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.35.0 CPython/3.7.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d0915bdc3e72a5e20149f263d623d2c6b4cb501d9598245288e3f1245c5a1abf |
|
MD5 | adefdf8a02334dbeb52c2682d359d284 |
|
BLAKE2b-256 | 2a6d20ace79b957525a94afa2da432ab3b0239a09184a6e3d916c3a77627fd6c |