{ "info": { "author": "TUNE Inc.", "author_email": "jefft@tune.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Natural Language :: English", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Topic :: Software Development :: Libraries :: Python Modules" ], "description": ".. -*- mode: rst -*-\n\nlogging-mv-integrations\n-----------------------\n\nExtension to Python `logging `_ functionality\nintended for TUNE Multiverse Integrations.\n\n\nBadges\n------\n\n.. start-badges\n\n.. list-table::\n :stub-columns: 1\n\n * - docs\n - |docs| |license|\n * - info\n - |hits| |contributors|\n * - tests\n - |travis| |coveralls|\n * - package\n - |version| |supported-versions|\n * - other\n - |requires|\n\n\n.. |docs| image:: https://readthedocs.org/projects/logging-mv-integrations/badge/?style=flat\n :alt: Documentation Status\n :target: http://logging-mv-integrations.readthedocs.io\n\n.. |hits| image:: http://hits.dwyl.io/TuneLab/logging-mv-integrations.svg\n :alt: Hit Count\n :target: http://hits.dwyl.io/TuneLab/logging-mv-integrations\n\n.. |contributors| image:: https://img.shields.io/github/contributors/TuneLab/logging-mv-integrations.svg\n :alt: Contributors\n :target: https://github.com/TuneLab/logging-mv-integrations/graphs/contributors\n\n.. |license| image:: https://img.shields.io/badge/License-MIT-yellow.svg\n :alt: License Status\n :target: https://opensource.org/licenses/MIT\n\n.. |travis| image:: https://travis-ci.org/TuneLab/logging-mv-integrations.svg?branch=master\n :alt: Travis-CI Build Status\n :target: https://travis-ci.org/TuneLab/logging-mv-integrations\n\n.. |coveralls| image:: https://coveralls.io/repos/TuneLab/logging-mv-integrations/badge.svg?branch=master&service=github\n :alt: Code Coverage Status\n :target: https://coveralls.io/r/TuneLab/logging-mv-integrations\n\n.. |requires| image:: https://requires.io/github/TuneLab/logging-mv-integrations/requirements.svg?branch=master\n :alt: Requirements Status\n :target: https://requires.io/github/TuneLab/logging-mv-integrations/requirements/?branch=master\n\n.. |version| image:: https://img.shields.io/pypi/v/logging_mv_integrations.svg?style=flat\n :alt: PyPI Package latest release\n :target: https://pypi.python.org/pypi/logging_mv_integrations\n\n.. |supported-versions| image:: https://img.shields.io/pypi/pyversions/logging-mv-integrations.svg?style=flat\n :alt: Supported versions\n :target: https://pypi.python.org/pypi/logging-mv-integrations\n\n.. end-badges\n\n\nInstall\n-------\n\n.. code-block:: bash\n\n pip install logging_mv_integrations\n\n\nArchitecture\n------------\n\n``logging-mv-integrations`` is an extension of the `logging facility for Python `_\nused for TUNE Multiverse Integrations providing custom logger levels, format, and output.\n\n.. image:: ./images/logging_mv_integrations.png\n :scale: 50 %\n :alt: UML logging-mv-integrations\n\n\nFunction: get_logger()\n----------------------\n\n.. code-block:: python\n\n def get_logger(\n logger_name,\n logger_version=None,\n logger_level=logging.INFO,\n logger_format=LoggingFormat.JSON,\n logger_output=LoggingOutput.STDOUT_COLOR,\n logger_handler=None\n ):\n\n\nget_logger(): Parameters\n^^^^^^^^^^^^^^^^^^^^^^^^\n\n+-----------------+-------------------------------------------------------------------------------------------------------------------------+\n| Parameter | Purpose |\n+=================+=========================================================================================================================+\n| logger_name | Return a logger with the specified name or, if name is None, return a logger which is the root logger of the hierarchy. |\n+-----------------+-------------------------------------------------------------------------------------------------------------------------+\n| logger_version | |\n+-----------------+-------------------------------------------------------------------------------------------------------------------------+\n| logger_format | LoggingFormat |\n+-----------------+-------------------------------------------------------------------------------------------------------------------------+\n| logger_output | LoggingOutput |\n+-----------------+-------------------------------------------------------------------------------------------------------------------------+\n| logger_handler | logging.StreamHandler() or logging.FileHandler() |\n+-----------------+-------------------------------------------------------------------------------------------------------------------------+\n\n\n\nLogging Levels\n^^^^^^^^^^^^^^\n\nSame Python logging levels, including one additional level NOTE.\n\n+------------+------------------------------------------------------------------------------------------------------------------------------------------------+\n| Level | Purpose |\n+============+================================================================================================================================================+\n| DEBUG | Detailed information, typically of interest only when diagnosing problems. |\n+------------+------------------------------------------------------------------------------------------------------------------------------------------------+\n| NOTE | Detailed information, request processing, for example, request using cURL. |\n+------------+------------------------------------------------------------------------------------------------------------------------------------------------+\n| INFO | Confirmation that things are working as expected. *[DEFAULT]* |\n+------------+------------------------------------------------------------------------------------------------------------------------------------------------+\n| WARNING | An indication that something unexpected happened, or indicative of some problem in the near future. The software is still working as expected. |\n+------------+------------------------------------------------------------------------------------------------------------------------------------------------+\n| ERROR | Due to a more serious problem, the software has not been able to perform some function. |\n+------------+------------------------------------------------------------------------------------------------------------------------------------------------+\n| CRITICAL | A serious error, indicating that the program itself may be unable to continue running. |\n+------------+------------------------------------------------------------------------------------------------------------------------------------------------+\n\n\n\nLogging Format\n^^^^^^^^^^^^^^\n\n+------------+-------------------------------------------------------------------------------------------------------+\n| Format | Purpose |\n+============+=======================================================================================================+\n| STANDARD | Standard logging format. |\n+------------+-------------------------------------------------------------------------------------------------------+\n| JSON | JSON logging format. *[DEFAULT]* |\n+------------+-------------------------------------------------------------------------------------------------------+\n\n\n.. code-block:: python\n\n class LoggingFormat(object):\n \"\"\"TUNE Logging Format ENUM\n \"\"\"\n STANDARD = \"standard\"\n JSON = \"json\"\n\n\n\nLogging Output\n^^^^^^^^^^^^^^\n\n+--------------+----------------------------------------------------------------------------------------------+\n| Output | Purpose |\n+==============+==============================================================================================+\n| STDOUT | Standard Output to terminal |\n+--------------+----------------------------------------------------------------------------------------------+\n| STDOUT_COLOR | Standard Output using colored terminal |\n+--------------+----------------------------------------------------------------------------------------------+\n| FILE | Standard Output to file created within *./tmp/log_.json*. |\n+--------------+----------------------------------------------------------------------------------------------+\n\n\n.. code-block:: python\n\n class LoggingOutput(object):\n \"\"\"TUNE Logging Output ENUM\n \"\"\"\n STDOUT = \"stdout\"\n STDOUT_COLOR = \"color\"\n FILE = \"file\"\n\n\nLogging JSON Format\n^^^^^^^^^^^^^^^^^^^\n\n.. code-block:: python\n\n import logging\n from logging_mv_integrations import (LoggingFormat, get_logger, __version__)\n\n log = get_logger(\n logger_name=__name__,\n logger_version=__version__,\n logger_format=LoggingFormat.JSON,\n logger_level=logging.NOTE\n )\n\n log.info(\"logging: info\", extra={'test': __name__})\n log.note(\"logging: note\", extra={'test': __name__})\n log.debug(\"logging: debug\", extra={'test': __name__})\n log.warning(\"logging: warning\", extra={'test': __name__})\n log.error(\"logging: error\", extra={'test': __name__})\n log.critical(\"logging: critical\", extra={'test': __name__})\n log.exception(\"logging: exception\", extra={'test': __name__})\n\n\nLogging JSON Example Output\n^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\n.. code-block:: bash\n\n $ python3 examples/example_logging_json.py\n\n {\"asctime\": \"2017-10-20 08:31:14 -0700\", \"levelname\": \"INFO\", \"name\": \"__main__\",\n \"version\": \"0.1.6\", \"message\": \"logging: info\", \"test\": \"__main__\"}\n {\"asctime\": \"2017-10-20 08:31:14 -0700\", \"levelname\": \"NOTE\", \"name\": \"__main__\",\n \"version\": \"0.1.6\", \"message\": \"logging: note\", \"test\": \"__main__\"}\n {\"asctime\": \"2017-10-20 08:31:14 -0700\", \"levelname\": \"WARNING\", \"name\": \"__main__\",\n \"version\": \"0.1.6\", \"message\": \"logging: warning\", \"test\": \"__main__\"}\n {\"asctime\": \"2017-10-20 08:31:14 -0700\", \"levelname\": \"ERROR\", \"name\": \"__main__\",\n \"version\": \"0.1.6\", \"message\": \"logging: error\", \"test\": \"__main__\"}\n {\"asctime\": \"2017-10-20 08:31:14 -0700\", \"levelname\": \"CRITICAL\", \"name\": \"__main__\",\n \"version\": \"0.1.6\", \"message\": \"logging: critical\", \"test\": \"__main__\"}\n {\"asctime\": \"2017-10-20 08:31:14 -0700\", \"levelname\": \"ERROR\", \"name\": \"__main__\",\n \"version\": \"0.1.6\", \"message\": \"logging: exception\", \"exc_info\": \"NoneType: None\",\n \"test\": \"__main__\"}\n\n\nRequirements\n------------\n\n``logging-mv-integrations`` module is built upon Python 3 and has dependencies upon\nseveral Python modules available within `Python Package Index PyPI `_.\n\n.. code-block:: bash\n\n make install-requirements\n\nor\n\n\n.. code-block:: bash\n\n python3 -m pip uninstall --yes --no-input -r requirements.txt\n python3 -m pip install --upgrade -r requirements.txt\n\n\nDependencies\n^^^^^^^^^^^^\n\n- coloredlogs: https://pypi.python.org/pypi/coloredlogs\n- pprintpp: https://pypi.python.org/pypi/pprintpp\n- python-json-logger: https://pypi.python.org/pypi/python-json-logger\n- Pygments: https://pypi.python.org/pypi/Pygments\n- safe-cast: https://pypi.python.org/pypi/safe-cast\n- wheel: https://pypi.python.org/pypi/wheel\n\n\n.. :changelog:\n\nRelease History\n===============\n\n0.5.4 (2018-02-16)\n------------------\n- migrate to github/TuneLab\n\n0.5.3 (2018-01-25)\n------------------\n- migrate to github/tuneinc\n\n0.5.2 (2017-12-10)\n------------------\n- readthedocs.org\n\n0.4.0 (2017-11-24)\n------------------\n- README\n\n0.3.2 (2017-11-21)\n------------------\n- README\n- Travis CI\n\n0.1.7 (2017-10-26)\n------------------\n- Using Formatted String Literals\n\n0.1.6 (2017-10-19)\n------------------\n- Logging Output: FILE, STDOUT, STDOUT_COLOR\n\n0.1.5 (2017-10-17)\n------------------\n- Fix standard format\n\n0.1.4 (2017-10-09)\n------------------\n- Multiple handlers fix\n\n0.1.3 (2017-09-12)\n------------------\n- Use python standard logging instead of tune_logging and remove all unneeded files\n\n0.1.2 (2017-02-03)\n------------------\n- Switch to using casting from safe-cast package\n\n0.1.1 (2017-02-03)\n------------------\n- Python 3.6 Upgrade\n\n0.0.1 (2016-11-19)\n------------------\n - First Commit\n", "description_content_type": null, "docs_url": null, "download_url": "https://github.com/TuneLab/logging-mv-integrations/archive/v0.5.4.tar.gz", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/TuneLab/logging-mv-integrations", "keywords": "logging tune", "license": "MIT License", "maintainer": "", "maintainer_email": "", "name": "logging-mv-integrations", "package_url": "https://pypi.org/project/logging-mv-integrations/", "platform": "", "project_url": "https://pypi.org/project/logging-mv-integrations/", "project_urls": { "Download": "https://github.com/TuneLab/logging-mv-integrations/archive/v0.5.4.tar.gz", "Homepage": "https://github.com/TuneLab/logging-mv-integrations" }, "release_url": "https://pypi.org/project/logging-mv-integrations/0.5.4/", "requires_dist": null, "requires_python": "", "summary": "Extension to Python `logging` functionality intended for TUNE Multiverse Integrations.", "version": "0.5.4" }, "last_serial": 3852706, "releases": { "0.0.4": [ { "comment_text": "", "digests": { "md5": "5916b54ddbcc826d12f3045c87370ea0", "sha256": "ed35976ef5f2bbcf88f12670548179e6854d0605343c0cdf8600308556dcb280" }, "downloads": -1, "filename": "logging_mv_integrations-0.0.4-py3.5.egg", "has_sig": false, "md5_digest": "5916b54ddbcc826d12f3045c87370ea0", "packagetype": "bdist_egg", "python_version": "3.5", "requires_python": null, "size": 32903, "upload_time": "2016-11-25T15:46:26", "url": "https://files.pythonhosted.org/packages/ec/e0/f3cbac06621a1391a13ba9db2af692cbb9b3329c411d21a8a70b5597e8ac/logging_mv_integrations-0.0.4-py3.5.egg" }, { "comment_text": "", "digests": { "md5": "8ea74f553fef35980eb517a751efc96d", "sha256": "4a478c679ef8ed116f48d1107fd895db37fcd66c657fcc972011d5f46951db1a" }, "downloads": -1, "filename": "logging_mv_integrations-0.0.4-py3-none-any.whl", "has_sig": false, "md5_digest": "8ea74f553fef35980eb517a751efc96d", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 16227, "upload_time": "2016-11-25T15:46:23", "url": "https://files.pythonhosted.org/packages/c1/05/9a470c408db122bc9ca299337a6ee0f0459299fd599ab274f51c0b8b21a5/logging_mv_integrations-0.0.4-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7dab6bfe8a758bcf7338f0f66526276f", "sha256": "42d8fb02a84586779191e3419f0a9c6d73bb84f4a385c7fee9d1924afbb01375" }, "downloads": -1, "filename": "logging-mv-integrations-0.0.4.tar.gz", "has_sig": false, "md5_digest": "7dab6bfe8a758bcf7338f0f66526276f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15745, "upload_time": "2016-11-25T15:46:33", "url": "https://files.pythonhosted.org/packages/80/17/b15e5b7ea8e5068df802a3ea2bcf55ebb467eaa258f4e931ad37c783b44b/logging-mv-integrations-0.0.4.tar.gz" }, { "comment_text": "", "digests": { "md5": "ce4d50d5d47e94f6cba752786e336786", "sha256": "f20f0fc6efdda1d02f66900cf7b8e1e7c9380185ff5ef06afb8f102d573f2ee8" }, "downloads": -1, "filename": "logging-mv-integrations-0.0.4.zip", "has_sig": false, "md5_digest": "ce4d50d5d47e94f6cba752786e336786", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25053, "upload_time": "2016-11-25T15:46:31", "url": "https://files.pythonhosted.org/packages/67/c1/7a25abd91f3d82d0f20c8e46c5a79c9bd17a3d44db32a3d733609f9c89c7/logging-mv-integrations-0.0.4.zip" } ], "0.1.0": [ { "comment_text": "", "digests": { "md5": "00f3ddd15e82a1076c1bd613fa8dd01b", "sha256": "5de16869696449ac6888db727737806a6db4675049fbc420b1c0b9ec69c15a87" }, "downloads": -1, "filename": "logging_mv_integrations-0.1.0-py3.6.egg", "has_sig": false, "md5_digest": "00f3ddd15e82a1076c1bd613fa8dd01b", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 32843, "upload_time": "2017-02-03T14:21:33", "url": "https://files.pythonhosted.org/packages/2d/f3/fd1eb952b9f16d66896859de9c6828f159e7bb2f091f3d5f71e95d181bb8/logging_mv_integrations-0.1.0-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "0b07dbaaea6cccbc21995cc9b3c000be", "sha256": "5aa22535c4cbe7c015b18565dc2110b676d235105d94a69f422325f784864d96" }, "downloads": -1, "filename": "logging_mv_integrations-0.1.0-py3-none-any.whl", "has_sig": false, "md5_digest": "0b07dbaaea6cccbc21995cc9b3c000be", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 17334, "upload_time": "2017-02-03T14:21:29", "url": "https://files.pythonhosted.org/packages/7b/58/518c46ca32626b8926a039ce4c5055dcf3ae0c28119a02cc0716a80208e5/logging_mv_integrations-0.1.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1b00a435c69939f8e3021cc6c74acf25", "sha256": "65c99b9a0b9e1546a594d961671eb69ff49f9f0fc3de857bc203db8c2ad3bb99" }, "downloads": -1, "filename": "logging-mv-integrations-0.1.0.zip", "has_sig": false, "md5_digest": "1b00a435c69939f8e3021cc6c74acf25", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21752, "upload_time": "2017-02-03T14:21:35", "url": "https://files.pythonhosted.org/packages/72/d8/b116a7999518c07b359778435bf1a63073b7759de17c92fb47d2fa187c9e/logging-mv-integrations-0.1.0.zip" } ], "0.1.1": [ { "comment_text": "", "digests": { "md5": "419cb31358a4538e1d7b4d13e9884c55", "sha256": "0da1274b7f1b66623d3991709512753dc361dc4fe7d5d1e39d95732506adeb64" }, "downloads": -1, "filename": "logging_mv_integrations-0.1.1-py3.6.egg", "has_sig": false, "md5_digest": "419cb31358a4538e1d7b4d13e9884c55", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 32838, "upload_time": "2017-02-03T14:31:37", "url": "https://files.pythonhosted.org/packages/41/7e/01ca4213684a80d16025436f155612c4adb5d0de9b25da475632aa125204/logging_mv_integrations-0.1.1-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "9f152f830f3cd1fb82473977b051375f", "sha256": "551b2df51be59d24280f238479f1af4bb4bf8fb8f62a5d85162628cf77866d23" }, "downloads": -1, "filename": "logging_mv_integrations-0.1.1-py3-none-any.whl", "has_sig": false, "md5_digest": "9f152f830f3cd1fb82473977b051375f", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 17327, "upload_time": "2017-02-03T14:31:34", "url": "https://files.pythonhosted.org/packages/69/6a/834ad7024ad9b37512917eb9f9efc1dc8584374b276dd8b018ba070371bb/logging_mv_integrations-0.1.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "54ef48ff55f0b0d0ffd490fcb69a0f4e", "sha256": "713ac15bbe0bb1d347e956ac73f7270421136afca34802bb7b8195a9cbad7336" }, "downloads": -1, "filename": "logging-mv-integrations-0.1.1.tar.gz", "has_sig": false, "md5_digest": "54ef48ff55f0b0d0ffd490fcb69a0f4e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11700, "upload_time": "2017-02-03T14:31:39", "url": "https://files.pythonhosted.org/packages/be/6e/544ae83557563f8a594bcf9c99aa7c7d0f48a84f119af04a2aed74f42ca4/logging-mv-integrations-0.1.1.tar.gz" } ], "0.1.2": [ { "comment_text": "", "digests": { "md5": "981a2e334efb49d66dbbf8d788d931ae", "sha256": "5cfef4ea5642b5171279792510763bb1dce4382c41ed830a42f146bedb75f3f9" }, "downloads": -1, "filename": "logging_mv_integrations-0.1.2-py3.6.egg", "has_sig": false, "md5_digest": "981a2e334efb49d66dbbf8d788d931ae", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 31488, "upload_time": "2017-03-14T13:54:52", "url": "https://files.pythonhosted.org/packages/2e/c1/9d58b6d1c855517d4ac36c57c5f3eb76a72c9fd87bfa7e8ebb03ef4ab2cc/logging_mv_integrations-0.1.2-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "30e6678d2d88f769af89e5e3e3bb9272", "sha256": "b147837cef34c383e287c212240612be97e7d61a8568e365adc281d66ff21dcc" }, "downloads": -1, "filename": "logging_mv_integrations-0.1.2-py3-none-any.whl", "has_sig": false, "md5_digest": "30e6678d2d88f769af89e5e3e3bb9272", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 16825, "upload_time": "2017-03-14T13:54:49", "url": "https://files.pythonhosted.org/packages/c2/16/5bb053fa36b2f3b415271c4d4f1f6c1d2b2859be0666e82737cd68c409be/logging_mv_integrations-0.1.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0946e1875e21e0b69845cee576511263", "sha256": "2efac7203e4b8a125d91142691de76966755a42f57e4eb2efb8a41fcf9a53c6e" }, "downloads": -1, "filename": "logging-mv-integrations-0.1.2.tar.gz", "has_sig": false, "md5_digest": "0946e1875e21e0b69845cee576511263", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11541, "upload_time": "2017-03-14T13:54:55", "url": "https://files.pythonhosted.org/packages/f8/3e/7632ffeeeb53759232a6e58e119ee9c64ed1fbf0a856471b5c7b2c352420/logging-mv-integrations-0.1.2.tar.gz" } ], "0.1.3": [ { "comment_text": "", "digests": { "md5": "5a27fc909ab11478ff8a0824f1a75973", "sha256": "8c8c9c8ac055918572334e64b668dbaf74bdeba211a1e06e6d60462739cbe809" }, "downloads": -1, "filename": "logging_mv_integrations-0.1.3-py3.6.egg", "has_sig": false, "md5_digest": "5a27fc909ab11478ff8a0824f1a75973", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 18558, "upload_time": "2017-09-12T13:03:54", "url": "https://files.pythonhosted.org/packages/e5/c6/9413312e0d10d7e8b3e96f50b3e0754ba27945361d90d321930b9a656bca/logging_mv_integrations-0.1.3-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "9da139fb9ec2c5ebba4ea1ca92b3db34", "sha256": "d567a1d7d19296deb0e36897cf152b9c12243b4c591dea7dc9e4964cce754293" }, "downloads": -1, "filename": "logging_mv_integrations-0.1.3-py3-none-any.whl", "has_sig": false, "md5_digest": "9da139fb9ec2c5ebba4ea1ca92b3db34", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 11407, "upload_time": "2017-09-12T13:03:48", "url": "https://files.pythonhosted.org/packages/cf/9b/ead2955c2658229665cf03ae1041ae10272f14456b4de67285cdd42babce/logging_mv_integrations-0.1.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d5f602da67602bb449211d960ddd63e5", "sha256": "924609283494a67970a966d668d39ea21f66f9d2ba3484ffe185d5fc22dd31c1" }, "downloads": -1, "filename": "logging-mv-integrations-0.1.3.tar.gz", "has_sig": false, "md5_digest": "d5f602da67602bb449211d960ddd63e5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8287, "upload_time": "2017-09-12T13:03:59", "url": "https://files.pythonhosted.org/packages/44/4f/8371b9f7a31be43edd67f6e12c2d84e01c7c5b8a3d281269d1d054227821/logging-mv-integrations-0.1.3.tar.gz" } ], "0.1.4": [ { "comment_text": "", "digests": { "md5": "9b451798ee3da1ba7349d0c6e6d9046a", "sha256": "a701d32821ea119d7478ae09276486a825485de8caa70b86b9ad6222e5b5cfc0" }, "downloads": -1, "filename": "logging_mv_integrations-0.1.4-py3.6.egg", "has_sig": false, "md5_digest": "9b451798ee3da1ba7349d0c6e6d9046a", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 18609, "upload_time": "2017-10-15T06:56:06", "url": "https://files.pythonhosted.org/packages/70/6e/e83461f60fd9bb25f4c3f8de8a45de69936fb03c4fbbca64d6cc285e744f/logging_mv_integrations-0.1.4-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "974015c8e6be3488a4aee22360ee5baa", "sha256": "51f86fc4133b4dc2d4283be828d481b1662e6bdb09e53a3236fa62e7056ec3f2" }, "downloads": -1, "filename": "logging_mv_integrations-0.1.4-py3-none-any.whl", "has_sig": false, "md5_digest": "974015c8e6be3488a4aee22360ee5baa", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 11469, "upload_time": "2017-10-15T06:56:03", "url": "https://files.pythonhosted.org/packages/c4/1a/54a80670acbd27b6214ce52871f63a76de2bd71755c1f54aaae803c8bd3c/logging_mv_integrations-0.1.4-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1718e6bc943f917522f7fbffd6eaa965", "sha256": "74775c7a73eac5a3b3a838089297956615adfeb3885ab80a7f71015e66e24634" }, "downloads": -1, "filename": "logging-mv-integrations-0.1.4.tar.gz", "has_sig": false, "md5_digest": "1718e6bc943f917522f7fbffd6eaa965", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9161, "upload_time": "2017-10-15T06:56:09", "url": "https://files.pythonhosted.org/packages/f4/13/6cf3af7ef735cb01003e28612e6585e9295d17c581ccceba26798cd3f7a1/logging-mv-integrations-0.1.4.tar.gz" } ], "0.1.5": [ { "comment_text": "", "digests": { "md5": "49abe4bb1a47787cbc5b4285d7864509", "sha256": "363f41861e380b0a2dd613c4b6ca238c75f71d3f5b1ada85e29b001726815c8d" }, "downloads": -1, "filename": "logging_mv_integrations-0.1.5-py3.6.egg", "has_sig": false, "md5_digest": "49abe4bb1a47787cbc5b4285d7864509", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 23013, "upload_time": "2017-10-19T14:50:18", "url": "https://files.pythonhosted.org/packages/86/b7/1b832ffbcc6faa7de12af5f201c678a432a1843e4c0e6b74ba502acdccde/logging_mv_integrations-0.1.5-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "4de6adf84c52b51e0b90fa736502750f", "sha256": "ce305948ed614021da232b7e44bd78004089c60ac4e5d15efe259525d733b9d2" }, "downloads": -1, "filename": "logging_mv_integrations-0.1.5-py3-none-any.whl", "has_sig": false, "md5_digest": "4de6adf84c52b51e0b90fa736502750f", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 14711, "upload_time": "2017-10-19T14:50:16", "url": "https://files.pythonhosted.org/packages/d1/a6/85f9e3445c8f79da45155004eeff2b98df30c9a6ac8c29595e42509a19bd/logging_mv_integrations-0.1.5-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3d96dbf951458d1fa04eba9ad33d7f49", "sha256": "e70ff279643fd10d9fea481220adc832a12d6aa131158c1a8656dea17fac2e05" }, "downloads": -1, "filename": "logging-mv-integrations-0.1.5.tar.gz", "has_sig": false, "md5_digest": "3d96dbf951458d1fa04eba9ad33d7f49", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10145, "upload_time": "2017-10-19T14:50:20", "url": "https://files.pythonhosted.org/packages/66/16/3147d7c172e9f152e1966f97e865efc5b1dec6035ff61584413a10e73ed6/logging-mv-integrations-0.1.5.tar.gz" } ], "0.1.6": [ { "comment_text": "", "digests": { "md5": "2be0dd7c753feea79322f35f31b04f23", "sha256": "fff76d9cb25235798f6086d2e48804ba27aa328e36888e61d747924dca20b6db" }, "downloads": -1, "filename": "logging_mv_integrations-0.1.6-py3.6.egg", "has_sig": false, "md5_digest": "2be0dd7c753feea79322f35f31b04f23", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 25696, "upload_time": "2017-10-22T12:47:24", "url": "https://files.pythonhosted.org/packages/7b/4f/f8f2a1137b9a072fe2008285495f8890d17c5cdfc28f2557c02e1d224b2a/logging_mv_integrations-0.1.6-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "9cf146ae7eb405786720f6a78c7ddea4", "sha256": "a002fd3b1c4f4a6377a61e66fe5ed72f205028f5b2d0f9f22563e553bee54532" }, "downloads": -1, "filename": "logging_mv_integrations-0.1.6-py3-none-any.whl", "has_sig": false, "md5_digest": "9cf146ae7eb405786720f6a78c7ddea4", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 17317, "upload_time": "2017-10-22T12:47:21", "url": "https://files.pythonhosted.org/packages/ec/3b/29d5f2833976e1c33a97abfd8e5265e51904c5614537d53e6c82a8269c3c/logging_mv_integrations-0.1.6-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6f27463d581a9de0cc107879f975c632", "sha256": "f0192b7eb9d5904d97dce73697f7aa02d2e577e6f8d2ebec2fdf62189794cc54" }, "downloads": -1, "filename": "logging-mv-integrations-0.1.6.tar.gz", "has_sig": false, "md5_digest": "6f27463d581a9de0cc107879f975c632", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13939, "upload_time": "2017-10-22T12:47:27", "url": "https://files.pythonhosted.org/packages/4b/dc/03699e75cb5498950d33504a19c9ae38d00039da55328ec1e8a54a841a88/logging-mv-integrations-0.1.6.tar.gz" } ], "0.1.8": [ { "comment_text": "", "digests": { "md5": "368e292d6850c0e405b141193d3469d7", "sha256": "d9bca55e14519f9823459587bef15cad0a45aacabd1019669c99c115c66d3b02" }, "downloads": -1, "filename": "logging_mv_integrations-0.1.8-py3.6.egg", "has_sig": false, "md5_digest": "368e292d6850c0e405b141193d3469d7", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 25705, "upload_time": "2017-11-21T21:54:20", "url": "https://files.pythonhosted.org/packages/34/16/935acbefd352863d835746ead18a8fac94a5720f4672beff910bb15fa63b/logging_mv_integrations-0.1.8-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "bd8ecb0fa2d60c13601ca76881c2a2cf", "sha256": "dea03930c73da15bff692507e568e7f4bff147945b241b0c3e97e6e45f249503" }, "downloads": -1, "filename": "logging_mv_integrations-0.1.8-py3-none-any.whl", "has_sig": false, "md5_digest": "bd8ecb0fa2d60c13601ca76881c2a2cf", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 17435, "upload_time": "2017-11-21T21:54:17", "url": "https://files.pythonhosted.org/packages/e4/7f/640af328b48714bc2730aa092bb9abedf1050b906c343980ff1609bb798e/logging_mv_integrations-0.1.8-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "43c8f505a193706b8512fcb2fc058fec", "sha256": "05663d4c79a1b9fbb8e613ce3ae6499c951510a275ddecbd12904d15f7aac3b8" }, "downloads": -1, "filename": "logging-mv-integrations-0.1.8.tar.gz", "has_sig": false, "md5_digest": "43c8f505a193706b8512fcb2fc058fec", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11864, "upload_time": "2017-11-21T21:54:23", "url": "https://files.pythonhosted.org/packages/16/4b/3baf034ee4a600a855f8c9a2e1b9be9de163c3ad45d38c0429db8bd83e14/logging-mv-integrations-0.1.8.tar.gz" } ], "0.1.9": [ { "comment_text": "", "digests": { "md5": "92c6eb7b8d584840aede79f94a808e82", "sha256": "290709c010b1db1d5a8493830f8b2bf5d87c9a5caca3c1024b1fed4c1445b0da" }, "downloads": -1, "filename": "logging_mv_integrations-0.1.9-py3.6.egg", "has_sig": false, "md5_digest": "92c6eb7b8d584840aede79f94a808e82", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 25698, "upload_time": "2017-11-21T21:59:28", "url": "https://files.pythonhosted.org/packages/19/e8/796787b2bf612b54dea06f3792c5412a4169f7884870b486a063ba8f642d/logging_mv_integrations-0.1.9-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "8efbdcbfdf5e955945b9a9aa58908bf1", "sha256": "0a9dff657678c779d0055f361be3b61b04e557ba928acca978e789aa45c69e3c" }, "downloads": -1, "filename": "logging_mv_integrations-0.1.9-py3-none-any.whl", "has_sig": false, "md5_digest": "8efbdcbfdf5e955945b9a9aa58908bf1", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 17416, "upload_time": "2017-11-21T21:59:25", "url": "https://files.pythonhosted.org/packages/60/88/d5b0b1c278903088687151c51ba617708dcbb17d363a403f71e710615566/logging_mv_integrations-0.1.9-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ca2ad98335eb3db21ea8d067dc3cf907", "sha256": "6f889a05b0fe2c59f9b3c4860976cecb8eed24f89457d8135079ae1574d762cc" }, "downloads": -1, "filename": "logging-mv-integrations-0.1.9.tar.gz", "has_sig": false, "md5_digest": "ca2ad98335eb3db21ea8d067dc3cf907", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11865, "upload_time": "2017-11-21T21:59:32", "url": "https://files.pythonhosted.org/packages/94/44/c704ad367030a8760d5b26369f4bb38a75580f4b6b3105526ac08acfc18f/logging-mv-integrations-0.1.9.tar.gz" } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "d10f308f5839d50eca95b831179b2721", "sha256": "5e51f23985f22ba10c5fca47e88b1f3916099f8970b2239654274d0dc3ab6cda" }, "downloads": -1, "filename": "logging_mv_integrations-0.2.0-py3.6.egg", "has_sig": false, "md5_digest": "d10f308f5839d50eca95b831179b2721", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 23979, "upload_time": "2017-11-21T22:02:58", "url": "https://files.pythonhosted.org/packages/90/1a/129c705d1880c2619b26bd380e8178451cf741da2b8d2c677454b1594226/logging_mv_integrations-0.2.0-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "d0f6092e6c7788c83d9008e5f27a9b3c", "sha256": "feee263c9228d0977b5639f6a49872a306268fe7a518bc4202b030e94185566c" }, "downloads": -1, "filename": "logging_mv_integrations-0.2.0-py3-none-any.whl", "has_sig": false, "md5_digest": "d0f6092e6c7788c83d9008e5f27a9b3c", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 14079, "upload_time": "2017-11-21T22:02:54", "url": "https://files.pythonhosted.org/packages/b8/50/6108fdac2a7503b78316ec30d207bed216f55bd1b2f5ff184707b4b0f25f/logging_mv_integrations-0.2.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3821a740695d5aa24b50b06d32a027ab", "sha256": "26e2549adbadc02891fb54f5035c72fa54cc4f3afb8f94fc4ad71ba028918ff8" }, "downloads": -1, "filename": "logging-mv-integrations-0.2.0.tar.gz", "has_sig": false, "md5_digest": "3821a740695d5aa24b50b06d32a027ab", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9694, "upload_time": "2017-11-21T22:03:02", "url": "https://files.pythonhosted.org/packages/8a/e0/71c5379f8b65213f1793b9708379b8dcf4c97cfc56a399cddf7d73a841c6/logging-mv-integrations-0.2.0.tar.gz" } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "15e73dd37d6441a2af18553778b30457", "sha256": "2fcef1f717fbf15b47efb64aa44d7a1c29c28c04f949abdb3add04ca52ae8790" }, "downloads": -1, "filename": "logging_mv_integrations-0.2.1-py3.6.egg", "has_sig": false, "md5_digest": "15e73dd37d6441a2af18553778b30457", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 24130, "upload_time": "2017-11-21T22:04:22", "url": "https://files.pythonhosted.org/packages/5b/92/8dcd0041dc814c924bd54c5cdc31ebc8c72576defaf4648002fdc2ef7bc5/logging_mv_integrations-0.2.1-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "f5fe48450553540999bd8f0b52f15fc5", "sha256": "86305be278240b76606d21febd70f611f8e090f7f21c38704bcae6e666d89412" }, "downloads": -1, "filename": "logging_mv_integrations-0.2.1-py3-none-any.whl", "has_sig": false, "md5_digest": "f5fe48450553540999bd8f0b52f15fc5", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 14367, "upload_time": "2017-11-21T22:04:19", "url": "https://files.pythonhosted.org/packages/fb/ec/e6adbe541c89bf621b7ecf3a23c61b56f5b11a7058c5a392fc73194e5cfb/logging_mv_integrations-0.2.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "364e1b8ad706b7bb8dafec198cbc4904", "sha256": "08d25e25142eda95c740d322c79fdf1868b47388d98b7759c4b9c8eb4feb15ed" }, "downloads": -1, "filename": "logging-mv-integrations-0.2.1.tar.gz", "has_sig": false, "md5_digest": "364e1b8ad706b7bb8dafec198cbc4904", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9859, "upload_time": "2017-11-21T22:04:26", "url": "https://files.pythonhosted.org/packages/0f/8c/d4801782e9ef0b599bfdd91406774fd57c1d642c66805d000a64cc657fa2/logging-mv-integrations-0.2.1.tar.gz" } ], "0.5.0": [ { "comment_text": "", "digests": { "md5": "e227a0d9555704ac537b7ec2cb18c519", "sha256": "181f732f0ad04add9f1b2698a2eb377e79c5caabd4d4aa984657b4b8704b8ca9" }, "downloads": -1, "filename": "logging_mv_integrations-0.5.0-py3.6.egg", "has_sig": false, "md5_digest": "e227a0d9555704ac537b7ec2cb18c519", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 25812, "upload_time": "2017-11-30T01:35:02", "url": "https://files.pythonhosted.org/packages/1f/2e/42e580bbe7c747a50d6a3cd0acbef929207492b7a24b0a0f10e9c8970807/logging_mv_integrations-0.5.0-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "0f868960ed87d9cdbfa56e94b9a55a74", "sha256": "7876e18ee79a872636fca1f51dccbd2142701bd948127beb225f561eb076dc19" }, "downloads": -1, "filename": "logging_mv_integrations-0.5.0-py3-none-any.whl", "has_sig": false, "md5_digest": "0f868960ed87d9cdbfa56e94b9a55a74", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 17705, "upload_time": "2017-11-30T01:34:59", "url": "https://files.pythonhosted.org/packages/0e/0b/222ddafc95b3be4d357878a5b04c1088d3f9eea86370aec6ef97a80c7fed/logging_mv_integrations-0.5.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1e4941fe4fde86f5a087f8a71b43ff58", "sha256": "1751a876b218bde5f9780a21a8fd380c5f759aeedbbb3523224c1d91bd5de1d3" }, "downloads": -1, "filename": "logging-mv-integrations-0.5.0.tar.gz", "has_sig": false, "md5_digest": "1e4941fe4fde86f5a087f8a71b43ff58", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 33310, "upload_time": "2017-11-30T01:35:06", "url": "https://files.pythonhosted.org/packages/3b/a4/d7f71aaa18aee7bd013f487ad821ed766ec75cc5ed788a9136a186465d1a/logging-mv-integrations-0.5.0.tar.gz" } ], "0.5.1": [ { "comment_text": "", "digests": { "md5": "62414f19c816bbed31691649da4a32a2", "sha256": "618ea6002e16c604b9cc1a6c6d60bd20645e8567f7b8a6b7d6ba9461679b4798" }, "downloads": -1, "filename": "logging_mv_integrations-0.5.1-py3.6.egg", "has_sig": false, "md5_digest": "62414f19c816bbed31691649da4a32a2", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 25810, "upload_time": "2017-11-30T02:01:11", "url": "https://files.pythonhosted.org/packages/dc/7d/8f5620c4546ea8ac930372001beec4f63bcaeec318fc8a530a07b6d684b5/logging_mv_integrations-0.5.1-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "4d90d9dea2dbe4e37e0e8c362e5166d1", "sha256": "7ab60f0d7295606de870ababdaf1b58b1db538dc28fa9d31c8c305c1ddf0c873" }, "downloads": -1, "filename": "logging_mv_integrations-0.5.1-py3-none-any.whl", "has_sig": false, "md5_digest": "4d90d9dea2dbe4e37e0e8c362e5166d1", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 17703, "upload_time": "2017-11-30T02:01:08", "url": "https://files.pythonhosted.org/packages/54/34/39009ab3b755eda81849a5c6eaa9831f0a6ac3b4c911b3b28952a82c6f46/logging_mv_integrations-0.5.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4d3eca74e05517d44bebd5f0f5090503", "sha256": "25a2197e12940842513e84262644fececf1e3059b432e86dfb17f58bb3ebef86" }, "downloads": -1, "filename": "logging-mv-integrations-0.5.1.tar.gz", "has_sig": false, "md5_digest": "4d3eca74e05517d44bebd5f0f5090503", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 33290, "upload_time": "2017-11-30T02:01:14", "url": "https://files.pythonhosted.org/packages/67/31/9f3bff355ea590293a430b2b307139655b2273791715650f9110b342b118/logging-mv-integrations-0.5.1.tar.gz" } ], "0.5.2": [ { "comment_text": "", "digests": { "md5": "85721f50c0e9a41524f795f2f19e778b", "sha256": "dd989acd9712aa50d26abdbbda9be325bcfecc71825c39627e235b87b304cb92" }, "downloads": -1, "filename": "logging_mv_integrations-0.5.2-py3.6.egg", "has_sig": false, "md5_digest": "85721f50c0e9a41524f795f2f19e778b", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 25819, "upload_time": "2017-12-10T17:29:24", "url": "https://files.pythonhosted.org/packages/97/57/f733d2020e72fe10e8fa894e81ee2d99300c55e2f21205c1e08524896e3c/logging_mv_integrations-0.5.2-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "31c674e7e1ec6727ff765e2d7ee724b5", "sha256": "892dba80c2b6e9821f52dd1697783a82ed942227854d6b8435c975e1f259b4fd" }, "downloads": -1, "filename": "logging_mv_integrations-0.5.2-py3-none-any.whl", "has_sig": false, "md5_digest": "31c674e7e1ec6727ff765e2d7ee724b5", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 17755, "upload_time": "2017-12-10T17:29:20", "url": "https://files.pythonhosted.org/packages/f3/d4/5a4ad03f470e191d0378537f86a715b04c529cc7c09c19ce48b2898011f2/logging_mv_integrations-0.5.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3e5bfe5c29fa797d148c51e0698ab271", "sha256": "fbea67af1e03445cb830a628c37c4efffdd02e5105084cd327d8bf056c406cca" }, "downloads": -1, "filename": "logging-mv-integrations-0.5.2.tar.gz", "has_sig": false, "md5_digest": "3e5bfe5c29fa797d148c51e0698ab271", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 33350, "upload_time": "2017-12-10T17:29:26", "url": "https://files.pythonhosted.org/packages/6d/4c/ddc004b30a54a8d181855b7192a74eee4b17a8d759e3c1a380fde709e1b7/logging-mv-integrations-0.5.2.tar.gz" } ], "0.5.3": [ { "comment_text": "", "digests": { "md5": "b088f63573bb9b93dae05c883a71b468", "sha256": "541ed1f03619385d1e197fda1e1e304000f57405b5de1c70a0c40d589b45a2fe" }, "downloads": -1, "filename": "logging_mv_integrations-0.5.3-py3-none-any.whl", "has_sig": false, "md5_digest": "b088f63573bb9b93dae05c883a71b468", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 17798, "upload_time": "2018-01-28T19:15:21", "url": "https://files.pythonhosted.org/packages/a2/37/66fee23c26c03da60cf266c600d83de9f7e8975f93b96290fad79f1f2b23/logging_mv_integrations-0.5.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5cb69327a8c477983b730a79010e9287", "sha256": "869eab6f0cfeacac9bdda6401a75ecc05bff38ff5f37d59347abd62c2393ad45" }, "downloads": -1, "filename": "logging-mv-integrations-0.5.3.tar.gz", "has_sig": false, "md5_digest": "5cb69327a8c477983b730a79010e9287", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 33392, "upload_time": "2018-01-28T19:15:20", "url": "https://files.pythonhosted.org/packages/ea/b9/0d12ecf14e825247d95c4e7c3f80a0c58aaf5403037b582d3682632210e6/logging-mv-integrations-0.5.3.tar.gz" } ], "0.5.4": [ { "comment_text": "", "digests": { "md5": "23b2d4c68dfec7618d5fbee869194b46", "sha256": "c442ba7416bc916458d349e7c39ac917f09f2deb46a102ab903f302a708f182c" }, "downloads": -1, "filename": "logging_mv_integrations-0.5.4-py3-none-any.whl", "has_sig": false, "md5_digest": "23b2d4c68dfec7618d5fbee869194b46", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 17830, "upload_time": "2018-02-18T17:44:10", "url": "https://files.pythonhosted.org/packages/d0/b8/c33143766265256d97cf35301afcdaea2a250225294411f7919c3a16808e/logging_mv_integrations-0.5.4-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9b143ba2feed9ed66569770c9761d840", "sha256": "1abb0fddc9121fc4190907df74e91dc605fca04378fd70a9600fc31d520b9c5c" }, "downloads": -1, "filename": "logging-mv-integrations-0.5.4.tar.gz", "has_sig": false, "md5_digest": "9b143ba2feed9ed66569770c9761d840", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 33463, "upload_time": "2018-02-18T17:44:07", "url": "https://files.pythonhosted.org/packages/e1/69/05dd94a8a3937f52dea5ca2f92eaa7ef8e6fc9664551519498157a7cb195/logging-mv-integrations-0.5.4.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "23b2d4c68dfec7618d5fbee869194b46", "sha256": "c442ba7416bc916458d349e7c39ac917f09f2deb46a102ab903f302a708f182c" }, "downloads": -1, "filename": "logging_mv_integrations-0.5.4-py3-none-any.whl", "has_sig": false, "md5_digest": "23b2d4c68dfec7618d5fbee869194b46", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 17830, "upload_time": "2018-02-18T17:44:10", "url": "https://files.pythonhosted.org/packages/d0/b8/c33143766265256d97cf35301afcdaea2a250225294411f7919c3a16808e/logging_mv_integrations-0.5.4-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9b143ba2feed9ed66569770c9761d840", "sha256": "1abb0fddc9121fc4190907df74e91dc605fca04378fd70a9600fc31d520b9c5c" }, "downloads": -1, "filename": "logging-mv-integrations-0.5.4.tar.gz", "has_sig": false, "md5_digest": "9b143ba2feed9ed66569770c9761d840", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 33463, "upload_time": "2018-02-18T17:44:07", "url": "https://files.pythonhosted.org/packages/e1/69/05dd94a8a3937f52dea5ca2f92eaa7ef8e6fc9664551519498157a7cb195/logging-mv-integrations-0.5.4.tar.gz" } ] }