{ "info": { "author": "Chris (Someguy123) @ Privex", "author_email": "chris@privex.io", "bugtrack_url": null, "classifiers": [ "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8" ], "description": "# Privex's Python Helpers\n\n[![Documentation Status](https://readthedocs.org/projects/python-helpers/badge/?version=latest)](https://python-helpers.readthedocs.io/en/latest/?badge=latest) \n[![Build Status](https://travis-ci.com/Privex/python-helpers.svg?branch=master)](https://travis-ci.com/Privex/python-helpers) \n[![Codecov](https://img.shields.io/codecov/c/github/Privex/python-helpers)](https://codecov.io/gh/Privex/python-helpers)\n[![PyPi Version](https://img.shields.io/pypi/v/privex-helpers.svg)](https://pypi.org/project/privex-helpers/)\n![License Button](https://img.shields.io/pypi/l/privex-helpers) \n![PyPI - Downloads](https://img.shields.io/pypi/dm/privex-helpers)\n![PyPI - Python Version](https://img.shields.io/pypi/pyversions/privex-helpers) \n![GitHub last commit](https://img.shields.io/github/last-commit/Privex/python-helpers)\n\nThis small Python 3 module is comprised of various small functions and classes that were often\ncopied and pasted across our projects.\n\nEach of these \"helper\" functions, decorators or classes are otherwise too small to be independently\npackaged, and so we've amalgamated them into this PyPi package, `privex-helpers`.\n\n\n```\n +===================================================+\n | \u00a9 2019 Privex Inc. |\n | https://www.privex.io |\n +===================================================+\n | |\n | Originally Developed by Privex Inc. |\n | |\n | Core Developer(s): |\n | |\n | (+) Chris (@someguy123) [Privex] |\n | (+) Kale (@kryogenic) [Privex] |\n | |\n +===================================================+\n```\n\n# Tl;Dr; Install and use Privex Helpers\n\nInstall from PyPi (detailed install info at [Install](#Install) and [Using package extras](#minimal-dependencies))\n\n```sh\npipenv install privex-helpers # If you use pipenv (and you should!)\npip3 install privex-helpers # Otherwise, standard pip installation\n\n# If you're using privex-helpers in a project, then you may want to install with the \"full\" extras\n# which installs all optional requirements (other than Django/tests), so you can use **everything** in privex-helpers\npipenv install 'privex-helpers[full]' # If you use pipenv (and you should!)\npip3 install 'privex-helpers[full]' # Otherwise, standard pip installation\n```\n\nVery import and basic usage (detailed examples at [Example Uses](#example-uses))\n\n```python\nfrom privex.helpers import is_true, empty\nif is_true('yes'):\n print('yes is truthful')\n\nif empty(''):\n print(\"'' is empty\")\n```\n\n# Table of Contents (Github README)\n\n**NOTE:** The below Table of Contents is designed to work on Github. The links do NOT work on PyPi's description,\nand may not work if you're reading this README.md elsewhere.\n\n\n1. [Why use Privex Helpers?](#why-use-privex-helpers)\n\n 1.1. [Lightweight](#lightweight)\n\n 1.2. [Keeps your code DRY (Don't repeat yourself!)](#keeps-your-code-dry-dont-repeat-yourself)\n\n 1.3. [Makes your life just plain easier](#makes-your-life-just-plain-easier)\n\n 1.4. [Thorough unit tests](#thorough-unit-tests)\n\n 1.5. [Overview of what's included](#overview-of-whats-included)\n\n2. [Install](#Install)\n\n 2.1 [Via PyPi (pip)](#download-and-install-from-pypi)\n\n 2.2 [Manually via Git](#alternative-manual-install-from-git)\n\n3. [Documentation](#documentation)\n4. [License](#License)\n5. [Example Uses](#example-uses)\n6. [Minimal Dependencies / Using package extras](#minimal-dependencies)\n\n 6.1 [Modules with dependencies](#modules-with-dependencies)\n\n 6.2 [Using Setuptools Extras](#using-setuptools-extras)\n\n 6.3 [Installing extras when using the cloned repository](#installing-extras-when-using-the-cloned-repository)\n\n7. [Unit Tests](#unit-tests)\n8. [Contributing](#contributing)\n\n\n# Why use Privex Helpers?\n\nPrivex helpers was created with a very simple goal in mind: make developing Python applications easy, fun, simple,\nand **painless**.\n\n### Lightweight\n\nWhether you're using it in a library, or in your project, you'll be pleased to know that the `privex-helpers` and\nall of it's *required dependencies* make up less than **200kb total**. For comparison, the `Django` package alone\n(that's excluding it's dependencies) is a whopping 26 MEGABYTES.\n\nMost of `privex-helpers` can be used without any additional dependencies. Some modules, or parts of modules\nmay require a certain dependency, but will cleanly disable themselves if the necessary dependency isn't available.\n\nSee [Modules with dependencies](#modules-with-dependencies) to see which modules only work if you have a certain\npackage installed, and modules which are dependency-free but enable additional functionality if you install\nextra packages.\n\n### Keeps your code DRY (Don't repeat yourself!)\n\nTired of writing those same long `if` statements to check if a user entered value was some sort-of boolean value?\nUse `is_true` and `is_false` - trim those long if statements into a single function call. Less typing, and more \nreadable.\n\n### Makes your life just plain easier\n\nWriting a library and need caching? Not sure whether you should just force your users to use Redis, whether you\nshould just make this a Django plugin, or write some sort-of rudimentary caching system yourself? `privex-helpers`\nincludes a modular caching abstraction layer that Just Works\u2122 out of the box, without forcing tons of dependencies on\nyour users.\n\nMaybe you just need to encrypt a string, or generate an RSA keypair. But you tried taking a look at the\npopular [cryptography](https://cryptography.io/en/latest/) package docs, and it looks like you're going to be writing\nscaffolding code for hours just to do that... Say hello to `privex.helpers.crypto` - whether you're dealing with\nsymmetric or asymmetric encryption, it's just **one import line, a few lines of code and you're DONE.**\n\n### Thorough unit tests\n\nIncluded in the `tests/` folder, is a collection of over 70 individual unit tests, which is constantly\nhaving more unit tests added over time.\n\nThis project uses Travis for continuous integration (automatic testing with each commit), and CodeCov keeping\ntrack of how much of the codebase is covered by unit tests. See [Unit Tests](#unit-tests) for more details. \n\nThis ensures that `privex-helpers` is reliable and robust - if a part of the library is broken with a new update,\nthen we'll be alerted shortly after pushing out the update that our tests are failing, so we can fix the issue ASAP.\n\n### Overview of what's included\n\nThis is not an exhaustive list, and may sometimes be a little outdated. To see everything that's available in\n`privex-helpers` then check out the [Documentation](https://python-helpers.readthedocs.io/en/latest/index.html).\n\n - `common` - a melting pot of functions and classes that will generally just make developing python code 100x easier, \n and make it 10x more readable. some of the most useful include:\n - `empty` - checking if a value is \"empty\", e.g. `None`, `''`, `0`, `'0'`, `[]` etc.\n - `is_true` - fuzzy \"true\" testing, checks for common forms of true, e.g. `True`, `\"true\"`, `\"yes\"`, `1`\n - `is_false` - fuzzy \"false\" testing, checks for common forms of false, e.g. `False`, `\"false\"`, `\"no\"`, `0`\n - `env_csv` - load an environment variable like a CSV, allowing for list representation in env vars\n - `env_keyval` - load an environment variable like a key value map, allowing for tuple pair / dict \n representation in env vars\n - `dec_round` - round a python `Decimal` using the built-in Quantize method, but without the hassle.\n - `Dictable` - easily create your Python 3.7 `dataclass` from a dictionary, plus enable them to be casted\n into a plain dict using `dict(mydataclass)`\n - and MORE, check the [documentation!](https://python-helpers.readthedocs.io/en/latest/helpers/privex.helpers.common.html)\n\n - `cache` - a dependency-free, framework agnostic caching layer, with support for:\n - automatic timeouts\n - ability to extend the timeout of a cache item (even after it's already \"expired\" on some cache adapters)\n - get_or_set with callback function/method support\n - can optionally use Redis if you'd prefer (requires an optional dependency)\n\n - `crypto` - classes which make both symmetric and asymmetric encryption extremely easy to use\n - `EncryptHelper` - for symmetric AES-128 encryption / decryption with a shared key, with the ability to generate \n either a secure random shared key, or a shared key generated from a password + salt\n - `KeyManager` - for asymmetric signing / verification, plus encryption/decryption if you use RSA. supports \n generating/loading RSA, ECDSA, and Ed25519 keys, as well as outputting them in a variety of formats \n and encodings.\n\n - `setuppy` - a module with various functions to help with making python packages or dealing with \n requirements.txt files\n - `common.extras_require` - A helper function which allows you to generate an `extras_require` setting in\n setup.py simply by passing a list of extras names, e.g. `extras_require=extras_require(['cache', 'net']),`\n - `bump.bump_version` - Bumps a certain part of a package's semver version number and updates the file containing\n the version\n - `commands.BumpCommand` - A setup.py command class, which allows you to use `bump.bump_version` within\n your package, just by typing a command such as `./setup.py bump --minor` (bumps your package's minor 0.x.0\n version and updates the file which contains the version)\n - `commands.ExtrasCommand` - Exposes various functionality for managing `extras_require` in your package,\n including easily generating/saving requirements.txt files for your extras, installing the requirements, \n and outputting a list of extras.\n\n - `decorators` - various decorators to simplify your code\n - `retry_on_err` - automatically re-run a function/method when exceptions are thrown, with a variety of\n customization available\n - `r_cache` - automatic caching of a function/property, with support for caching based on parameters or a lambda\n\n - `net` - various networking functions, including:\n - handling IP addresses\n - generating reverse DNS records\n - looking up ASN names based on their number\n - checking if an IP is up (via ping) - with both IPv4 and IPv6 support\n\n - `asyncx` - various async helper functions, to help synchronous code play nicely with async code\n - `django` various Django helper functions, most of which you'll probably question \"why is this not built into django?\" \n - `exceptions` - various exception classes, most of which are used by privex-helpers functions/classes, but can be \n used in any python project to save you re-inventing an exception name\n\n\n\n\n\n\n# Install\n\n### Download and install from PyPi \n\n**Using [Pipenv](https://pipenv.kennethreitz.org/en/latest/) (recommended)**\n\n```sh\npipenv install privex-helpers\n```\n\n**Using standard Python pip** \n\n```sh\npip3 install privex-helpers\n```\n\n### (Alternative) Manual install from Git\n\n**Option 1 - Use pip to install straight from Github**\n\n```sh\npip3 install git+https://github.com/Privex/python-helpers\n```\n\n**Option 2 - Clone and install manually**\n\n```bash\n# Clone the repository from Github\ngit clone https://github.com/Privex/python-helpers\ncd python-helpers\n\n# RECOMMENDED MANUAL INSTALL METHOD\n# Use pip to install the source code\npip3 install .\n\n# ALTERNATIVE MANUAL INSTALL METHOD\n# If you don't have pip, or have issues with installing using it, then you can use setuptools instead.\npython3 setup.py install\n```\n\n# Documentation\n\n[![Read the Documentation](https://read-the-docs-guidelines.readthedocs-hosted.com/_images/logo-wordmark-dark.png)](\nhttps://python-helpers.readthedocs.io/en/latest/)\n\nFull documentation for this project is available above (click the Read The Docs image), including:\n\n - How to install the application and it's dependencies \n - How to use the various functions and classes\n - General documentation of the modules and classes for contributors\n\n**To build the documentation:**\n\n```bash\ngit clone https://github.com/Privex/python-helpers\ncd python-helpers/docs\npip3 install -r requirements.txt\n\n# It's recommended to run make clean to ensure old HTML files are removed\n# `make html` generates the .html and static files in docs/build for production\nmake clean && make html\n\n# After the files are built, you can live develop the docs using `make live`\n# then browse to http://127.0.0.1:8100/\n# If you have issues with content not showing up correctly, try make clean && make html\n# then run make live again.\nmake live\n```\n\n# License\n\nThis Python module was created by [Privex Inc. of Belize City](https://www.privex.io), and licensed under the X11/MIT License.\nSee the file [LICENSE](https://github.com/Privex/python-helpers/blob/master/LICENSE) for the license text.\n\n**TL;DR; license:**\n\nWe offer no warranty. You can copy it, modify it, use it in projects with a different license, and even in commercial (paid for) software.\n\nThe most important rule is - you **MUST** keep the original license text visible (see `LICENSE`) in any copies.\n\n# Example uses\n\nWe export all of the submodule's contents in `privex/helpers/__init__.py`, so you can import any \nfunction/class/attribute straight from `privex.helper` without needing several import lines.\n\nHere are some of the most useful examples (part of our `.common` module, no dependencies)\n\n```python\nfrom privex.helpers import empty, is_true, random_str, ip_is_v4, ip_is_v6\n\n####\n# Our empty() helper is very convenient and easy to remember. It allows you to quick check if a variable is \"empty\" \n# (a blank string, None, zero, or an empty list/dict/tuple).\n#\n# empty(v, zero: bool = False, itr: bool = False) -> bool\n#\n# For safety, it only returns True for empty iterables / integer zero (0) if you enable `zero` and/or `itr` respectively.\n####\n\nx = ''\nif empty(x):\n print('Var x is empty: either None or empty string')\n\ny = []\nif empty(y, itr=True):\n print('Var y is empty: either None, empty string, or empty iterable')\n\n####\n# Our is_true() / is_false() helpers are designed to ease checking boolean values from plain text config files\n# such as .env files, or values passed in an API call\n####\n\n# The strings 'true' / 'y' / 'yes' / '1' are all considered truthy, plus int 1 / bool True\nenable_x = 'YES' # String values are automatically cast to lowercase, so even 'YeS' and 'TrUe' are fine.\nif is_true(enable_x):\n print('Enabling feature X')\n\n####\n# Need to generate a random alphanumeric string for a password / API key? Try random_str(), which uses SystemRandom()\n# for cryptographically secure randomness, and by default uses our SAFE_CHARS character set, removing look-alike \n# characters such as 1 and l, or o and 0\n####\n\n# Default random string - 50 character alphanum without easily mistaken chars\nrandom_str() # outputs: 'MrCWLYMYtT9A7bHc5ZNE4hn7PxHPmsWaT9GpfCkmZASK7ApN8r'\n\n# Customised random string - 12 characters using only the characters `abcdef12345` \nrandom_str(12, chars='abcdef12345') # outputs: 'aba4cc14a43d'\n\n####\n# As a server hosting provider, we deal with IP addresses a lot :)\n# The helper functions ip_is_v4 and ip_is_v6 do exactly as their name says, they return a boolean\n# if an IP is IPv4 or IPv6 respectively.\n####\n\nip_is_v4('192.168.1.1') # True\nip_is_v4('2a07:e00::1') # False\n\nip_is_v6('192.168.1.1') # False\nip_is_v6('2a07:e00::1') # True\n\n```\n\n# Minimal dependencies\n\nMost of our helper code is independent, and does not result in any extra dependencies being installed. \n\nSome of our helpers are dependant on external libraries or frameworks, such as Django or Flask. To avoid\nlarge Python packages such as Django being installed needlessly, we programatically enable/disable some\nof the helpers based on whether you have the required dependency installed.\n\nThis package only requires (and automatically installs if needed) a single dependency - our \n[privex-loghelper](https://github.com/Privex/python-loghelper) package, which itself is lightweight\nand dependency free.\n\n### Using Setuptools Extras\n\nAs of version 2.0.0 - Privex Helpers now supports **Setuptools Extras**, allowing you\nto specify extra dependencies related to privex-helpers in your requirements.txt, or when running\n**pip3 install**.\n\n**What is each extra for?**\n\nExtras designed for using the `privex-helpers` package in a project/package:\n\n - **full** - A meta-extra which includes most other extras required for full functionality of the library.\n - It does **NOT** include the `django` extra, because the `Django` package and it's sub-dependencies results in\n a good 30-50mb of packages being installed, and those who would use the `django` module probably already \n have `Django` installed...\n - It does **NOT** include the `docs` or `tests` extras, as those two are only required for building the\n documentation, or running the unit tests.\n - **crypto** - Install dependencies required to use the `crypto` module\n - **cache** - Install optional dependencies to enable all cache backends in `cache`\n - **django** - Install dependencies related to the `django` module (including `Django` itself)\n - **net** - Install optional dependencies to enable full functionality of the `net` module\n - **setuppy** - Install optional dependencies to enable full functionality of the `setuppy` modules\n\nExtras designed for use when developing, testing, documenting, or building `privex-helpers`:\n\n - **dev** - Includes everything required for development and related activities with `privex-helper`.\n Generally includes ALL extras, unlike `full` this includes `django`, `docs` and `tests`\n - **docs** - This extra is not required for privex-helpers modules. It contains requirements for building the docs.\n - **tests** - Not required for privex-helpers module usage. Contains requirements for running the unit tests.\n\n**Using the extras with pip install**\n\n```\n# Example: Install privex-helpers AND all optional dependencies (excluding django), for full functionality\npip3 install 'privex-helpers[full]'\n\n# Example: Install privex-helpers with only the crypto and cache module dependencies\npip3 install 'privex-helpers[cache,crypto]'\n\n# Example: Install just privex-helpers and REQUIRED dependencies (i.e. critical to basic functionality)\npip3 install privex-helpers\n```\n\n\nAlternatively, just `pip3 install` extra packages depending on the helpers you require:\n\n```\n# For all Django-specific helpers in privex.helpers.django\nDjango\n# For certain DNS dependant helpers in privex.helpers.net\ndnspython>=1.16.0\n# For using Redis with the privex.helpers.cache module\nredis>=3.3.8\n# For using the privex.helpers.crypto module\ncryptography>=2.8\n```\n\n### Installing extras when using the cloned repository\n\nFirst, it's recommended to install the requirements in `extras/setuppy.txt` to ensure setup.py functions fully.\n\n```bash\npip3 install -r extras/setuppy.txt\n```\n\nAs of privex-helpers 2.1.0, you can use the handy setup.py `extras` command to install individual extras requirements,\nor all extra requirements painlessly:\n\n```bash\n# Install ALL extras requirements (including Django and unit testing related)\n./setup.py extras -i\n\n# Install an individual extras requirements, for example 'cache' or 'net'\n./setup.py extras -i -e cache\n```\n\nIf you just want to install the `privex-helpers` package from source, then you can use pip to install\nthe current folder, and specify the extras you want:\n\n```bash\n# Standard \"full\" install, excluding Django and development packages for docs/testing\npip3 install '.[full]'\n# Full development installation, includes everything in 'full', with the addition of the django, docs, and tests extras\npip3 install '.[dev]'\n``` \n\n### Modules with dependencies\n\nIf you're using `privex-helpers` within a normal project (not a package), then it's recommended to simply\ninstall `privex-helpers[full]` which includes all main dependencies for full functionality. \n\nIf you're using it inside of a package, then you should only require the extras that are critical to your package\nfunctioning. Anything non-essential should be placed in the `extras_require` of your setup.py to avoid \nun-necessary packages being installed on your users.\n\n\n**Modules which require a dependency to use them**\n\n - `crypto` - This module won't work at all without the `cryptography` library (or `privex-helpers[crypto]`)\n - `django` - Django related helpers obviously don't work without `Django` installed. But since they're intended\n for use within a Django project, you'd already have `Django` installed anyway if you needed them :)\n\n**Dynamic modules which simply enable additional features if you install certain packages**\n\n - `setuppy` - The `common` sub-module should generally work without any dependencies, but to be able to use all \n functionality of this module such as the `bump` and `commands` sub-modules, you'll need to install with the\n `setuppy` extra, e.g. `privex-helpers[setuppy]`\n - `net` - Some functions are dependent on `dnspython` (or `privex-helpers[net]`), but the majority of the module \n is dependency-free\n - `cache` - The cache layer works just fine without any dependencies. If you're using `privex-helper` within a project,\n then you may want to install `redis` (or `privex-helpers[cache]`) to make the Redis cache adapter available.\n - `plugin` - While this module isn't very often used within other projects/packages, it does expose some\n Redis singleton management functions (and possibly others at the time of writing). If you plan on using\n this module, we recommend using `privex-helpers[full]` for the best experience.\n\n\n# Unit Tests\n\nAs of late October 2019, we have over 70 individual unit tests in the `tests/` folder, which are split into several\n`test_xxxx` files, with each file holding tests for a specific module or smaller area of code. This library \nconsistently maintains on average 70-80% test coverage, helping to show this package is highly tested to ensure\nreliable and robust code.\n\nWe use [Travis CI](https://travis-ci.com/Privex/python-helpers) for continuous integration, which runs the test\nsuite every time a new commit, tag, or branch is pushed to this Github repo.\n\nWe also use [CodeCov](https://codecov.io/gh/Privex/python-helpers) which integrates with our Travis CI setup, and\nprovides test coverage statistics, so ourselves and contributors can visually see how much of the code is covered\nby our unit tests \n\nTL;Dr; Run the tests:\n\n```\npip3 install -r docs/requirements.txt\npytest -v\n```\n\nFor more information about using the unit tests, see the \n[How to use the unit tests](https://python-helpers.readthedocs.io/en/latest/helpers/tests.html) section of \nthe documentation. \n\n# Contributing\n\nWe're happy to accept pull requests, no matter how small.\n\nPlease make sure any changes you make meet these basic requirements:\n\n - No additional dependencies. We want our helper package to be lightweight and painless to install.\n - Any code taken from other projects should be compatible with the MIT License\n - This is a new project, and as such, supporting Python versions prior to 3.4 is very low priority.\n - However, we're happy to accept PRs to improve compatibility with older versions of Python, as long as it doesn't:\n - drastically increase the complexity of the code\n - OR cause problems for those on newer versions of Python.\n\n**Legal Disclaimer for Contributions**\n\nNobody wants to read a long document filled with legal text, so we've summed up the important parts here.\n\nIf you contribute content that you've created/own to projects that are created/owned by Privex, such as code or \ndocumentation, then you might automatically grant us unrestricted usage of your content, regardless of the open source \nlicense that applies to our project.\n\nIf you don't want to grant us unlimited usage of your content, you should make sure to place your content\nin a separate file, making sure that the license of your content is clearly displayed at the start of the file \n(e.g. code comments), or inside of it's containing folder (e.g. a file named LICENSE). \n\nYou should let us know in your pull request or issue that you've included files which are licensed\nseparately, so that we can make sure there's no license conflicts that might stop us being able\nto accept your contribution.\n\nIf you'd rather read the whole legal text, it should be included as `privex_contribution_agreement.txt`.\n\n\n# Thanks for reading!\n\n**If this project has helped you, consider [grabbing a VPS or Dedicated Server from Privex](https://www.privex.io).**\n\n**Prices start at as little as US$8/mo (we take cryptocurrency!)**\n\n\n", "description_content_type": "text/markdown", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/Privex/python-helpers", "keywords": "", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "privex-helpers", "package_url": "https://pypi.org/project/privex-helpers/", "platform": "", "project_url": "https://pypi.org/project/privex-helpers/", "project_urls": { "Homepage": "https://github.com/Privex/python-helpers" }, "release_url": "https://pypi.org/project/privex-helpers/3.2.1/", "requires_dist": [ "privex-loghelper (>=1.0.4)", "python-dateutil", "sniffio", "async-property", "attrs", "redis (>=3.3) ; extra == 'cache'", "aioredis (>=1.3) ; extra == 'cache'", "hiredis ; extra == 'cache'", "pylibmc (>=1.6.0) ; extra == 'cache'", "aiomcache (>=0.6) ; extra == 'cache'", "privex-db (>=0.9.2) ; extra == 'cache'", "aiosqlite (>=0.12) ; extra == 'cache'", "cryptography (>=2.8) ; extra == 'crypto'", "redis (>=3.3) ; extra == 'dev'", "aioredis (>=1.3) ; extra == 'dev'", "hiredis ; extra == 'dev'", "pylibmc (>=1.6.0) ; extra == 'dev'", "aiomcache (>=0.6) ; extra == 'dev'", "privex-db (>=0.9.2) ; extra == 'dev'", "aiosqlite (>=0.12) ; extra == 'dev'", "dnspython (>=1.16) ; extra == 'dev'", "geoip2 (>=3.0.0) ; extra == 'dev'", "attrs ; extra == 'dev'", "cryptography (>=2.8) ; extra == 'dev'", "setuptools ; extra == 'dev'", "wheel ; extra == 'dev'", "twine ; extra == 'dev'", "semver ; extra == 'dev'", "Django ; extra == 'dev'", "Sphinx (>=3.1.1) ; extra == 'dev'", "sphinx-autobuild (>=0.7.1) ; extra == 'dev'", "restructuredtext-lint (>=1.3.0) ; extra == 'dev'", "sphinx-rtd-theme (>=0.5.0) ; extra == 'dev'", "MarkupSafe (>=1.1.1) ; extra == 'dev'", "docutils (>=0.14) ; extra == 'dev'", "pytest (==5.4.*) ; extra == 'dev'", "pytest-cov ; extra == 'dev'", "pytest-asyncio (==0.14.*) ; extra == 'dev'", "coverage ; extra == 'dev'", "codecov ; extra == 'dev'", "mypy (>=0.780) ; extra == 'dev'", "jupyter ; extra == 'dev'", "mypy (>=0.780) ; extra == 'dev_general'", "jupyter ; extra == 'dev_general'", "Django ; extra == 'django'", "Sphinx (>=3.1.1) ; extra == 'docs'", "sphinx-autobuild (>=0.7.1) ; extra == 'docs'", "restructuredtext-lint (>=1.3.0) ; extra == 'docs'", "sphinx-rtd-theme (>=0.5.0) ; extra == 'docs'", "MarkupSafe (>=1.1.1) ; extra == 'docs'", "docutils (>=0.14) ; extra == 'docs'", "attrs ; extra == 'extras'", "redis (>=3.3) ; extra == 'full'", "aioredis (>=1.3) ; extra == 'full'", "hiredis ; extra == 'full'", "pylibmc (>=1.6.0) ; extra == 'full'", "aiomcache (>=0.6) ; extra == 'full'", "privex-db (>=0.9.2) ; extra == 'full'", "aiosqlite (>=0.12) ; extra == 'full'", "dnspython (>=1.16) ; extra == 'full'", "geoip2 (>=3.0.0) ; extra == 'full'", "attrs ; extra == 'full'", "cryptography (>=2.8) ; extra == 'full'", "setuptools ; extra == 'full'", "wheel ; extra == 'full'", "twine ; extra == 'full'", "semver ; extra == 'full'", "geoip2 (>=3.0.0) ; extra == 'geoip'", "attrs ; extra == 'geoip'", "dnspython (>=1.16) ; extra == 'net'", "geoip2 (>=3.0.0) ; extra == 'net'", "attrs ; extra == 'net'", "setuptools ; extra == 'setuppy'", "wheel ; extra == 'setuppy'", "twine ; extra == 'setuppy'", "semver ; extra == 'setuppy'", "pytest (==5.4.*) ; extra == 'tests'", "pytest-cov ; extra == 'tests'", "pytest-asyncio (==0.14.*) ; extra == 'tests'", "coverage ; extra == 'tests'", "codecov ; extra == 'tests'" ], "requires_python": "", "summary": "A variety of helper functions and classes, useful for many different projects", "version": "3.2.1", "yanked": false, "yanked_reason": null }, "last_serial": 8557230, "releases": { "1.0.0": [ { "comment_text": "", "digests": { "md5": "1cdf2e783b6a1725a01531647a9bcf49", "sha256": "9fd7c6171a0f0eafe319e308996e92d681e38c93d96245fd8c22a5990615aabd" }, "downloads": -1, "filename": "privex_helpers-1.0.0-py3-none-any.whl", "has_sig": false, "md5_digest": "1cdf2e783b6a1725a01531647a9bcf49", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 17897, "upload_time": "2019-06-18T01:24:10", "upload_time_iso_8601": "2019-06-18T01:24:10.645199Z", "url": "https://files.pythonhosted.org/packages/62/f7/d361ec86fcbed6d64d9746a2c74a732750d118473cf3bb64fd4f837bc974/privex_helpers-1.0.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2eeae9428290fc5395772f8e93235340", "sha256": "0574742d199cea5710da8f54d5008a02ce98af72f27a0f8c04374c637986f992" }, "downloads": -1, "filename": "privex_helpers-1.0.0.tar.gz", "has_sig": false, "md5_digest": "2eeae9428290fc5395772f8e93235340", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14387, "upload_time": "2019-06-18T01:24:13", "upload_time_iso_8601": "2019-06-18T01:24:13.102461Z", "url": "https://files.pythonhosted.org/packages/aa/ee/809184ffcf17b317fa2fd41fbcfd77d41df7711ac74884acfbb2145a75f7/privex_helpers-1.0.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "e906cd82538adf9eb895db8ed1fd4431", "sha256": "cbb3b1909df59cd80c47022386e05ddf5961170b31494765264d4d3a278a5e70" }, "downloads": -1, "filename": "privex_helpers-1.0.1-py3-none-any.whl", "has_sig": false, "md5_digest": "e906cd82538adf9eb895db8ed1fd4431", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 18801, "upload_time": "2019-06-18T04:46:55", "upload_time_iso_8601": "2019-06-18T04:46:55.601022Z", "url": "https://files.pythonhosted.org/packages/5d/52/38acf12903a3fb965523a90127b1a1786e90cd341386af760ad1dc7ed0be/privex_helpers-1.0.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "34ff8b2639c9fb6d91f107f73df0828f", "sha256": "01c08ab0011c720eb46d38af6afc538fc1b149d72803200886186164cf818d63" }, "downloads": -1, "filename": "privex_helpers-1.0.1.tar.gz", "has_sig": false, "md5_digest": "34ff8b2639c9fb6d91f107f73df0828f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15183, "upload_time": "2019-06-18T04:46:58", "upload_time_iso_8601": "2019-06-18T04:46:58.119029Z", "url": "https://files.pythonhosted.org/packages/03/64/d75c279a2ac5056b5a032afa52ef42ed3940347d696d0cc1beaeab00a8ca/privex_helpers-1.0.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.2": [ { "comment_text": "", "digests": { "md5": "e255beef192ceb542d01bd020698b532", "sha256": "5534c49321f21264a407993b8fbeaf68ce5cacb09ef5f15df2f7fb10bee595fa" }, "downloads": -1, "filename": "privex_helpers-1.0.2-py3-none-any.whl", "has_sig": false, "md5_digest": "e255beef192ceb542d01bd020698b532", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 18798, "upload_time": "2019-06-18T07:21:42", "upload_time_iso_8601": "2019-06-18T07:21:42.625228Z", "url": "https://files.pythonhosted.org/packages/12/e9/fac6f2d7f175469b05d2547711df2d1c6e651cb3a13ec21acbe9f9170f7c/privex_helpers-1.0.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3e8ce158fe87753e8ea6eac0dfaeed65", "sha256": "c21e6dfddc490df935144a410e6c98431a0a25d401311c6dfec2fda34194e70a" }, "downloads": -1, "filename": "privex_helpers-1.0.2.tar.gz", "has_sig": false, "md5_digest": "3e8ce158fe87753e8ea6eac0dfaeed65", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15167, "upload_time": "2019-06-18T07:21:45", "upload_time_iso_8601": "2019-06-18T07:21:45.914309Z", "url": "https://files.pythonhosted.org/packages/75/ba/2296d8590fa94c9f21bc68534b687c404716bbd21318c02dbcac827908c0/privex_helpers-1.0.2.tar.gz", "yanked": false, "yanked_reason": null } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "36b6001590d457d3f399470242d749e7", "sha256": "697b5c541b792afe7e95d5492fd91e5af9e90e2f0f8819ab3bcccf6c4f6f32c5" }, "downloads": -1, "filename": "privex_helpers-1.1.0-py3-none-any.whl", "has_sig": false, "md5_digest": "36b6001590d457d3f399470242d749e7", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 22348, "upload_time": "2019-06-22T07:29:07", "upload_time_iso_8601": "2019-06-22T07:29:07.058778Z", "url": "https://files.pythonhosted.org/packages/a3/e6/d550b31c34ff5237b8063a7bbd40a530ea0fffaa90012d75fcc67607320f/privex_helpers-1.1.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6008d19f3347095575abdf43c94325cf", "sha256": "01323ad42d646c6572eebc9229dc7de1b472b0443b007e420de87b22c0219006" }, "downloads": -1, "filename": "privex_helpers-1.1.0.tar.gz", "has_sig": false, "md5_digest": "6008d19f3347095575abdf43c94325cf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18079, "upload_time": "2019-06-22T07:29:10", "upload_time_iso_8601": "2019-06-22T07:29:10.901279Z", "url": "https://files.pythonhosted.org/packages/4c/77/914c75f294d6b411fa14c5874782abd59e128d0591e115e2978c5c0e91ee/privex_helpers-1.1.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.1.1": [ { "comment_text": "", "digests": { "md5": "81e85d7fa2815427abc839d569af83f1", "sha256": "c0c623473ad834db7e058101514243e89c15939248c7834c0bc2241c5a2d0f3a" }, "downloads": -1, "filename": "privex_helpers-1.1.1-py3-none-any.whl", "has_sig": false, "md5_digest": "81e85d7fa2815427abc839d569af83f1", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 22686, "upload_time": "2019-06-28T02:01:32", "upload_time_iso_8601": "2019-06-28T02:01:32.475799Z", "url": "https://files.pythonhosted.org/packages/01/c6/a4693037b412a1186c563ff0bb9b416af74bf07bb56538e6d9385d700f59/privex_helpers-1.1.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "625f5f769a973b9f98a90415726ff403", "sha256": "2f39e0ae69c8b0d53d5138d816e63f88a75fdfe71994118ade36bc15efc682d1" }, "downloads": -1, "filename": "privex_helpers-1.1.1.tar.gz", "has_sig": false, "md5_digest": "625f5f769a973b9f98a90415726ff403", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18692, "upload_time": "2019-06-28T02:01:37", "upload_time_iso_8601": "2019-06-28T02:01:37.296905Z", "url": "https://files.pythonhosted.org/packages/dd/80/399e42ffba6d5354cc378e5d5b1a8f0f5e19dc62c6a5306483a97e54e14f/privex_helpers-1.1.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.1.2": [ { "comment_text": "", "digests": { "md5": "453dc0c8d43ddcfc27f36a738ad2fd49", "sha256": "8440b3b4e097cc782f52bef96695f67001d5c3c4f9cba2871ae1e7506051ca40" }, "downloads": -1, "filename": "privex_helpers-1.1.2-py3-none-any.whl", "has_sig": false, "md5_digest": "453dc0c8d43ddcfc27f36a738ad2fd49", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 22729, "upload_time": "2019-07-08T22:04:00", "upload_time_iso_8601": "2019-07-08T22:04:00.982481Z", "url": "https://files.pythonhosted.org/packages/5b/75/4ce7b7991441c8c8cb99845022f20d9c731aa8e277b3893440a135d763d5/privex_helpers-1.1.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "75b8fb07a2f91e63b44a77eefe52e928", "sha256": "4b0ed2297c1645e3d1ce17668d7e6c784382940e5f28940bf479aea1743ad417" }, "downloads": -1, "filename": "privex_helpers-1.1.2.tar.gz", "has_sig": false, "md5_digest": "75b8fb07a2f91e63b44a77eefe52e928", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18725, "upload_time": "2019-07-08T22:04:07", "upload_time_iso_8601": "2019-07-08T22:04:07.038356Z", "url": "https://files.pythonhosted.org/packages/8c/a5/9f905d95fe8566e040f436d365b002654ad2d90d8e613748d36019cfaa32/privex_helpers-1.1.2.tar.gz", "yanked": false, "yanked_reason": null } ], "1.1.4": [ { "comment_text": "", "digests": { "md5": "652c0c11d52cab8175fdc61bc044b133", "sha256": "732941fda2f104141ec545f55f38de3aa2d8ae356c6c67eb8daf3d8aec8ac5d3" }, "downloads": -1, "filename": "privex_helpers-1.1.4-py3-none-any.whl", "has_sig": false, "md5_digest": "652c0c11d52cab8175fdc61bc044b133", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 23213, "upload_time": "2019-07-19T13:06:30", "upload_time_iso_8601": "2019-07-19T13:06:30.802167Z", "url": "https://files.pythonhosted.org/packages/d4/fe/e2dc973619591c6425b25663dee9b3e71acd92d6f665f84ea9204c7e7704/privex_helpers-1.1.4-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7f5aaa63c09966b10e14e7fe82d508f2", "sha256": "0565eeb646f1110c204575c7032987cbfee31f45f038f0c589f28c81dbf0aa47" }, "downloads": -1, "filename": "privex_helpers-1.1.4.tar.gz", "has_sig": false, "md5_digest": "7f5aaa63c09966b10e14e7fe82d508f2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19319, "upload_time": "2019-07-19T13:06:36", "upload_time_iso_8601": "2019-07-19T13:06:36.993898Z", "url": "https://files.pythonhosted.org/packages/8b/5a/7e3270f6edb0a66bcb7b4e3bc22126e8aca049b942b22728653fabeb899c/privex_helpers-1.1.4.tar.gz", "yanked": false, "yanked_reason": null } ], "1.2.0": [ { "comment_text": "", "digests": { "md5": "881f68ebfe31fbf0818234c4d93f5a37", "sha256": "1cb65057e088c14edcab9aacf51a09c0fa390cbb6ad625cf3ada81ec0c4b8e2f" }, "downloads": -1, "filename": "privex_helpers-1.2.0-py3-none-any.whl", "has_sig": false, "md5_digest": "881f68ebfe31fbf0818234c4d93f5a37", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 29006, "upload_time": "2019-08-21T08:14:47", "upload_time_iso_8601": "2019-08-21T08:14:47.587305Z", "url": "https://files.pythonhosted.org/packages/1d/a4/51c63785e47149ba19f308ed2034048023a68f059ca65c20c9736cf6769e/privex_helpers-1.2.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b45930c00f8905eedf6e113abd5f7b1e", "sha256": "2ecbc6e21fc00d1f1d76357be626c9ee673139d4e9b7af1f896cac75fb869753" }, "downloads": -1, "filename": "privex_helpers-1.2.0.tar.gz", "has_sig": false, "md5_digest": "b45930c00f8905eedf6e113abd5f7b1e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22891, "upload_time": "2019-08-21T08:14:54", "upload_time_iso_8601": "2019-08-21T08:14:54.635558Z", "url": "https://files.pythonhosted.org/packages/4f/66/f1035729f985f31798b4178c26ede2f243bf3cfb63f5c2b4a5691320bd06/privex_helpers-1.2.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.2.1": [ { "comment_text": "", "digests": { "md5": "206541d8730d67caf803fa177ff2f8a3", "sha256": "7db903d3da3082ec598b130dd63a9b76488fe3cdcfea024ea8d86f3f4bac3ab1" }, "downloads": -1, "filename": "privex_helpers-1.2.1-py3-none-any.whl", "has_sig": false, "md5_digest": "206541d8730d67caf803fa177ff2f8a3", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 29171, "upload_time": "2019-08-21T08:36:41", "upload_time_iso_8601": "2019-08-21T08:36:41.411873Z", "url": "https://files.pythonhosted.org/packages/68/44/e1503d98981bc49fc7a88c0baedbf00ac586378796dc5097a958fa8b5567/privex_helpers-1.2.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e8345d7b05165d06d92b7f9f37056f9a", "sha256": "c14d68ae168a603d699ec907319b09fdb4687c0cb9435151de9fe379b6bee7b8" }, "downloads": -1, "filename": "privex_helpers-1.2.1.tar.gz", "has_sig": false, "md5_digest": "e8345d7b05165d06d92b7f9f37056f9a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23031, "upload_time": "2019-08-21T08:36:55", "upload_time_iso_8601": "2019-08-21T08:36:55.141397Z", "url": "https://files.pythonhosted.org/packages/48/36/c0bed9145ab31be850d21a46dbb8d13b38565c4109ec00c6ca97803ec3d2/privex_helpers-1.2.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.2.2": [ { "comment_text": "", "digests": { "md5": "101bc4a42bb100090f12f1be1a8bebf2", "sha256": "fbc3f7c35715f2fe0336336a032851fd7aedbec50a553523bb535ec274637db5" }, "downloads": -1, "filename": "privex_helpers-1.2.2-py3-none-any.whl", "has_sig": false, "md5_digest": "101bc4a42bb100090f12f1be1a8bebf2", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 29457, "upload_time": "2019-08-21T13:47:28", "upload_time_iso_8601": "2019-08-21T13:47:28.094351Z", "url": "https://files.pythonhosted.org/packages/48/7a/d9cf818ace224ae4d43739f56e938b6420f156e261bcfdc8ae93ad87b5e3/privex_helpers-1.2.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fd9a4c3b189d9f9850caee24e668204e", "sha256": "7937dc8547a8f3f4bf7759911686f6be72b7f30464aec63f1622e547b5ed0042" }, "downloads": -1, "filename": "privex_helpers-1.2.2.tar.gz", "has_sig": false, "md5_digest": "fd9a4c3b189d9f9850caee24e668204e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23300, "upload_time": "2019-08-21T13:47:37", "upload_time_iso_8601": "2019-08-21T13:47:37.242076Z", "url": "https://files.pythonhosted.org/packages/ee/0f/979faff050d302cdbc6f44d10aaccb06c9c883d8780bbc9788a144aca5fe/privex_helpers-1.2.2.tar.gz", "yanked": false, "yanked_reason": null } ], "1.2.3": [ { "comment_text": "", "digests": { "md5": "30c278f384bbe3e0d279eafadb64f5de", "sha256": "064784df036f5c9cf325dd69e739f00580c3141a5ff6907cf4341d7cd0f23c64" }, "downloads": -1, "filename": "privex_helpers-1.2.3-py3-none-any.whl", "has_sig": false, "md5_digest": "30c278f384bbe3e0d279eafadb64f5de", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 29477, "upload_time": "2019-09-03T20:53:18", "upload_time_iso_8601": "2019-09-03T20:53:18.833032Z", "url": "https://files.pythonhosted.org/packages/aa/12/bc39d9c054a08fc88298606dd2598243e95b9afdc502c67aa05395fe4c65/privex_helpers-1.2.3-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a646b5920f1bf66fb24a79199a0a58f7", "sha256": "fe7a563881209af085f3729cee2d0c91953f0767414fa89328df47287cb5e5a2" }, "downloads": -1, "filename": "privex_helpers-1.2.3.tar.gz", "has_sig": false, "md5_digest": "a646b5920f1bf66fb24a79199a0a58f7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23327, "upload_time": "2019-09-03T20:53:28", "upload_time_iso_8601": "2019-09-03T20:53:28.343180Z", "url": "https://files.pythonhosted.org/packages/af/65/fd86f70a589c5a07e527397763fe75ecba8e7248e740734900e6f042d23c/privex_helpers-1.2.3.tar.gz", "yanked": false, "yanked_reason": null } ], "1.3.0": [ { "comment_text": "", "digests": { "md5": "1f43296a62249a7a125fe0ca43ba0bb0", "sha256": "edf4ee1977d999021c51ecce81fd701ffe9c575156437f6c2625dbf257210b18" }, "downloads": -1, "filename": "privex_helpers-1.3.0-py3-none-any.whl", "has_sig": false, "md5_digest": "1f43296a62249a7a125fe0ca43ba0bb0", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 32783, "upload_time": "2019-09-14T17:30:00", "upload_time_iso_8601": "2019-09-14T17:30:00.340184Z", "url": "https://files.pythonhosted.org/packages/e0/a5/ef8280a8fca7bab4b9e81bcc29cb56b2549a8a5507a7d121e0301f33a4d8/privex_helpers-1.3.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "420144596603b8dc71d146cd74dc968c", "sha256": "baa95bc7c6a801e32944df80da0469e95b2803a65de3d1cd374c0553f19b7668" }, "downloads": -1, "filename": "privex_helpers-1.3.0.tar.gz", "has_sig": false, "md5_digest": "420144596603b8dc71d146cd74dc968c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25458, "upload_time": "2019-09-14T17:30:02", "upload_time_iso_8601": "2019-09-14T17:30:02.284841Z", "url": "https://files.pythonhosted.org/packages/43/3d/ec7b4e30e2a7576bb639f931e7354c961892a0a508da134b3dfd4acb412c/privex_helpers-1.3.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.3.0.post1": [ { "comment_text": "", "digests": { "md5": "bb576eba25925dea7ae53146281d3065", "sha256": "d7658e28f39e48061fba572dc5de8d369ea6256255a0e1696d25da23045a47ff" }, "downloads": -1, "filename": "privex_helpers-1.3.0.post1-py3-none-any.whl", "has_sig": false, "md5_digest": "bb576eba25925dea7ae53146281d3065", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 33002, "upload_time": "2019-09-17T03:36:07", "upload_time_iso_8601": "2019-09-17T03:36:07.529716Z", "url": "https://files.pythonhosted.org/packages/4f/7d/4831d772041fc77b8c165aa821f22b1b53ba1737a7f87ed673ac7872621e/privex_helpers-1.3.0.post1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c522edd839314f607dd797ec242417ca", "sha256": "29396603cb2307b2df4d8a49cbee75f931462c2bf5ef4511f3338953d3f49d18" }, "downloads": -1, "filename": "privex_helpers-1.3.0.post1.tar.gz", "has_sig": false, "md5_digest": "c522edd839314f607dd797ec242417ca", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25761, "upload_time": "2019-09-17T03:36:19", "upload_time_iso_8601": "2019-09-17T03:36:19.274781Z", "url": "https://files.pythonhosted.org/packages/ec/cc/d9dc6852100925c8f629a6d221869f254a5dad19b2bc55eb1b0612813e12/privex_helpers-1.3.0.post1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.3.0.post2": [ { "comment_text": "", "digests": { "md5": "3e68c53b9adc2f22a28d9652c854c10a", "sha256": "851fac68a445c70a41a809d8333b8bab3ca6fb0b6d4f6ac1bf8d5c08892d56de" }, "downloads": -1, "filename": "privex_helpers-1.3.0.post2-py3-none-any.whl", "has_sig": false, "md5_digest": "3e68c53b9adc2f22a28d9652c854c10a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 33032, "upload_time": "2019-09-25T15:35:37", "upload_time_iso_8601": "2019-09-25T15:35:37.642978Z", "url": "https://files.pythonhosted.org/packages/23/13/974ef5066169631fc5834e83982bb462f610e8e9ba5cb4af8b089df84a4e/privex_helpers-1.3.0.post2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8dcbe3a8d072e142bcf43afd9a570a7b", "sha256": "86fad18f71a14e38cce2ec04c7493ab1b66aa19328f63a545e81c72f42cf6579" }, "downloads": -1, "filename": "privex_helpers-1.3.0.post2.tar.gz", "has_sig": false, "md5_digest": "8dcbe3a8d072e142bcf43afd9a570a7b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25894, "upload_time": "2019-09-25T15:35:39", "upload_time_iso_8601": "2019-09-25T15:35:39.442779Z", "url": "https://files.pythonhosted.org/packages/1b/f2/27bc7b0fcd25f8d61263a38d437b1fd0d2dfa387cbab7edc6b4359fd9189/privex_helpers-1.3.0.post2.tar.gz", "yanked": false, "yanked_reason": null } ], "1.3.0.post3": [ { "comment_text": "", "digests": { "md5": "61558f4126fcca58de6e2fc243b47786", "sha256": "8bea36db1f1be335bcd98855bb78d37ff7d67bd432b53905262ce4a2a28cd51f" }, "downloads": -1, "filename": "privex_helpers-1.3.0.post3-py3-none-any.whl", "has_sig": false, "md5_digest": "61558f4126fcca58de6e2fc243b47786", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 33022, "upload_time": "2019-09-25T16:17:58", "upload_time_iso_8601": "2019-09-25T16:17:58.773080Z", "url": "https://files.pythonhosted.org/packages/5d/5c/bfca09ea52cb4b26cf28c24bc18c6699011bb95fb198e8246f663d2638d7/privex_helpers-1.3.0.post3-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "420fafa9577482a4031718fbfaee811c", "sha256": "f46ed8c3d7dd31958573e90a76726d2105311f5b31bf5473c9da525dff2b1ad6" }, "downloads": -1, "filename": "privex_helpers-1.3.0.post3.tar.gz", "has_sig": false, "md5_digest": "420fafa9577482a4031718fbfaee811c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25876, "upload_time": "2019-09-25T16:18:00", "upload_time_iso_8601": "2019-09-25T16:18:00.211065Z", "url": "https://files.pythonhosted.org/packages/fb/94/e9c830b9be56e60280d36ee2daa0bcb9cd5ed07fbd2779c295dbca0bc439/privex_helpers-1.3.0.post3.tar.gz", "yanked": false, "yanked_reason": null } ], "1.3.1": [ { "comment_text": "", "digests": { "md5": "38c0d55fd98273cae5b1ba3222a2597e", "sha256": "caa0f5b76241979f0e2f645ea4f281f2764470b14c02843d061e139a59fbe16e" }, "downloads": -1, "filename": "privex_helpers-1.3.1-py3-none-any.whl", "has_sig": false, "md5_digest": "38c0d55fd98273cae5b1ba3222a2597e", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 43604, "upload_time": "2019-10-03T22:19:10", "upload_time_iso_8601": "2019-10-03T22:19:10.275900Z", "url": "https://files.pythonhosted.org/packages/a2/03/3c7af212b86919749d1090dc5415504bd0410a804cf56371ec08189c1eb3/privex_helpers-1.3.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "50fa3a7dbf16fb00b6c384b887418f32", "sha256": "9ee82ca5979a9ef8b420c121e7a12e0ec4a340e2ce9ca67e9dde733a9fbbca51" }, "downloads": -1, "filename": "privex_helpers-1.3.1.tar.gz", "has_sig": false, "md5_digest": "50fa3a7dbf16fb00b6c384b887418f32", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 32753, "upload_time": "2019-10-03T22:19:12", "upload_time_iso_8601": "2019-10-03T22:19:12.178899Z", "url": "https://files.pythonhosted.org/packages/0f/f1/6e06e7b785fc697b41534dfdaa053e26a97b4901c86dd1141d38c71979e0/privex_helpers-1.3.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.3.2": [ { "comment_text": "", "digests": { "md5": "2d4551f67d613f7bc2fbbeb839b11c95", "sha256": "d89be3adbe859b393729f2eb97132b0932ae5b98d77902df5462ec21b453b8dc" }, "downloads": -1, "filename": "privex_helpers-1.3.2-py3-none-any.whl", "has_sig": false, "md5_digest": "2d4551f67d613f7bc2fbbeb839b11c95", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 43727, "upload_time": "2019-10-03T23:48:58", "upload_time_iso_8601": "2019-10-03T23:48:58.126256Z", "url": "https://files.pythonhosted.org/packages/18/3c/7cff6e6490b9e0cd8d54063bdc5380ecc5619ef04959ab88424bd65ac8c6/privex_helpers-1.3.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ad9619f9ee946da7b4079c5243cb4461", "sha256": "e9544d630e71bb859d78ef3294720b7d49dea4fe20176966ac2264523e0cf152" }, "downloads": -1, "filename": "privex_helpers-1.3.2.tar.gz", "has_sig": false, "md5_digest": "ad9619f9ee946da7b4079c5243cb4461", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 32795, "upload_time": "2019-10-03T23:48:59", "upload_time_iso_8601": "2019-10-03T23:48:59.855140Z", "url": "https://files.pythonhosted.org/packages/c9/63/7a63149fac3c46093e7caf1db3c05b4f134814cbe3ffdf8b7079b0687598/privex_helpers-1.3.2.tar.gz", "yanked": false, "yanked_reason": null } ], "1.3.3": [ { "comment_text": "", "digests": { "md5": "84001ddc540c55bb20d871fc889cfa74", "sha256": "2627083f93303c4dd2934c8c94e36f86c8a629b4cfb12de8e4a35affdb5ba641" }, "downloads": -1, "filename": "privex_helpers-1.3.3-py3-none-any.whl", "has_sig": false, "md5_digest": "84001ddc540c55bb20d871fc889cfa74", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 43765, "upload_time": "2019-10-04T00:29:35", "upload_time_iso_8601": "2019-10-04T00:29:35.908687Z", "url": "https://files.pythonhosted.org/packages/0b/74/f5c9be60559933cb20c345e9c4e6c8921adbbd3f6130a7b33ee461cb59e4/privex_helpers-1.3.3-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "56557847b1fda29c82cca668488d348e", "sha256": "a9d5cc535eaeb3e7612aa67e568d2c95ea000aaac613f3ee349e462ee479f6b0" }, "downloads": -1, "filename": "privex_helpers-1.3.3.tar.gz", "has_sig": false, "md5_digest": "56557847b1fda29c82cca668488d348e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 32795, "upload_time": "2019-10-04T00:29:38", "upload_time_iso_8601": "2019-10-04T00:29:38.572256Z", "url": "https://files.pythonhosted.org/packages/24/54/7373a7fde290851280be75612f05b9b6ad7d244598ac80c81245e8054cc6/privex_helpers-1.3.3.tar.gz", "yanked": false, "yanked_reason": null } ], "1.3.4": [ { "comment_text": "", "digests": { "md5": "3bec940f2b5cb496704e0672103cd0f9", "sha256": "4f87cd4109cde524dee3d9fcfd3c4775f6ad2c6853683486aa6a13517d08d1d7" }, "downloads": -1, "filename": "privex_helpers-1.3.4-py3-none-any.whl", "has_sig": false, "md5_digest": "3bec940f2b5cb496704e0672103cd0f9", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 44028, "upload_time": "2019-10-17T04:48:33", "upload_time_iso_8601": "2019-10-17T04:48:33.343768Z", "url": "https://files.pythonhosted.org/packages/34/3b/4f7e66638d9c92dc2164e704d7e27f9c4810ead974e301ab698ab054826f/privex_helpers-1.3.4-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0ea838cab666ab3718998ac6e06545dd", "sha256": "a3360f76b2996f0c9d4c3b0c1eb45ae21d16651a9d3b179e2801e4b098da9a05" }, "downloads": -1, "filename": "privex_helpers-1.3.4.tar.gz", "has_sig": false, "md5_digest": "0ea838cab666ab3718998ac6e06545dd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 33034, "upload_time": "2019-10-17T04:48:35", "upload_time_iso_8601": "2019-10-17T04:48:35.396998Z", "url": "https://files.pythonhosted.org/packages/f1/0b/2433ae7281ed4194f06b99e7bec634629f6ce6e4139926f485809571826b/privex_helpers-1.3.4.tar.gz", "yanked": false, "yanked_reason": null } ], "1.4.1": [ { "comment_text": "", "digests": { "md5": "aa524dd2c26ca91f1a82cd64da87efa8", "sha256": "8f0f621204be00189bf7322eac8f6f22e6099b4296d9fe9ef9967942b6f0da11" }, "downloads": -1, "filename": "privex_helpers-1.4.1-py3-none-any.whl", "has_sig": false, "md5_digest": "aa524dd2c26ca91f1a82cd64da87efa8", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 59985, "upload_time": "2019-10-19T06:54:21", "upload_time_iso_8601": "2019-10-19T06:54:21.391577Z", "url": "https://files.pythonhosted.org/packages/9f/47/aadaa707bb3a3df5118de82a97197e9712050a3ba52f3bbca9de7fb986f5/privex_helpers-1.4.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "557c2fb299a5d6454b892b8c61f3e7ec", "sha256": "18bacc80a67a728d9adbafefe7571fb5411b851997d397b2f7de975456560779" }, "downloads": -1, "filename": "privex_helpers-1.4.1.tar.gz", "has_sig": false, "md5_digest": "557c2fb299a5d6454b892b8c61f3e7ec", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 41203, "upload_time": "2019-10-19T06:54:23", "upload_time_iso_8601": "2019-10-19T06:54:23.426778Z", "url": "https://files.pythonhosted.org/packages/c8/e7/571280275e14ccd4224054d170562ca588a1c2848e5488fb491edf722f61/privex_helpers-1.4.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.5.0": [ { "comment_text": "", "digests": { "md5": "db0543fc4d6e36dcd5cae4452865371a", "sha256": "bcd0673bbd2a7da9ad710ce0451726b39c26ccd482998b038fbb4b35251fbde2" }, "downloads": -1, "filename": "privex_helpers-1.5.0-py3-none-any.whl", "has_sig": false, "md5_digest": "db0543fc4d6e36dcd5cae4452865371a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 68962, "upload_time": "2019-10-23T20:57:20", "upload_time_iso_8601": "2019-10-23T20:57:20.942397Z", "url": "https://files.pythonhosted.org/packages/ab/c9/9ede615996301832b6d846069d43f5edbcd5aa28cf1795c186e4501574dc/privex_helpers-1.5.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fdf67ea53bd75931663df64890176844", "sha256": "84907125c943897726e00eb7d39b4d4ebd2f4346557c4b17044acee57c96f9ad" }, "downloads": -1, "filename": "privex_helpers-1.5.0.tar.gz", "has_sig": false, "md5_digest": "fdf67ea53bd75931663df64890176844", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 47642, "upload_time": "2019-10-23T20:57:23", "upload_time_iso_8601": "2019-10-23T20:57:23.924873Z", "url": "https://files.pythonhosted.org/packages/b7/ca/6ad3700e9d8a07e23dfa3ea5159c62eedb4529f67aeea56b8ed5adb487ff/privex_helpers-1.5.0.tar.gz", "yanked": false, "yanked_reason": null } ], "2.0.0": [ { "comment_text": "", "digests": { "md5": "e84721cc6b4cf7518d7e83eb02449a89", "sha256": "eed24ba36019c72d5a3752f9af982eb303717fb1d46e583b8f8e0a4afa8e73bd" }, "downloads": -1, "filename": "privex_helpers-2.0.0-py3-none-any.whl", "has_sig": false, "md5_digest": "e84721cc6b4cf7518d7e83eb02449a89", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 68580, "upload_time": "2019-10-26T00:47:59", "upload_time_iso_8601": "2019-10-26T00:47:59.115916Z", "url": "https://files.pythonhosted.org/packages/22/07/3b10ddd73eac7a92e1c8e5755593f0bbbaeff0a00961f4f6e240f6c006ee/privex_helpers-2.0.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5335764d38eacb2f703b288122420ca2", "sha256": "803071623cf7c48b5d6aa46a9ad73576a8694f14d6fc7f908eb227f7a7a4ea8c" }, "downloads": -1, "filename": "privex_helpers-2.0.0.tar.gz", "has_sig": false, "md5_digest": "5335764d38eacb2f703b288122420ca2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 60153, "upload_time": "2019-10-26T00:48:00", "upload_time_iso_8601": "2019-10-26T00:48:00.832400Z", "url": "https://files.pythonhosted.org/packages/b3/ee/7992ce2113f6d8e4a045c727d6a7e76767da7fa8ce2071eecac05a80a82b/privex_helpers-2.0.0.tar.gz", "yanked": false, "yanked_reason": null } ], "2.1.0": [ { "comment_text": "", "digests": { "md5": "89cb13d09b82266573637db8cd74c693", "sha256": "09a8f5b2f188e4c780eba6d63f0ecf059f59fc041100bd6d2c8e5700d46e2c74" }, "downloads": -1, "filename": "privex_helpers-2.1.0-py3-none-any.whl", "has_sig": false, "md5_digest": "89cb13d09b82266573637db8cd74c693", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 80785, "upload_time": "2019-11-04T05:45:41", "upload_time_iso_8601": "2019-11-04T05:45:41.399744Z", "url": "https://files.pythonhosted.org/packages/21/97/17bb69570dd26a658605b5fea498edacda6c374cafe7d266602bf14d4fbd/privex_helpers-2.1.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "06943c1ca9e8aa51879c74e75e95d6ee", "sha256": "17a79a3004de16cf86463db39d739dc75e09a9c415cb21850afa48f0f3da6185" }, "downloads": -1, "filename": "privex_helpers-2.1.0.tar.gz", "has_sig": false, "md5_digest": "06943c1ca9e8aa51879c74e75e95d6ee", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 72033, "upload_time": "2019-11-04T05:45:43", "upload_time_iso_8601": "2019-11-04T05:45:43.969071Z", "url": "https://files.pythonhosted.org/packages/2f/92/90a35f5eabdbf56efbb4c25dfa57542cdce7eeba5f6c0b61bbc0726422fb/privex_helpers-2.1.0.tar.gz", "yanked": false, "yanked_reason": null } ], "2.10.0": [ { "comment_text": "", "digests": { "md5": "91a3079ea6aa997b2bd4289fe9853ab4", "sha256": "bded522c269869d88b236fcf0c8e3f7ae45788d692ee65c8f31e063942b50a84" }, "downloads": -1, "filename": "privex_helpers-2.10.0-py3-none-any.whl", "has_sig": false, "md5_digest": "91a3079ea6aa997b2bd4289fe9853ab4", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 126937, "upload_time": "2020-04-13T03:00:32", "upload_time_iso_8601": "2020-04-13T03:00:32.062636Z", "url": "https://files.pythonhosted.org/packages/22/d3/c0ed84094d1acd6552ecdb03229a0447a98cfd5f4d7952d99f027cf27bfc/privex_helpers-2.10.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b500a0d8c37c32860e9e7002ec00bc63", "sha256": "89b19c8cbb740a23b931ef118b24b56505cadfb6c92ae0f0d2f9cc4d5fa12192" }, "downloads": -1, "filename": "privex_helpers-2.10.0.tar.gz", "has_sig": false, "md5_digest": "b500a0d8c37c32860e9e7002ec00bc63", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 117164, "upload_time": "2020-04-13T03:00:34", "upload_time_iso_8601": "2020-04-13T03:00:34.093481Z", "url": "https://files.pythonhosted.org/packages/8d/d2/9fa802649eb1b3a1fdb13c6e1c2085f5a4567ae51134779124542eb10459/privex_helpers-2.10.0.tar.gz", "yanked": false, "yanked_reason": null } ], "2.10.1": [ { "comment_text": "", "digests": { "md5": "731d30c8dcd4bfeb2ba5197da946c595", "sha256": "11bfcc3ba20d4022ce2aa2540ae78ac0be4e8a857665925ff71ce269bc6db955" }, "downloads": -1, "filename": "privex_helpers-2.10.1-py3-none-any.whl", "has_sig": false, "md5_digest": "731d30c8dcd4bfeb2ba5197da946c595", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 127332, "upload_time": "2020-04-14T21:35:38", "upload_time_iso_8601": "2020-04-14T21:35:38.057898Z", "url": "https://files.pythonhosted.org/packages/36/25/78b4ce533b777859d8676f426c3dcfecf443eae5d5077468df34229f6654/privex_helpers-2.10.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c1e22916cc60ad796c8f1a0ca04e198a", "sha256": "01f054dabd16bcc86dec5b9efac5ebe30ead0a7f27a8884b69438f10f32d7179" }, "downloads": -1, "filename": "privex_helpers-2.10.1.tar.gz", "has_sig": false, "md5_digest": "c1e22916cc60ad796c8f1a0ca04e198a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 117551, "upload_time": "2020-04-14T21:35:39", "upload_time_iso_8601": "2020-04-14T21:35:39.837751Z", "url": "https://files.pythonhosted.org/packages/6a/f5/e986161a9b3ae522b60aacdf3cd8285d7cfd3b9fa09d34b8b8544ac52d86/privex_helpers-2.10.1.tar.gz", "yanked": false, "yanked_reason": null } ], "2.10.2": [ { "comment_text": "", "digests": { "md5": "c2944f5e1491e30a92310c6ecb4c2fd4", "sha256": "dcd6a9f7badf233b1c2a6acd867258a7e791534b5c7f3fa55d4c2bb5aae9c2db" }, "downloads": -1, "filename": "privex_helpers-2.10.2-py3-none-any.whl", "has_sig": false, "md5_digest": "c2944f5e1491e30a92310c6ecb4c2fd4", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 128391, "upload_time": "2020-05-01T06:16:55", "upload_time_iso_8601": "2020-05-01T06:16:55.508987Z", "url": "https://files.pythonhosted.org/packages/2a/d5/268372837f8cdeb0c1fbd11afe2c1c026bb61e2d4d605d54a41f66166902/privex_helpers-2.10.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d7470bee2419473e4c3bc9027afea96e", "sha256": "a7ad9cfa2db7a4794a3adf1a28565d3c100824c842c5b6c162520ced566abe38" }, "downloads": -1, "filename": "privex_helpers-2.10.2.tar.gz", "has_sig": false, "md5_digest": "d7470bee2419473e4c3bc9027afea96e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 118578, "upload_time": "2020-05-01T06:16:57", "upload_time_iso_8601": "2020-05-01T06:16:57.390304Z", "url": "https://files.pythonhosted.org/packages/37/26/73d2f12d1a5934aa1c951ad16c9078cb3963a894b8f74ab2d614fc0ac320/privex_helpers-2.10.2.tar.gz", "yanked": false, "yanked_reason": null } ], "2.11.0": [ { "comment_text": "", "digests": { "md5": "c490e16d76e34f0a281744bc8462e117", "sha256": "84cb0680fb4d0421060f3e15741fce52bd70f49930883b4cd9d2ed1be55525ff" }, "downloads": -1, "filename": "privex_helpers-2.11.0-py3-none-any.whl", "has_sig": false, "md5_digest": "c490e16d76e34f0a281744bc8462e117", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 128672, "upload_time": "2020-05-01T06:47:22", "upload_time_iso_8601": "2020-05-01T06:47:22.412392Z", "url": "https://files.pythonhosted.org/packages/d8/79/a20d4d6f0a73c0f8cd0179fef63df0ebc929fd7bffd052e897a3ca4221da/privex_helpers-2.11.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "742c752b66b86845c09b5f97d9cb9083", "sha256": "a8f7aa4d2ce024f31fef68731f2d56f98050a1ef676ab46d8e1f984ab7773011" }, "downloads": -1, "filename": "privex_helpers-2.11.0.tar.gz", "has_sig": false, "md5_digest": "742c752b66b86845c09b5f97d9cb9083", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 118802, "upload_time": "2020-05-01T06:47:24", "upload_time_iso_8601": "2020-05-01T06:47:24.366464Z", "url": "https://files.pythonhosted.org/packages/54/ae/6c4a3f1d5f94dbce922a4db15a871abe69826a444ac81155a705c7106b7c/privex_helpers-2.11.0.tar.gz", "yanked": false, "yanked_reason": null } ], "2.12.0": [ { "comment_text": "", "digests": { "md5": "f3379ef7e29e503a0df30de4424ef115", "sha256": "c66c8e987b5edf008d4996518b6f7083dbe934bfe64e9f1dd9ebaa4727f52e06" }, "downloads": -1, "filename": "privex_helpers-2.12.0-py3-none-any.whl", "has_sig": false, "md5_digest": "f3379ef7e29e503a0df30de4424ef115", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 138122, "upload_time": "2020-05-22T15:23:18", "upload_time_iso_8601": "2020-05-22T15:23:18.277745Z", "url": "https://files.pythonhosted.org/packages/58/63/bf7c840f46c6683e2cd94ab680d7f1c1f594329383c3a4fb5de34b2010c3/privex_helpers-2.12.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "12b71a77de37c335b932749971f9786d", "sha256": "db2c45008235f08f4c2d005599b538ff3cfac92b9f4dc224fedf0bbce0a05bb4" }, "downloads": -1, "filename": "privex_helpers-2.12.0.tar.gz", "has_sig": false, "md5_digest": "12b71a77de37c335b932749971f9786d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 127301, "upload_time": "2020-05-22T15:23:19", "upload_time_iso_8601": "2020-05-22T15:23:19.843347Z", "url": "https://files.pythonhosted.org/packages/65/01/0fdc2df1dec431631ef1abc0e465adc24cccd58502d59a7b1c7a5a04fc68/privex_helpers-2.12.0.tar.gz", "yanked": false, "yanked_reason": null } ], "2.13.0": [ { "comment_text": "", "digests": { "md5": "ed7292bf6a8495e168e97c58d80bee1f", "sha256": "ad1ef5396b17b8caaa54f6449be34fa5e6f6c17ac741dc4994d810d295d2d185" }, "downloads": -1, "filename": "privex_helpers-2.13.0-py3-none-any.whl", "has_sig": false, "md5_digest": "ed7292bf6a8495e168e97c58d80bee1f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 143512, "upload_time": "2020-06-17T15:32:27", "upload_time_iso_8601": "2020-06-17T15:32:27.149543Z", "url": "https://files.pythonhosted.org/packages/ed/10/e56eb175df01af300212025a710393eb3e37d6178f9ddb005078b135b3b1/privex_helpers-2.13.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b49c7f1c8cb77e2067a2d3f0dffc382c", "sha256": "e47b9f3d9c987ae583d41a117070e14ab621623c6e9ce84ef2ea75dab84ff49b" }, "downloads": -1, "filename": "privex_helpers-2.13.0.tar.gz", "has_sig": false, "md5_digest": "b49c7f1c8cb77e2067a2d3f0dffc382c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 132779, "upload_time": "2020-06-17T15:32:29", "upload_time_iso_8601": "2020-06-17T15:32:29.070592Z", "url": "https://files.pythonhosted.org/packages/84/2a/51632a336055d0df539512d112c86dff2b64108ecf703418c3394d1bc0c9/privex_helpers-2.13.0.tar.gz", "yanked": false, "yanked_reason": null } ], "2.14.0": [ { "comment_text": "", "digests": { "md5": "918ca33cc3fb289dc37a60d79ba62a74", "sha256": "7c4909da1c5675bbaad4f805fcf041e34f5584c9b0c4a430db9a101075c640e0" }, "downloads": -1, "filename": "privex_helpers-2.14.0-py3-none-any.whl", "has_sig": false, "md5_digest": "918ca33cc3fb289dc37a60d79ba62a74", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 150313, "upload_time": "2020-07-01T05:57:09", "upload_time_iso_8601": "2020-07-01T05:57:09.158711Z", "url": "https://files.pythonhosted.org/packages/ec/7b/cfc040e01648ee0d23c5570d95c25eac02743782030cb17c1d7d30014871/privex_helpers-2.14.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7feb3b5e953a8422dc391e856afc63e5", "sha256": "f98053bf43b635fced3f1092aff32dd5f40812e569e9bdd5014ee98b6ee71a36" }, "downloads": -1, "filename": "privex_helpers-2.14.0.tar.gz", "has_sig": false, "md5_digest": "7feb3b5e953a8422dc391e856afc63e5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 139221, "upload_time": "2020-07-01T05:57:11", "upload_time_iso_8601": "2020-07-01T05:57:11.168364Z", "url": "https://files.pythonhosted.org/packages/82/9b/a45f31b9942d7c935fb76012f9ba9be828a1d1c3365dd2678f3a81cac2fb/privex_helpers-2.14.0.tar.gz", "yanked": false, "yanked_reason": null } ], "2.14.1": [ { "comment_text": "", "digests": { "md5": "5c8db74b18d62ca48e844cb764858f72", "sha256": "2dd8f0c9cca4e5345ed66ea2effad92d8597219e9509cf46775b6edf5b4460f8" }, "downloads": -1, "filename": "privex_helpers-2.14.1-py3-none-any.whl", "has_sig": false, "md5_digest": "5c8db74b18d62ca48e844cb764858f72", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 150513, "upload_time": "2020-07-02T17:48:36", "upload_time_iso_8601": "2020-07-02T17:48:36.265194Z", "url": "https://files.pythonhosted.org/packages/bf/75/485d4158bf911527f74a797986b7983afc33e0fa6c43c831280d00df129f/privex_helpers-2.14.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "068ef4d2df1269433606a3344b8467fd", "sha256": "173952e4e96924f53db559c503b513378df5133f3fd306ae7478b7e771b1bef2" }, "downloads": -1, "filename": "privex_helpers-2.14.1.tar.gz", "has_sig": false, "md5_digest": "068ef4d2df1269433606a3344b8467fd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 139365, "upload_time": "2020-07-02T17:48:38", "upload_time_iso_8601": "2020-07-02T17:48:38.256408Z", "url": "https://files.pythonhosted.org/packages/ce/7a/f39f2ad7d4d693b4df7e5a2dc55368fc86cf803c2c249ab19274dcce832d/privex_helpers-2.14.1.tar.gz", "yanked": false, "yanked_reason": null } ], "2.15.0": [ { "comment_text": "", "digests": { "md5": "1418fd5af72a3761e8391045ee73b1ce", "sha256": "c52bc77ed18f5fe89e13e06e4ad6a91fc60f2e3d20347d18f41342fcaf0a90c9" }, "downloads": -1, "filename": "privex_helpers-2.15.0-py3-none-any.whl", "has_sig": false, "md5_digest": "1418fd5af72a3761e8391045ee73b1ce", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 155416, "upload_time": "2020-07-02T17:50:40", "upload_time_iso_8601": "2020-07-02T17:50:40.924621Z", "url": "https://files.pythonhosted.org/packages/33/bb/f7b0845863fd5bfd2762f2fe223a4857974c21a05849bf5b179e6c0ec26a/privex_helpers-2.15.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9d68d9915fb7680f2e2dd31b2acb4d0b", "sha256": "b231feb630d031823561a05aaabea7feb3fdb5ec2f0b8c4018fe5b9aa6ddcaaf" }, "downloads": -1, "filename": "privex_helpers-2.15.0.tar.gz", "has_sig": false, "md5_digest": "9d68d9915fb7680f2e2dd31b2acb4d0b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 144120, "upload_time": "2020-07-02T17:50:42", "upload_time_iso_8601": "2020-07-02T17:50:42.612116Z", "url": "https://files.pythonhosted.org/packages/54/46/7448cfbd77b18a0074aea8a5db8dd266acdf280cfefdb98c83726f6af7c5/privex_helpers-2.15.0.tar.gz", "yanked": false, "yanked_reason": null } ], "2.16.0": [ { "comment_text": "", "digests": { "md5": "cc75fd6ec89331f12e73aaada35339b4", "sha256": "2fdbeddfb81b676dba80beeac8b1d8e20f415a30e12782d6a1b42e541f54d7a6" }, "downloads": -1, "filename": "privex_helpers-2.16.0-py3-none-any.whl", "has_sig": false, "md5_digest": "cc75fd6ec89331f12e73aaada35339b4", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 165046, "upload_time": "2020-07-12T05:34:42", "upload_time_iso_8601": "2020-07-12T05:34:42.855423Z", "url": "https://files.pythonhosted.org/packages/d7/8b/fe6f60104886fa47921d8261a59f017f7e8a885bcb978de1ba00da8b7ab4/privex_helpers-2.16.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "eb590fbf301403ce90c99e5bc8212609", "sha256": "b5fb821ce115efc9b5e4e16bfb1fcdbd344fe276d1343d71bc3d20c4b31b3aac" }, "downloads": -1, "filename": "privex_helpers-2.16.0.tar.gz", "has_sig": false, "md5_digest": "eb590fbf301403ce90c99e5bc8212609", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 154745, "upload_time": "2020-07-12T05:34:44", "upload_time_iso_8601": "2020-07-12T05:34:44.889073Z", "url": "https://files.pythonhosted.org/packages/3a/d3/175da6f003747607e5b4477d82741e0eaeb6837dc041ea6a63b82f6ff963/privex_helpers-2.16.0.tar.gz", "yanked": false, "yanked_reason": null } ], "2.17.0": [ { "comment_text": "", "digests": { "md5": "ad4dd27b35cdda639c993ab3201c6ac6", "sha256": "8a627ed4381a417b196093711bf11f547a34ad50da12707414c84c4a1cfdd79c" }, "downloads": -1, "filename": "privex_helpers-2.17.0-py3-none-any.whl", "has_sig": false, "md5_digest": "ad4dd27b35cdda639c993ab3201c6ac6", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 167107, "upload_time": "2020-07-20T04:32:45", "upload_time_iso_8601": "2020-07-20T04:32:45.590423Z", "url": "https://files.pythonhosted.org/packages/a8/00/e13665a008486928a9d12033b6cebc38dd9e145db674f2d8650d9ff895fa/privex_helpers-2.17.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "33fe51f8cf79ced27c42f1bf150816c8", "sha256": "3e8872eed6e829a1b7dde1a5d6884d1d87dc7deacfd647b24cab75232600b4d3" }, "downloads": -1, "filename": "privex_helpers-2.17.0.tar.gz", "has_sig": false, "md5_digest": "33fe51f8cf79ced27c42f1bf150816c8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 147147, "upload_time": "2020-07-20T04:32:47", "upload_time_iso_8601": "2020-07-20T04:32:47.516133Z", "url": "https://files.pythonhosted.org/packages/a9/21/eb57813a89147104e3e9dca9f07fd62387631334af58892c5baf470255cd/privex_helpers-2.17.0.tar.gz", "yanked": false, "yanked_reason": null } ], "2.18.0": [ { "comment_text": "", "digests": { "md5": "3d28a4a0151dfd1b95fd38219f7f0ca3", "sha256": "f8056297f84712545ea0d282d02e1f013336a22eacb816529fbd6f1012d03285" }, "downloads": -1, "filename": "privex_helpers-2.18.0-py3-none-any.whl", "has_sig": false, "md5_digest": "3d28a4a0151dfd1b95fd38219f7f0ca3", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 167809, "upload_time": "2020-07-20T05:57:08", "upload_time_iso_8601": "2020-07-20T05:57:08.595685Z", "url": "https://files.pythonhosted.org/packages/40/02/c758113e8d160dcc111177e024017d79b90a23fe9d7cad6bdad22fb6e04e/privex_helpers-2.18.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ab4e130e728fd34615ec6bc7bae04236", "sha256": "3e3c568fff2f8b08d0b0ed4bae19647bdd9ab3fa418449fe70a123238b92d5c1" }, "downloads": -1, "filename": "privex_helpers-2.18.0.tar.gz", "has_sig": false, "md5_digest": "ab4e130e728fd34615ec6bc7bae04236", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 157845, "upload_time": "2020-07-20T05:57:10", "upload_time_iso_8601": "2020-07-20T05:57:10.369173Z", "url": "https://files.pythonhosted.org/packages/1b/bd/a2358a4912e3d83d58fe7430ad2abe9bb3231ad994c9e3e1b5e4eb64a2f7/privex_helpers-2.18.0.tar.gz", "yanked": false, "yanked_reason": null } ], "2.2.0": [ { "comment_text": "", "digests": { "md5": "303d62b3ae76d6adb08e3cd770bb13b3", "sha256": "d36a41c695499ca0b95c520c913aed377b54cdc8bf3b3eb51312462acb850624" }, "downloads": -1, "filename": "privex_helpers-2.2.0-py3-none-any.whl", "has_sig": false, "md5_digest": "303d62b3ae76d6adb08e3cd770bb13b3", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 84958, "upload_time": "2019-11-04T12:29:50", "upload_time_iso_8601": "2019-11-04T12:29:50.214783Z", "url": "https://files.pythonhosted.org/packages/df/a2/35a2b2815d12c8dd86ca7297c87ca59adc4f25bd44d07470f6635d9eec7d/privex_helpers-2.2.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "57c86710f7bd167fa84e7252d980d8e4", "sha256": "973520b898f38d818296790a9a62668115c6876f7a19b18ca5f60ca4a3e07fd8" }, "downloads": -1, "filename": "privex_helpers-2.2.0.tar.gz", "has_sig": false, "md5_digest": "57c86710f7bd167fa84e7252d980d8e4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 76056, "upload_time": "2019-11-04T12:29:53", "upload_time_iso_8601": "2019-11-04T12:29:53.940156Z", "url": "https://files.pythonhosted.org/packages/ba/d7/2320b9d72c5e253f329c6d408d1fd167d203b86b2097cc1a6e50f85e417e/privex_helpers-2.2.0.tar.gz", "yanked": false, "yanked_reason": null } ], "2.3.0": [ { "comment_text": "", "digests": { "md5": "5faab399c7af349c0e94523391181699", "sha256": "0ea14367a50e452cccc2b6471f9f210803b6a3d60fccd11388a9d879c3488600" }, "downloads": -1, "filename": "privex_helpers-2.3.0-py3-none-any.whl", "has_sig": false, "md5_digest": "5faab399c7af349c0e94523391181699", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 92526, "upload_time": "2019-12-01T03:13:15", "upload_time_iso_8601": "2019-12-01T03:13:15.739674Z", "url": "https://files.pythonhosted.org/packages/d9/d6/4b69dabad116a8e46332b8c5bd22e203907226a098ec5411cc6653e6d7b5/privex_helpers-2.3.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "82cf920b7a89e55376947fff32b8a432", "sha256": "2ebb157dbce7c8e1a46f7e0f9d0e71e79ffc77b646ba8800618716e2e30550ae" }, "downloads": -1, "filename": "privex_helpers-2.3.0.tar.gz", "has_sig": false, "md5_digest": "82cf920b7a89e55376947fff32b8a432", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 84197, "upload_time": "2019-12-01T03:13:17", "upload_time_iso_8601": "2019-12-01T03:13:17.786781Z", "url": "https://files.pythonhosted.org/packages/32/74/8eedab033d345eef5ba9b8dbc5cbcbf1c9cd7fa317a40f2865383225023a/privex_helpers-2.3.0.tar.gz", "yanked": false, "yanked_reason": null } ], "2.3.1": [ { "comment_text": "", "digests": { "md5": "68e3f265fe7707302a70d1be36a1cff1", "sha256": "f53ab2d38e58ceed9c4e0a88a3bc99607d3b07b236e6cf0dd8a555dac348c175" }, "downloads": -1, "filename": "privex_helpers-2.3.1-py3-none-any.whl", "has_sig": false, "md5_digest": "68e3f265fe7707302a70d1be36a1cff1", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 92536, "upload_time": "2019-12-01T04:16:05", "upload_time_iso_8601": "2019-12-01T04:16:05.811696Z", "url": "https://files.pythonhosted.org/packages/3f/18/4ac2893f4b47b78bb8b7edd94dbecce2c675261533c525755ffeb9656545/privex_helpers-2.3.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0ed7529f93acce569e2dd5b92277b242", "sha256": "24e69841f8304a1bc8ff190be9974ebd30014edfe0de02233632d8a12c98a5a0" }, "downloads": -1, "filename": "privex_helpers-2.3.1.tar.gz", "has_sig": false, "md5_digest": "0ed7529f93acce569e2dd5b92277b242", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 82196, "upload_time": "2019-12-01T04:16:08", "upload_time_iso_8601": "2019-12-01T04:16:08.875843Z", "url": "https://files.pythonhosted.org/packages/47/ae/cd1928f04bc6e402efa7e38f4eb06db182013e3f13f74ba951f83e555753/privex_helpers-2.3.1.tar.gz", "yanked": false, "yanked_reason": null } ], "2.4.0": [ { "comment_text": "", "digests": { "md5": "2647168538107d1ed4da04a39691c516", "sha256": "bec2bf1a2f7753f162c127251541ebc4e2f3ff70224e906eaa776dc43822e4a1" }, "downloads": -1, "filename": "privex_helpers-2.4.0-py3-none-any.whl", "has_sig": false, "md5_digest": "2647168538107d1ed4da04a39691c516", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 93894, "upload_time": "2019-12-01T04:51:16", "upload_time_iso_8601": "2019-12-01T04:51:16.674497Z", "url": "https://files.pythonhosted.org/packages/8d/bc/197694ded06e5682f31e3b88c9534c512cd204acf5fcaca3544bd6886523/privex_helpers-2.4.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9b0de64c6bb07eef9759962f4ceb3877", "sha256": "009df1c637e7002faf7d5866eb63ed2f0bf919b117c172ff59914995d9146d60" }, "downloads": -1, "filename": "privex_helpers-2.4.0.tar.gz", "has_sig": false, "md5_digest": "9b0de64c6bb07eef9759962f4ceb3877", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 82985, "upload_time": "2019-12-01T04:51:18", "upload_time_iso_8601": "2019-12-01T04:51:18.398895Z", "url": "https://files.pythonhosted.org/packages/71/81/6a2014367ec646fe2c993a6bfbf7ce9f514ce814c28389070f8cee15afc3/privex_helpers-2.4.0.tar.gz", "yanked": false, "yanked_reason": null } ], "2.4.1": [ { "comment_text": "", "digests": { "md5": "364e9e8c0409ed9ed06860fec78a5f3d", "sha256": "44c87af3468b0043880477438b5d4161966aaff7b216d7145a28cf7ecfdbac95" }, "downloads": -1, "filename": "privex_helpers-2.4.1-py3-none-any.whl", "has_sig": false, "md5_digest": "364e9e8c0409ed9ed06860fec78a5f3d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 94357, "upload_time": "2019-12-04T18:26:28", "upload_time_iso_8601": "2019-12-04T18:26:28.985853Z", "url": "https://files.pythonhosted.org/packages/6d/97/db5bb9643097fd87c548b3f35075b463adc1de6fdbd0cf50031036ca85a4/privex_helpers-2.4.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fefb217bd0d56a98817f130b96dadc58", "sha256": "d7c5eb11d62322f889eb0b9992a7331f34893c87b94f4b7ffaa07496c08e2ea6" }, "downloads": -1, "filename": "privex_helpers-2.4.1.tar.gz", "has_sig": false, "md5_digest": "fefb217bd0d56a98817f130b96dadc58", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 83419, "upload_time": "2019-12-04T18:26:31", "upload_time_iso_8601": "2019-12-04T18:26:31.091581Z", "url": "https://files.pythonhosted.org/packages/43/b9/7e5b73ee4f07cbb9d6c8625ccdc69788daa57a5430dc3d85fcf3e2daeb1c/privex_helpers-2.4.1.tar.gz", "yanked": false, "yanked_reason": null } ], "2.5.0": [ { "comment_text": "", "digests": { "md5": "a9f6facf6a0d2bb1165eb6ad4278d389", "sha256": "88aba15b46f1c2c7c9aa3a0b1c4cee9ecabc83b581728d59f0471926b66c543f" }, "downloads": -1, "filename": "privex_helpers-2.5.0-py3-none-any.whl", "has_sig": false, "md5_digest": "a9f6facf6a0d2bb1165eb6ad4278d389", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 94629, "upload_time": "2019-12-05T03:03:41", "upload_time_iso_8601": "2019-12-05T03:03:41.285911Z", "url": "https://files.pythonhosted.org/packages/7a/d0/218319c6272a488d91eb05a89b2bffff011122bb08855802d8fb4d113d05/privex_helpers-2.5.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "68b04375df76800b9030f4388d38f05a", "sha256": "06d5a9062b1af5d85adb483baa484183b1639a6d8b949571cec40a1f675ac677" }, "downloads": -1, "filename": "privex_helpers-2.5.0.tar.gz", "has_sig": false, "md5_digest": "68b04375df76800b9030f4388d38f05a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 90162, "upload_time": "2019-12-05T03:03:43", "upload_time_iso_8601": "2019-12-05T03:03:43.282785Z", "url": "https://files.pythonhosted.org/packages/06/81/3cfeef1fa26b006a1fccc617444cc5bf8f203b68b663d280f77a8a415ab9/privex_helpers-2.5.0.tar.gz", "yanked": false, "yanked_reason": null } ], "2.5.1": [ { "comment_text": "", "digests": { "md5": "2f1ff744b67fd121b3a93c5dc7936913", "sha256": "4603b07748b3c80f8dca54a85b482aa2208b575856603581e1d50bed9480ce23" }, "downloads": -1, "filename": "privex_helpers-2.5.1-py3-none-any.whl", "has_sig": false, "md5_digest": "2f1ff744b67fd121b3a93c5dc7936913", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 97012, "upload_time": "2019-12-07T06:13:15", "upload_time_iso_8601": "2019-12-07T06:13:15.518149Z", "url": "https://files.pythonhosted.org/packages/03/74/b30944d82394acdea7d78e0d058398983a3cf1eeeceb7d7340134b91b739/privex_helpers-2.5.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "99bb12b5f5e9bc200b8dcd215e403fde", "sha256": "9a5944272cb27151a2c861cd914bf911fe1a9f5c48bae6950c04819ab82e194d" }, "downloads": -1, "filename": "privex_helpers-2.5.1.tar.gz", "has_sig": false, "md5_digest": "99bb12b5f5e9bc200b8dcd215e403fde", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 92547, "upload_time": "2019-12-07T06:13:17", "upload_time_iso_8601": "2019-12-07T06:13:17.526528Z", "url": "https://files.pythonhosted.org/packages/24/7f/e16bbea16b8b59b80079771225eaa9d7d322a83903c6302682aca49f6c19/privex_helpers-2.5.1.tar.gz", "yanked": false, "yanked_reason": null } ], "2.6.0": [ { "comment_text": "", "digests": { "md5": "64475c5fc4c7c780311ac4e89e114aad", "sha256": "3aa73691c14c01b7d0ab395916bd256722d2704532affb5716b6063b83f3a384" }, "downloads": -1, "filename": "privex_helpers-2.6.0-py3-none-any.whl", "has_sig": false, "md5_digest": "64475c5fc4c7c780311ac4e89e114aad", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 100639, "upload_time": "2019-12-07T06:13:43", "upload_time_iso_8601": "2019-12-07T06:13:43.086654Z", "url": "https://files.pythonhosted.org/packages/02/de/9a80ed534117f252a4836d1a8e73f180482630a30f8c7e62eb525fcb8503/privex_helpers-2.6.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0e4af26fd078f606dd41b3b2a8d8c7c6", "sha256": "2707f2904e92c9c86886b75d5a5e5b16308d942d26de8db4f1b2c8ef19a5c645" }, "downloads": -1, "filename": "privex_helpers-2.6.0.tar.gz", "has_sig": false, "md5_digest": "0e4af26fd078f606dd41b3b2a8d8c7c6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 95756, "upload_time": "2019-12-07T06:13:45", "upload_time_iso_8601": "2019-12-07T06:13:45.134367Z", "url": "https://files.pythonhosted.org/packages/3e/67/e409c92a05a077a12d386817d75e1dc6987c78f4adf2f667298251deac6b/privex_helpers-2.6.0.tar.gz", "yanked": false, "yanked_reason": null } ], "2.7.0": [ { "comment_text": "", "digests": { "md5": "317c6f66829d1620138e1a507b0ddbdf", "sha256": "6f52d0c1a7004ea8fe7ebdad02daa93b53d0ba6eb3f8c9c4854fceaef7036569" }, "downloads": -1, "filename": "privex_helpers-2.7.0-py3-none-any.whl", "has_sig": false, "md5_digest": "317c6f66829d1620138e1a507b0ddbdf", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 119548, "upload_time": "2019-12-13T09:43:25", "upload_time_iso_8601": "2019-12-13T09:43:25.809315Z", "url": "https://files.pythonhosted.org/packages/63/cf/37fe41655304c0f07e8b6620cd03df2dbe26d58d66a79632427a4f654887/privex_helpers-2.7.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cdac19e51394f4f930873ffec4bb22f1", "sha256": "4e90879341dadbb3dc4410e0bb679c9098121da8aba871514a87de4d4b8de373" }, "downloads": -1, "filename": "privex_helpers-2.7.0.tar.gz", "has_sig": false, "md5_digest": "cdac19e51394f4f930873ffec4bb22f1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 109894, "upload_time": "2019-12-13T09:43:27", "upload_time_iso_8601": "2019-12-13T09:43:27.738305Z", "url": "https://files.pythonhosted.org/packages/19/cd/7d841a537a7da9de98422011f3cd964159f464f569d3adb9622335d5f27d/privex_helpers-2.7.0.tar.gz", "yanked": false, "yanked_reason": null } ], "2.8.0": [ { "comment_text": "", "digests": { "md5": "11cd4ae6c810ce390ede1f380640a80c", "sha256": "cd12b99d733bd88ed393881c77c32f09ea058c4ca982b044467086f1d5d89727" }, "downloads": -1, "filename": "privex_helpers-2.8.0-py3-none-any.whl", "has_sig": false, "md5_digest": "11cd4ae6c810ce390ede1f380640a80c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 123380, "upload_time": "2019-12-17T20:48:25", "upload_time_iso_8601": "2019-12-17T20:48:25.093460Z", "url": "https://files.pythonhosted.org/packages/2e/d8/4fcd5c4851dbae2c82db7d16c550e4ac54cd919e3fae794918febae136ad/privex_helpers-2.8.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8597a5ffcbe97e00acf9b288da4a7993", "sha256": "97e7dc8b65d36824dbd0b6263a657750a056aea7064d2e961c1260246e24345f" }, "downloads": -1, "filename": "privex_helpers-2.8.0.tar.gz", "has_sig": false, "md5_digest": "8597a5ffcbe97e00acf9b288da4a7993", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 113288, "upload_time": "2019-12-17T20:48:27", "upload_time_iso_8601": "2019-12-17T20:48:27.214781Z", "url": "https://files.pythonhosted.org/packages/4f/26/f361eddd0cc716df450dc3c3083413e17c4eff4866e47d560af77ac66f72/privex_helpers-2.8.0.tar.gz", "yanked": false, "yanked_reason": null } ], "2.8.1": [ { "comment_text": "", "digests": { "md5": "87e5a15a4bc8e6cc5442e32a9fff22a8", "sha256": "d2f66bb0a448f4a815acfd88ff10c857804edf5910a465ebcb07a89d6b1e5252" }, "downloads": -1, "filename": "privex_helpers-2.8.1-py3-none-any.whl", "has_sig": false, "md5_digest": "87e5a15a4bc8e6cc5442e32a9fff22a8", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 123606, "upload_time": "2019-12-21T20:50:42", "upload_time_iso_8601": "2019-12-21T20:50:42.102535Z", "url": "https://files.pythonhosted.org/packages/b4/fa/ade05e411c658675ea63743ef01b897d3f57c239e5c64e31687f14587f76/privex_helpers-2.8.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4d762b7cc0a1b976a2236765a29c9649", "sha256": "3b262d05310a87b9a7e1b59f7af101f7067a2f3cdd9f4e46be41edfac69c879a" }, "downloads": -1, "filename": "privex_helpers-2.8.1.tar.gz", "has_sig": false, "md5_digest": "4d762b7cc0a1b976a2236765a29c9649", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 113607, "upload_time": "2019-12-21T20:50:44", "upload_time_iso_8601": "2019-12-21T20:50:44.357396Z", "url": "https://files.pythonhosted.org/packages/ef/74/d1967bb033b5af04e877f13404fb7c40360b8cc3046059e56caffff483b0/privex_helpers-2.8.1.tar.gz", "yanked": false, "yanked_reason": null } ], "2.9.0": [ { "comment_text": "", "digests": { "md5": "9e95cf50b660b6e4b5b822de875b6f3d", "sha256": "8c508f4938cbedd6b463112f7c57f7e0097dabcfe596f050a0575d04cee514bd" }, "downloads": -1, "filename": "privex_helpers-2.9.0-py3-none-any.whl", "has_sig": false, "md5_digest": "9e95cf50b660b6e4b5b822de875b6f3d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 125806, "upload_time": "2020-03-17T22:41:02", "upload_time_iso_8601": "2020-03-17T22:41:02.181871Z", "url": "https://files.pythonhosted.org/packages/df/d6/ac75bb589164dcc4c47bf94fb8b364c42baa02f7132c1d8cb7af8a11f4f6/privex_helpers-2.9.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9b4bd4684d5108d5fc44b26d19eee61d", "sha256": "0c9fdfa64716af55ff5222953e4f4a750639efae21de338fec5cd16d9afcd0ac" }, "downloads": -1, "filename": "privex_helpers-2.9.0.tar.gz", "has_sig": false, "md5_digest": "9b4bd4684d5108d5fc44b26d19eee61d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 115792, "upload_time": "2020-03-17T22:41:04", "upload_time_iso_8601": "2020-03-17T22:41:04.394472Z", "url": "https://files.pythonhosted.org/packages/77/63/39d9812a32c00d39d2112531c96edf88891f9c7512535367ea6eb81c7125/privex_helpers-2.9.0.tar.gz", "yanked": false, "yanked_reason": null } ], "3.0.0": [ { "comment_text": "", "digests": { "md5": "c652d96dd2770a6a043b935208c06989", "sha256": "951db682f45016c6cea684734c058c48086e333bf1cbeff3dc3cd0a3dabe922c" }, "downloads": -1, "filename": "privex_helpers-3.0.0-py3-none-any.whl", "has_sig": false, "md5_digest": "c652d96dd2770a6a043b935208c06989", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 211865, "upload_time": "2020-09-26T04:38:56", "upload_time_iso_8601": "2020-09-26T04:38:56.285091Z", "url": "https://files.pythonhosted.org/packages/5f/fb/ebba38db9a44600d2a9c98c46fef3fcbd3b056531efeddad9223ff2a3cc2/privex_helpers-3.0.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a651235ecdaa3b8325651da259499ff9", "sha256": "7f1dc3aa9f08a7534b8698e8bbb04a47e7aee2e9e0c9e33375536647e98c6a5f" }, "downloads": -1, "filename": "privex_helpers-3.0.0.tar.gz", "has_sig": false, "md5_digest": "a651235ecdaa3b8325651da259499ff9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 187985, "upload_time": "2020-09-26T04:38:58", "upload_time_iso_8601": "2020-09-26T04:38:58.378786Z", "url": "https://files.pythonhosted.org/packages/0c/e5/0eb266943ab9b9688242fb3dbcabb4696ada638afe51117106a5dfd4c1bc/privex_helpers-3.0.0.tar.gz", "yanked": false, "yanked_reason": null } ], "3.1.0": [ { "comment_text": "", "digests": { "md5": "cf4739bcabe98616225bc0ab7b609aaf", "sha256": "ab1da17c5144c64ad32339a1d514004b5edfb2f2ce6376e17489c05a28dc452a" }, "downloads": -1, "filename": "privex_helpers-3.1.0-py3-none-any.whl", "has_sig": false, "md5_digest": "cf4739bcabe98616225bc0ab7b609aaf", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 213152, "upload_time": "2020-10-07T12:31:56", "upload_time_iso_8601": "2020-10-07T12:31:56.382912Z", "url": "https://files.pythonhosted.org/packages/a7/bf/e3d0f6c6e6ace2e7330f00db0a18a9f3b507b926b0ee7017ae4e6d320f30/privex_helpers-3.1.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "42c1ae2bfa9d259b2fbcb8e9f3d4c267", "sha256": "2992ce7e02dfe91124d5360b34ee29b9684dae9e6ff36f2af7535009b349ed78" }, "downloads": -1, "filename": "privex_helpers-3.1.0.tar.gz", "has_sig": false, "md5_digest": "42c1ae2bfa9d259b2fbcb8e9f3d4c267", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 195245, "upload_time": "2020-10-07T12:31:58", "upload_time_iso_8601": "2020-10-07T12:31:58.492113Z", "url": "https://files.pythonhosted.org/packages/13/8d/be23c6fad665569254e5fe09d1ff593415a440bfb8e39e9a330277beb142/privex_helpers-3.1.0.tar.gz", "yanked": false, "yanked_reason": null } ], "3.2.0": [ { "comment_text": "", "digests": { "md5": "dc4a586d249739de68f11021ed9f084e", "sha256": "45fd32c107188d52a15d70bc06848b7f277e112dcbfe75d01abcfdbda42ee1e7" }, "downloads": -1, "filename": "privex_helpers-3.2.0-py3-none-any.whl", "has_sig": false, "md5_digest": "dc4a586d249739de68f11021ed9f084e", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 229658, "upload_time": "2020-11-02T03:56:08", "upload_time_iso_8601": "2020-11-02T03:56:08.821524Z", "url": "https://files.pythonhosted.org/packages/e3/7a/df238633ffff0139e426b42108e738fe30973967e36b24854b3ae787749e/privex_helpers-3.2.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7df850cbe5e036213eba46484769dd9b", "sha256": "b87e464cbd4bd807c4711f774a722eedb9ac3024144ddccceaeeaddd0f700fa4" }, "downloads": -1, "filename": "privex_helpers-3.2.0.tar.gz", "has_sig": false, "md5_digest": "7df850cbe5e036213eba46484769dd9b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 209894, "upload_time": "2020-11-02T03:56:11", "upload_time_iso_8601": "2020-11-02T03:56:11.313977Z", "url": "https://files.pythonhosted.org/packages/d5/9c/6e628e8ae5c373511cbd6c11744e35f4b86ca8ea088a66df5be267d6605b/privex_helpers-3.2.0.tar.gz", "yanked": false, "yanked_reason": null } ], "3.2.1": [ { "comment_text": "", "digests": { "md5": "dcbc46eca00f4eb65fcd94d77b91f495", "sha256": "c6ebcf8f6d4a25e5da57b02716f5b43adefb27698dbffc842825d989743e50b3" }, "downloads": -1, "filename": "privex_helpers-3.2.1-py3-none-any.whl", "has_sig": false, "md5_digest": "dcbc46eca00f4eb65fcd94d77b91f495", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 231270, "upload_time": "2020-11-02T04:48:53", "upload_time_iso_8601": "2020-11-02T04:48:53.269745Z", "url": "https://files.pythonhosted.org/packages/22/7d/c46c19134254ddc6d62fdf250e436770b2911a95bbdde619748aac400ad1/privex_helpers-3.2.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e76a6df925dec626b69f2d18a15a66b3", "sha256": "2f7b9adae53f74c0f6dba5b1fd20b0bbcf87dd124e2a5099454aafa77822ff1f" }, "downloads": -1, "filename": "privex_helpers-3.2.1.tar.gz", "has_sig": false, "md5_digest": "e76a6df925dec626b69f2d18a15a66b3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 211228, "upload_time": "2020-11-02T04:48:55", "upload_time_iso_8601": "2020-11-02T04:48:55.805507Z", "url": "https://files.pythonhosted.org/packages/44/e8/b179dadc0c73b88c51b5e2c0563d6ead690093165fadaaa0549f0cb71ed1/privex_helpers-3.2.1.tar.gz", "yanked": false, "yanked_reason": null } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "dcbc46eca00f4eb65fcd94d77b91f495", "sha256": "c6ebcf8f6d4a25e5da57b02716f5b43adefb27698dbffc842825d989743e50b3" }, "downloads": -1, "filename": "privex_helpers-3.2.1-py3-none-any.whl", "has_sig": false, "md5_digest": "dcbc46eca00f4eb65fcd94d77b91f495", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 231270, "upload_time": "2020-11-02T04:48:53", "upload_time_iso_8601": "2020-11-02T04:48:53.269745Z", "url": "https://files.pythonhosted.org/packages/22/7d/c46c19134254ddc6d62fdf250e436770b2911a95bbdde619748aac400ad1/privex_helpers-3.2.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e76a6df925dec626b69f2d18a15a66b3", "sha256": "2f7b9adae53f74c0f6dba5b1fd20b0bbcf87dd124e2a5099454aafa77822ff1f" }, "downloads": -1, "filename": "privex_helpers-3.2.1.tar.gz", "has_sig": false, "md5_digest": "e76a6df925dec626b69f2d18a15a66b3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 211228, "upload_time": "2020-11-02T04:48:55", "upload_time_iso_8601": "2020-11-02T04:48:55.805507Z", "url": "https://files.pythonhosted.org/packages/44/e8/b179dadc0c73b88c51b5e2c0563d6ead690093165fadaaa0549f0cb71ed1/privex_helpers-3.2.1.tar.gz", "yanked": false, "yanked_reason": null } ], "vulnerabilities": [] }