Skip to main content

No project description provided

Project description

PyPI version License Python versions supported Format

Continuous integration test status Continuous integration test coverage Documentation status

Description

This module can be used to build, handle, process and search tries Interpreter ===========

The package has been developed and tested with Python 2.7, 3.5, 3.6 and 3.7 under Linux (Debian, Ubuntu), Apple macOS and Microsoft Windows

Installing

$ pip install ptrie

Documentation

Available at Read the Docs

Contributing

  1. Abide by the adopted code of conduct

  2. Fork the repository from GitHub and then clone personal copy [1]:

    $ github_user=myname
    $ git clone --recurse-submodules \
          https://github.com/"${github_user}"/ptrie.git
    Cloning into 'ptrie'...
    ...
    $ cd ptrie || exit 1
    $ export PTRIE_DIR=${PWD}
    $
  3. 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 "${PTRIE_DIR}" || exit 1
    $ pre-commit install
    pre-commit installed at .../ptrie/.git/hooks/pre-commit
    $
  4. Ensure that the Python interpreter can find the package modules (update the $PYTHONPATH environment variable, or use sys.paths(), etc.)

    $ export PYTHONPATH=${PYTHONPATH}:${PTRIE_DIR}
    $
  5. Install the dependencies (if needed, done automatically by pip):

  6. Implement a new feature or fix a bug

  7. 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=ptrie tox
    GLOB sdist-make: .../ptrie/setup.py
    py27-pkg create: .../ptrie/.tox/py27
    py27-pkg installdeps: -r.../ptrie/requirements/tests_py27.pip, -r.../ptrie/requirements/docs_py27.pip
    ...
      py27-pkg: commands succeeded
      py35-pkg: commands succeeded
      py36-pkg: commands succeeded
      py37-pkg: commands succeeded
      congratulations :)
    $

    Setuptools can also be used (Tox is configured as its virtual environment manager):

    $ PKG_NAME=ptrie python setup.py tests
    running tests
    running egg_info
    writing ptrie.egg-info/PKG-INFO
    writing dependency_links to ptrie.egg-info/dependency_links.txt
    writing requirements to ptrie.egg-info/requires.txt
    ...
      py27-pkg: commands succeeded
      py35-pkg: commands succeeded
      py36-pkg: commands succeeded
      py37-pkg: commands succeeded
      congratulations :)
    $

    Tox (or Setuptools via Tox) runs with the following default environments: py27-pkg, py35-pkg, py36-pkg and py37-pkg [3]. These use the 2.7, 3.5, 3.6 and 3.7 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=ptrie tox -e py27-pkg -- -n 4
    GLOB sdist-make: .../ptrie/setup.py
    py27-pkg inst-nodeps: .../ptrie/.tox/.tmp/package/1/ptrie-1.1.7.zip
    ...
      py27-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=ptrie python setup.py tests -a "-e py27-pkg -- -n 4"
    running tests
    ...
      py27-pkg: commands succeeded
      congratulations :)
    $

    There are other convenience environments defined for Tox [3]:

    • py27-repl, py35-repl, py36-repl and py37-repl run the Python 2.7, 3.5, 3.6 and 3.7 REPL, respectively, in the appropriate virtual environment. The ptrie 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 (--).

    • py27-test, py35-test, py36-test and py37-test run Pytest using the Python 2.7, 3.5, 3.6 and 3.7 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=ptrie tox -e py27-test -- -x test_ptrie.py
      GLOB sdist-make: .../ptrie/setup.py
      py27-pkg inst-nodeps: .../ptrie/.tox/.tmp/package/1/ptrie-1.1.7.zip
      ...
        py27-pkg: commands succeeded
        congratulations :)
      $
    • py27-test, py35-test, py36-test and py37-test test code and branch coverage using the 2.7, 3.5, 3.6 and 3.7 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 ${PTRIE_DIR}/.tox/py[PV]/usr/share/ptr ie/tests/htmlcov/index.html where [PV] stands for 2.7, 3.5, 3.6 or 3.7 depending on the interpreter used.

  8. Verify that continuous integration tests pass. The package has continuous integration configured for Linux, Apple macOS and Microsoft Windows (all via Azure DevOps).

  9. Document the new feature or bug fix (if needed). The script ${PTRIE_DIR}/pypkg/build_docs.py re-builds the whole package documentation (re-generates images, cogs source files, etc.):

    $ "${PTRIE_DIR}"/pypkg/build_docs.py -h
    usage: build_docs.py [-h] [-d DIRECTORY] [-r]
                         [-n NUM_CPUS] [-t]
    
    Build ptrie package documentation
    
    optional arguments:
      -h, --help            show this help message and exit
      -d DIRECTORY, --directory DIRECTORY
                            specify source file directory
                            (default ../ptrie)
      -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-2019 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-2019 Pablo Acosta-Serafini .. See LICENSE for details

Changelog

  • 1.1.7 [2019-05-30]: Added equality magic method to Trie class

  • 1.1.6 [2019-03-21]: Dependency bug fix

  • 1.1.5 [2019-03-21]: Dependency update

  • 1.1.4 [2019-03-21]: Documentation update

  • 1.1.3 [2019-03-04]: Documentation update

  • 1.1.2 [2019-03-02]: Critical dependencies update

  • 1.1.1 [2019-03-01]: Updated package management framework

  • 1.1.0 [2018-01-18]: Dropped support for Python interpreter versions 2.6, 3.3 and 3.4. Updated dependencies versions to their current versions

  • 1.0.6 [2017-02-09]: Package build enhancements and fixes

  • 1.0.5 [2017-02-07]: Python 3.6 support

  • 1.0.4 [2016-06-11]: Minor documentation build bug fix

  • 1.0.3 [2016-05-13]: Documentation update

  • 1.0.2 [2016-05-11]: Documentation update

  • 1.0.1 [2016-05-02]: Minor documentation and testing enhancements

  • 1.0.0 [2016-04-25]: Final release of 1.0.0 branch

  • 1.0.0rc1 [2016-04-25]: Initial commit, forked off putil PyPI package

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

ptrie-1.1.7.zip (391.2 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

ptrie-1.1.7-py37-none-any.whl (15.2 kB view details)

Uploaded Python 3.7

ptrie-1.1.7-py36-none-any.whl (20.9 kB view details)

Uploaded Python 3.6

ptrie-1.1.7-py35-none-any.whl (20.9 kB view details)

Uploaded Python 3.5

ptrie-1.1.7-py27-none-any.whl (20.9 kB view details)

Uploaded Python 2.7

File details

Details for the file ptrie-1.1.7.zip.

File metadata

  • Download URL: ptrie-1.1.7.zip
  • Upload date:
  • Size: 391.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.19.4 CPython/2.7.13

File hashes

Hashes for ptrie-1.1.7.zip
Algorithm Hash digest
SHA256 caf277ba6e6ea1e50a574e975c444845581f45d70fafd8b5bb805225c78441c3
MD5 ebdc7a4d9325ab39a87a32778013cc57
BLAKE2b-256 f9d26d197309f42df0c3ec0ec85ae90f73cd4d964c95aa92c01de642e7e1de63

See more details on using hashes here.

File details

Details for the file ptrie-1.1.7-py37-none-any.whl.

File metadata

  • Download URL: ptrie-1.1.7-py37-none-any.whl
  • Upload date:
  • Size: 15.2 kB
  • Tags: Python 3.7
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.19.4 CPython/2.7.13

File hashes

Hashes for ptrie-1.1.7-py37-none-any.whl
Algorithm Hash digest
SHA256 e7191f741015956b342f0fbde71462cbccfce602e4ad3b56ae81b4b22817d9ee
MD5 ebe64f20fa985be8fec48a370ff02ba5
BLAKE2b-256 34db5fe23888c3f79cb69b9c1918d76a0ac5ac68b523df8382cd958b476e7cd7

See more details on using hashes here.

File details

Details for the file ptrie-1.1.7-py36-none-any.whl.

File metadata

  • Download URL: ptrie-1.1.7-py36-none-any.whl
  • Upload date:
  • Size: 20.9 kB
  • Tags: Python 3.6
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.19.4 CPython/2.7.13

File hashes

Hashes for ptrie-1.1.7-py36-none-any.whl
Algorithm Hash digest
SHA256 613ace810b944e5f4efc50b6cbb5352f247ca46eba2b8c680cd76017c810cd03
MD5 e8fcdd482918816358346e5c4db73d5b
BLAKE2b-256 9d9c770f4c61535da9bc6882490365a07cc9d5c6c37e7054773a93da8a4f1bcc

See more details on using hashes here.

File details

Details for the file ptrie-1.1.7-py35-none-any.whl.

File metadata

  • Download URL: ptrie-1.1.7-py35-none-any.whl
  • Upload date:
  • Size: 20.9 kB
  • Tags: Python 3.5
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.19.4 CPython/2.7.13

File hashes

Hashes for ptrie-1.1.7-py35-none-any.whl
Algorithm Hash digest
SHA256 a5f05947c39e14bc865bbd0db013e715492c589b3fcc7bd4151e13f54049befa
MD5 07fc0e2832ce27a6d945acafd5893d32
BLAKE2b-256 1596d717e879f42480164af9c2fd7f9af675c03fb6f5bac514b68145ef87a455

See more details on using hashes here.

File details

Details for the file ptrie-1.1.7-py27-none-any.whl.

File metadata

  • Download URL: ptrie-1.1.7-py27-none-any.whl
  • Upload date:
  • Size: 20.9 kB
  • Tags: Python 2.7
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.19.4 CPython/2.7.13

File hashes

Hashes for ptrie-1.1.7-py27-none-any.whl
Algorithm Hash digest
SHA256 8955d63b6061f7795f5d6006a709818dd77046120132bb33749e7e6f72e249b7
MD5 1d7a6f15b66772905d6a2de9773d5cb0
BLAKE2b-256 89513487c3398b4de9913405fa76c5cd160870441faaa191b726e82533974e0c

See more details on using hashes here.

Supported by

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