{ "info": { "author": "Matthew Zipay", "author_email": "mattz@ninthtest.info", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: IronPython", "Programming Language :: Python :: Implementation :: Jython", "Programming Language :: Python :: Implementation :: PyPy", "Programming Language :: Python :: Implementation :: Stackless", "Topic :: Software Development :: Libraries", "Topic :: Software Development :: Libraries :: Python Modules", "Topic :: System :: Logging" ], "description": "# Autologging - easier logging and tracing for Python classes\n\nhttp://ninthtest.info/python-autologging/\n\n[![PyPI version](https://img.shields.io/pypi/v/Autologging.svg)](https://pypi.python.org/pypi/Autologging)\n[![Python version](https://img.shields.io/pypi/pyversions/Autologging.svg)](https://pypi.python.org/pypi/Autologging)\n[![Python implementation](https://img.shields.io/pypi/implementation/Autologging.svg)](https://pypi.python.org/pypi/Autologging)\n[![License](https://img.shields.io/pypi/l/Autologging.svg)](https://github.com/mzipay/Autologging/blob/master/LICENSE.txt)\n[![Wheel availability](https://img.shields.io/pypi/wheel/Autologging.svg)](https://pypi.python.org/pypi/Autologging)\n\n## Introduction\n\nAutologging eliminates boilerplate logging setup code and tracing code,\nand provides a means to separate application logging from program flow\nand data tracing.\n\nPython modules that make use of Autologging are cleaner, leaner, and\nmore resilient to changes that would otherwise require updating tracing\nstatements.\n\nAutologging allows for tracing to be configured (and controlled)\nindependently from application logging. Toggle tracing on/off, write\ntrace log records to a separate log, and use different formatting for\ntrace log entries - all via standard Python logging facilities, and\nwithout affecting your application logging.\n\n### What's in the `autologging` namespace?\n\nAutologging exposes two decorators and a custom log level:\n\n**`logged`**\nDecorate a class to create a `__log` member. The logger is named by\ndefault to match the dotted-name of the containing class. A function\nmay also be decorated, creating a `_log` attribute on the function\nobject whose default name matches the containing module.\nA specifically-named logger may also be passed to the decorator (i.e.\n`logged(my_logger)`).\n\n**`traced`**\nDecorate a class to provide **automatic** method call/return tracing. By\ndefault, all class, static, and instance methods are traced (excluding\n\"__special__\" methods, with the exception of `__init__` and `__call__`).\nAs with the `logged` decorator, the default name of the tracing logger\nmatches the dotted-name of the containing class and may be overridden by\npassing a specifically-named logger to the decorator.\nAdditionally, this decorator accepts multiple string arguments that\nexplicitly name the methods to be traced (and may even name\n\"__special__\" methods).\n\nModule-level functions may also be traced using this decorator.\n\n*New in version 1.2.0:* automatic yield/stop tracing of Python\n[generator iterators](https://docs.python.org/3/glossary.html#term-generator-iterator)\n(if the [generator](https://docs.python.org/3/glossary.html#term-generator)\nfunction is traced).\n\n**`TRACE`**\nThe `autologging.TRACE` (level 1) log level is registered with the\nPython `logging` module when Autologging is imported so that tracing\ncan be configured and controlled independently of application logging.\n\nTracing may be disabled entirely by setting the\n`AUTOLOGGING_TRACED_NOOP` environment variable or by calling the\n`autologging.install_traced_noop()` function.\n\n## A brief example\n\nA simple logged and traced class:\n\n```python\n 1 import logging\n 2 import sys\n 3\n 4 from autologging import logged, TRACE, traced\n 5\n 6 @traced\n 7 @logged\n 8 class Example:\n 9\n10 def __init__(self):\n11 self.__log.info(\"initialized\")\n12\n13 def backwards(self, *words):\n14 for word in words:\n15 yield \"\".join(reversed(word))\n16\n17\n18 if __name__ == \"__main__\":\n19 logging.basicConfig(\n20 level=TRACE, stream=sys.stderr,\n21 format=\"%(levelname)s:%(filename)s,%(lineno)d:%(name)s.%(funcName)s:%(message)s\")\n22 example = Example()\n23 for result in example.backwards(\"spam\", \"eggs\"):\n24 print(result)\n```\n\nLogging and tracing output:\n\n```bash\n$ python example.py\nTRACE:example.py,10:__main__.Example.__init__:CALL *() **{}\nINFO:example.py,11:__main__.Example.__init__:initialized\nTRACE:example.py,11:__main__.Example.__init__:RETURN None\nTRACE:example.py,13:__main__.Example.backwards:CALL *('spam', 'eggs') **{}\nTRACE:example.py,15:__main__.Example.backwards:RETURN \nTRACE:example.py,15:__main__.Example.backwards:YIELD 'maps'\nmaps\nTRACE:example.py,15:__main__.Example.backwards:YIELD 'sgge'\nsgge\nTRACE:example.py,15:__main__.Example.backwards:STOP\n```\n\n## Installation\n\nThe easiest way to install Autologging is to use\n[pip](https://pip.pypa.io/):\n\n```bash\n$ pip install Autologging\n```\n\n### Source installation\n\nClone or fork the repository:\n\n```bash\n$ git clone https://github.com/mzipay/Autologging.git\n```\n\nAlternatively, download and extract a source .zip or .tar.gz archive\nfrom https://github.com/mzipay/Autologging/releases,\nhttps://pypi.python.org/pypi/Autologging or\nhttps://sourceforge.net/projects/autologging/files/.\n\nRun the test suite and install the `autologging` module: (make sure you\nhave [setuptools](https://pypi.python.org/pypi/setuptools) installed!)\n\n```bash\n$ cd Autologging\n$ python setup.py test\n$ python setup.py install\n```\n\n### Binary installation\n\nDownload the Python wheel (.whl) or a Windows installer from\nhttps://pypi.python.org/pypi/Autologging or\nhttps://sourceforge.net/projects/autologging/files/.\n\n(Use [pip](https://pip.pypa.io/) or\n[wheel](https://pypi.python.org/pypi/wheel) to install the .whl.)\n\n\n\n", "description_content_type": "text/markdown", "docs_url": "https://pythonhosted.org/Autologging/", "download_url": "https://sourceforge.net/projects/autologging/files/", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://ninthtest.info/python-autologging/", "keywords": "logging,tracing", "license": "MIT License", "maintainer": "", "maintainer_email": "", "name": "Autologging", "package_url": "https://pypi.org/project/Autologging/", "platform": "", "project_url": "https://pypi.org/project/Autologging/", "project_urls": { "Download": "https://sourceforge.net/projects/autologging/files/", "Homepage": "http://ninthtest.info/python-autologging/" }, "release_url": "https://pypi.org/project/Autologging/1.3.2/", "requires_dist": null, "requires_python": "", "summary": "Autologging makes logging and tracing Python classes easy.", "version": "1.3.2" }, "last_serial": 5168345, "releases": { "0.1": [ { "comment_text": "", "digests": { "md5": "6c9ff3ef640b14f5a8f416e70c8eddeb", "sha256": "08e3ca050d293ded509c609c675b6081eedaaf1cffe1bcefae49166b07c14a8d" }, "downloads": -1, "filename": "Autologging-0.1.tar.gz", "has_sig": false, "md5_digest": "6c9ff3ef640b14f5a8f416e70c8eddeb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 84245, "upload_time": "2013-03-29T17:58:39", "url": "https://files.pythonhosted.org/packages/f6/93/55f7718d092bf9e9fd9fddca168a0f6f3f13cda2d89d528eb415afc87d69/Autologging-0.1.tar.gz" } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "768839433e28a2c75bd5192862f5a550", "sha256": "48fc93615bf7a864fda6b300e25cf8ea033267e86fca14c4fcc08bd8fbff9bc3" }, "downloads": -1, "filename": "Autologging-0.2.1.tar.gz", "has_sig": false, "md5_digest": "768839433e28a2c75bd5192862f5a550", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 95767, "upload_time": "2013-11-26T07:05:15", "url": "https://files.pythonhosted.org/packages/dd/79/fee9f9839d8105f0a1a5f0b293f23f4d1cb2715c1a0adaf9b032c7339837/Autologging-0.2.1.tar.gz" } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "491ec3de759cbad7425af159cb2e80f8", "sha256": "961f75fb2e91d063d820ab5866658682baa15abcc1ce309d4adf0ba7d86ef723" }, "downloads": -1, "filename": "Autologging-0.3.0-py2.7.egg", "has_sig": false, "md5_digest": "491ec3de759cbad7425af159cb2e80f8", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 12287, "upload_time": "2015-02-11T23:17:54", "url": "https://files.pythonhosted.org/packages/dc/3f/feb8d6a68c39e1835e15f572284863b31e1e71d3fce79db478afc9a75db3/Autologging-0.3.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "0bb9b958818da402b1a45c394d342698", "sha256": "e736d411d3a02cd74eba5e920e04cb0a2cb10b87dc8aef537b27baf34246496b" }, "downloads": -1, "filename": "Autologging-0.3.0-py3.2.egg", "has_sig": false, "md5_digest": "0bb9b958818da402b1a45c394d342698", "packagetype": "bdist_egg", "python_version": "3.2", "requires_python": null, "size": 12367, "upload_time": "2015-02-11T23:18:03", "url": "https://files.pythonhosted.org/packages/bf/f0/e183f0cd1b31dbda06de7f88a146b93484635c915bb7e7e86454fdde8fff/Autologging-0.3.0-py3.2.egg" }, { "comment_text": "", "digests": { "md5": "1d1a19fa2a73981cd29640277e6aed72", "sha256": "956b968e98933b2a73e1d5c5ff0a521968c15261819545ef7d68e83099c9ae32" }, "downloads": -1, "filename": "Autologging-0.3.0-py3.3.egg", "has_sig": false, "md5_digest": "1d1a19fa2a73981cd29640277e6aed72", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 12540, "upload_time": "2015-02-11T23:18:10", "url": "https://files.pythonhosted.org/packages/de/71/6d9fd845fbcd9637b9f043472368a63dd341f987801023c8b570484c7441/Autologging-0.3.0-py3.3.egg" }, { "comment_text": "", "digests": { "md5": "d98514220e1a4e1411685a3a53262f20", "sha256": "ab9a61fd193adbbfe00eb3078fa2665d927cb30f62fe1e4948fc6332ef669c71" }, "downloads": -1, "filename": "Autologging-0.3.0-py3.4.egg", "has_sig": false, "md5_digest": "d98514220e1a4e1411685a3a53262f20", "packagetype": "bdist_egg", "python_version": "3.4", "requires_python": null, "size": 12457, "upload_time": "2015-02-11T23:18:17", "url": "https://files.pythonhosted.org/packages/b0/00/46fc5cba655e124f1af12018c010eb92c7677fd4485411c0b63da64a3f16/Autologging-0.3.0-py3.4.egg" }, { "comment_text": "", "digests": { "md5": "9a313644fa3f5448dd9f979178a39cc5", "sha256": "da5f7c7f8966ba9bd6e294e30b08e64dc02445c9a308cd57d0773203907bc995" }, "downloads": -1, "filename": "Autologging-0.3.0.tar.gz", "has_sig": false, "md5_digest": "9a313644fa3f5448dd9f979178a39cc5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 113406, "upload_time": "2015-02-11T23:17:39", "url": "https://files.pythonhosted.org/packages/09/65/ba619abd3893b4b11e27e0d153fdc60d7c7aa4b1c5adcecdb138a7ab6467/Autologging-0.3.0.tar.gz" }, { "comment_text": "", "digests": { "md5": "1dd65dc017168d8cff6c376bcd7c92bf", "sha256": "1e793e386c2bbf35dc66272292ddcd4ca608fe95cd81156b38f6c0a3c0b86e81" }, "downloads": -1, "filename": "Autologging-0.3.0.zip", "has_sig": false, "md5_digest": "1dd65dc017168d8cff6c376bcd7c92bf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 147683, "upload_time": "2015-02-11T23:45:15", "url": "https://files.pythonhosted.org/packages/fc/02/e1f6f689183f7c8d9f1ee9f4384f991474d833101cd09887fffedfd478f5/Autologging-0.3.0.zip" } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "b7b66ad60736352f041939a3a9b8cfb4", "sha256": "22086226677d5ea961535e2e7dbfff33cae6bf365560633bfe9a39e94b9d31f0" }, "downloads": -1, "filename": "Autologging-0.4.0-py2.7.egg", "has_sig": false, "md5_digest": "b7b66ad60736352f041939a3a9b8cfb4", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 20365, "upload_time": "2015-02-21T02:34:45", "url": "https://files.pythonhosted.org/packages/62/a2/c4cb0a943bcc2b586d72b62929fb74cf14ece8140d907afe27ebc6b0f3af/Autologging-0.4.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "a52648578662434376892934b4e37a57", "sha256": "1ef9db049b1b6702c83e41015402d820a69058263cb728d84d2f8365ef2d2f65" }, "downloads": -1, "filename": "Autologging-0.4.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a52648578662434376892934b4e37a57", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 12199, "upload_time": "2015-04-22T21:25:02", "url": "https://files.pythonhosted.org/packages/80/00/78de2e0cb49fde54d8393d8c10828f896a7454ef109778a5e5a47b9199ea/Autologging-0.4.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0b3586fc235dec3086ba653ba23c402e", "sha256": "d728c7ed6bacdb11bd4f4fdaf960c154eb10e96204a537426c7fcc1cccf5d1a1" }, "downloads": -1, "filename": "Autologging-0.4.0-py3.2.egg", "has_sig": false, "md5_digest": "0b3586fc235dec3086ba653ba23c402e", "packagetype": "bdist_egg", "python_version": "3.2", "requires_python": null, "size": 20454, "upload_time": "2015-02-21T02:34:58", "url": "https://files.pythonhosted.org/packages/ed/cd/cc20a71bea89924386c249122e467d47cbdfbb3f4997b929f6ea4348b950/Autologging-0.4.0-py3.2.egg" }, { "comment_text": "", "digests": { "md5": "9989b7e3829981ee8750e6e2dee59a38", "sha256": "150a0cc1a435e21cd6dd310d0d22f689e6e18a02aeb29d63f10de086d7059412" }, "downloads": -1, "filename": "Autologging-0.4.0-py3.3.egg", "has_sig": false, "md5_digest": "9989b7e3829981ee8750e6e2dee59a38", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 20761, "upload_time": "2015-02-21T02:35:08", "url": "https://files.pythonhosted.org/packages/28/22/4c491ec6c55d7229ac50cd7e5f6af6d83089b1ac8ce7d8ba95d9d090ea17/Autologging-0.4.0-py3.3.egg" }, { "comment_text": "", "digests": { "md5": "237c8220fa20b73797b6df25f8461796", "sha256": "0c6ebd7ac2ada649caffb3bfb0c209ffb9fd13a85712fb4debe37bbe0b8d57cc" }, "downloads": -1, "filename": "Autologging-0.4.0-py3.4.egg", "has_sig": false, "md5_digest": "237c8220fa20b73797b6df25f8461796", "packagetype": "bdist_egg", "python_version": "3.4", "requires_python": null, "size": 20635, "upload_time": "2015-02-21T02:35:19", "url": "https://files.pythonhosted.org/packages/04/90/edfc3a4659912d144276fb16f8811dfbc33828d70feae908e3e84351e172/Autologging-0.4.0-py3.4.egg" }, { "comment_text": "", "digests": { "md5": "ff3c64679689a2a1a8318922e8db6671", "sha256": "af2d6cf66e72c26445a9dcd305371e2c9e0257430c22b56ea77388a1cd08421c" }, "downloads": -1, "filename": "Autologging-0.4.0.tar.gz", "has_sig": false, "md5_digest": "ff3c64679689a2a1a8318922e8db6671", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 139520, "upload_time": "2015-02-21T02:33:02", "url": "https://files.pythonhosted.org/packages/b8/ef/89d68e708cf76a4fb059bc961acf1c55c0cb298361b3942e1ad59df233ea/Autologging-0.4.0.tar.gz" }, { "comment_text": "", "digests": { "md5": "ef208ca87df1742249499e44e31f0b75", "sha256": "8b824d7b37250cb2cfbe11a261f8ba595d46132d57339f440c0b11113dd68e52" }, "downloads": -1, "filename": "Autologging-0.4.0.zip", "has_sig": false, "md5_digest": "ef208ca87df1742249499e44e31f0b75", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 180254, "upload_time": "2015-02-21T02:45:06", "url": "https://files.pythonhosted.org/packages/35/47/b66432270fd0ca82cb6f52db0c666006455ce38a398180fe7e05e1edcce0/Autologging-0.4.0.zip" } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "ae6ca2aac341ecb37f3ccb90ab0cf69c", "sha256": "4e067b97a3d2bab2a3bf250da83d606a85efc206fa00e6dc1e741345bc2e7c35" }, "downloads": -1, "filename": "Autologging-1.0.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ae6ca2aac341ecb37f3ccb90ab0cf69c", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 11126, "upload_time": "2016-01-19T02:21:12", "url": "https://files.pythonhosted.org/packages/4b/3b/33b431d94220ab98dc8abfa724e13d17b9867cc458382f6bcb6475aa92f2/Autologging-1.0.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "85398cca0953d7ec2f1b22c58e9b9e37", "sha256": "1760d6dc818afb4dfdcb11c11f09e3518a5a0951b8577730aeedec1a838b3508" }, "downloads": -1, "filename": "Autologging-1.0.0.tar.gz", "has_sig": false, "md5_digest": "85398cca0953d7ec2f1b22c58e9b9e37", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 260389, "upload_time": "2016-01-19T02:20:50", "url": "https://files.pythonhosted.org/packages/83/88/5ac1ded8f2c97726110d1b99873e2b2239e9cfb169a451ba08cd697ff2fa/Autologging-1.0.0.tar.gz" }, { "comment_text": "", "digests": { "md5": "8162441eb9375a114346c68b1d970f89", "sha256": "5bc2931017c88f429ff3ffc7c89bc95b8b715d4266232c05a3d2b79531360144" }, "downloads": -1, "filename": "Autologging-1.0.0.win32.exe", "has_sig": false, "md5_digest": "8162441eb9375a114346c68b1d970f89", "packagetype": "bdist_wininst", "python_version": "any", "requires_python": null, "size": 141393, "upload_time": "2016-01-19T09:29:46", "url": "https://files.pythonhosted.org/packages/53/f0/bc7f99c55ac5795a47f62695fdb44f6d521f400e902a07f7bed5c5e2304a/Autologging-1.0.0.win32.exe" }, { "comment_text": "", "digests": { "md5": "f392367c5a079268c2ae7552d287eee6", "sha256": "ab1123677feffb5a4b59c60ed0d11ba8b96d01a8ee5bd6e0898d47842d5d7a6a" }, "downloads": -1, "filename": "Autologging-1.0.0.zip", "has_sig": false, "md5_digest": "f392367c5a079268c2ae7552d287eee6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 326207, "upload_time": "2016-01-19T02:41:04", "url": "https://files.pythonhosted.org/packages/70/21/9b4ffcce3af37623f1210603551e8d1b211312c7f9cbd27dcbd98ab8894e/Autologging-1.0.0.zip" } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "16d669c613d06b8d93aa34abf74b0f1c", "sha256": "c76a240ffb87d5f8ca26c11f089f4c7805599cafacc82d92c361e791aff05bed" }, "downloads": -1, "filename": "Autologging-1.0.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "16d669c613d06b8d93aa34abf74b0f1c", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 12085, "upload_time": "2016-01-26T01:26:10", "url": "https://files.pythonhosted.org/packages/ef/98/160276357710aac0d5ac76cfe0bbbcd3536fec4cb22e341cb41bb42d996f/Autologging-1.0.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ac69b6c451a4ef190436c1b24168bc88", "sha256": "9a21491e9e9d25977ad777c8d9833bbca62d2f86e69d5dad15de42c140b72540" }, "downloads": -1, "filename": "Autologging-1.0.1.tar.gz", "has_sig": false, "md5_digest": "ac69b6c451a4ef190436c1b24168bc88", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 263935, "upload_time": "2016-01-26T01:25:41", "url": "https://files.pythonhosted.org/packages/d3/75/1d9a92c5a3654b398f29042fc19677e8b30854b75340c181c619771956cc/Autologging-1.0.1.tar.gz" }, { "comment_text": "", "digests": { "md5": "6b4024f53109410b8b084760be399c21", "sha256": "48c79362ddcc01fa8d38e605d8c78bc500b34e53bd872dc391d65a20bead1505" }, "downloads": -1, "filename": "Autologging-1.0.1.win32.exe", "has_sig": false, "md5_digest": "6b4024f53109410b8b084760be399c21", "packagetype": "bdist_wininst", "python_version": "any", "requires_python": null, "size": 142268, "upload_time": "2016-01-26T01:28:35", "url": "https://files.pythonhosted.org/packages/2c/12/6c5f899c85138cf597eb7e526ae5a64615572ac11d7ba3d602f61acddb46/Autologging-1.0.1.win32.exe" }, { "comment_text": "", "digests": { "md5": "b01044dfca43121a07fd323a7a1324f7", "sha256": "e2f731fc0cb6653b2faab11a0c31e5baf35c38516a42e7abe7d648ff11afaeb9" }, "downloads": -1, "filename": "Autologging-1.0.1.win32.msi", "has_sig": false, "md5_digest": "b01044dfca43121a07fd323a7a1324f7", "packagetype": "bdist_msi", "python_version": "any", "requires_python": null, "size": 122880, "upload_time": "2016-01-26T01:39:19", "url": "https://files.pythonhosted.org/packages/51/fd/bc78f734dd996f33cf2dca56fbcabc927000a9f37e4b925a8fe9a892df61/Autologging-1.0.1.win32.msi" }, { "comment_text": "", "digests": { "md5": "75e8250692a9fe3caf64c94001539fc6", "sha256": "064f54d4059b4d29ae5b29b6c113f4da519fb25059158d3ff8b006d64e306926" }, "downloads": -1, "filename": "Autologging-1.0.1.zip", "has_sig": false, "md5_digest": "75e8250692a9fe3caf64c94001539fc6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 326767, "upload_time": "2016-01-26T01:25:12", "url": "https://files.pythonhosted.org/packages/1d/9d/243abaf7eef5f12484fbe373da4511b67177142a437507f6301fa8ae1fc6/Autologging-1.0.1.zip" } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "cb799926a02307dd901162c753a7f7f8", "sha256": "29b27dbfda8bbeef307b1f168eac7c4239a4dc31c32f4c7f59573e9867ce927a" }, "downloads": -1, "filename": "Autologging-1.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "cb799926a02307dd901162c753a7f7f8", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 12832, "upload_time": "2016-08-13T02:25:46", "url": "https://files.pythonhosted.org/packages/28/d7/130333aafce6116cf811bd9eda83c90f4c0576ab660e7dd795c7ffeab42d/Autologging-1.1.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "eeb03a4c2ad2244cbaa7d2bd1e6b2962", "sha256": "4c0325745f1d9873712a3f71e37ef78606af978a9f97cb4cef72f55dd5f3d192" }, "downloads": -1, "filename": "Autologging-1.1.0.tar.gz", "has_sig": false, "md5_digest": "eeb03a4c2ad2244cbaa7d2bd1e6b2962", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 271081, "upload_time": "2016-08-13T02:25:34", "url": "https://files.pythonhosted.org/packages/71/c5/45d42127a22d465df0bcccaf0549c133b3b1e95db226eed4bbcb5c455958/Autologging-1.1.0.tar.gz" }, { "comment_text": "", "digests": { "md5": "c26f2a63f973c3f63ce629c272d50634", "sha256": "92fe61d3abd14dc780bfd80ecf243ba7428640a6f7183649d67c4e668f097e52" }, "downloads": -1, "filename": "Autologging-1.1.0.win32.exe", "has_sig": false, "md5_digest": "c26f2a63f973c3f63ce629c272d50634", "packagetype": "bdist_wininst", "python_version": "any", "requires_python": null, "size": 143043, "upload_time": "2016-08-13T02:30:22", "url": "https://files.pythonhosted.org/packages/85/43/ef18b545ff0aad897c52ca5f8ace002f032792f6b87c842c84ae96981b5c/Autologging-1.1.0.win32.exe" }, { "comment_text": "", "digests": { "md5": "2b70b8c5bdfeefd541a66e3484a96ad2", "sha256": "2d57cf5b4ea9db643e7b94419da04d00ce0dc07a9419a3b309a9c5dd63730245" }, "downloads": -1, "filename": "Autologging-1.1.0.win32.msi", "has_sig": false, "md5_digest": "2b70b8c5bdfeefd541a66e3484a96ad2", "packagetype": "bdist_msi", "python_version": "any", "requires_python": null, "size": 122880, "upload_time": "2016-08-13T02:32:32", "url": "https://files.pythonhosted.org/packages/f7/b3/a86f67697004656ecb553bf7552d1e1938801ad9d6d25cb4b94b073aa660/Autologging-1.1.0.win32.msi" }, { "comment_text": "", "digests": { "md5": "6598c060dae41bf25a455f81112b791f", "sha256": "49cfb02c97638564915d01bc96b4dacfeedf5b719cf229c3b269892e9fc32c37" }, "downloads": -1, "filename": "Autologging-1.1.0.zip", "has_sig": false, "md5_digest": "6598c060dae41bf25a455f81112b791f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 339801, "upload_time": "2016-08-13T02:25:30", "url": "https://files.pythonhosted.org/packages/71/b0/896c372d65b13a0fcbc0e7983dfb78097e248b159305c692504ac3f27f2b/Autologging-1.1.0.zip" } ], "1.2.0": [ { "comment_text": "", "digests": { "md5": "5be1bea3108954c9435f200076539314", "sha256": "270364c2258b39e547b7fc112191deac951c0471dfd13a390c77db8efac8837c" }, "downloads": -1, "filename": "Autologging-1.2.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5be1bea3108954c9435f200076539314", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 13083, "upload_time": "2018-08-29T00:34:07", "url": "https://files.pythonhosted.org/packages/64/5e/5d5c4fe2639cd86a5560e18eafb9e8070181e1f35026623360d358037c36/Autologging-1.2.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0419e34f33d456fbf04df3e2bcb40074", "sha256": "636f443d5a6383d2bc5d7ce70f66987b32788afc3acae6b835a0f3b0641190b1" }, "downloads": -1, "filename": "Autologging-1.2.0.win-amd64.exe", "has_sig": false, "md5_digest": "0419e34f33d456fbf04df3e2bcb40074", "packagetype": "bdist_wininst", "python_version": "any", "requires_python": null, "size": 607500, "upload_time": "2018-08-29T00:34:45", "url": "https://files.pythonhosted.org/packages/53/85/82fd18c1d8f4964e2bf66e9803dd0682a57f0e3394a572bcba4964ebfcfb/Autologging-1.2.0.win-amd64.exe" }, { "comment_text": "", "digests": { "md5": "d1571517cd80037497e64c54128586a2", "sha256": "cc4193a5ae234d9f25546ef1878d5fc7c11198a14b0f68134b229e4d71ef18d6" }, "downloads": -1, "filename": "Autologging-1.2.0.zip", "has_sig": false, "md5_digest": "d1571517cd80037497e64c54128586a2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 346987, "upload_time": "2018-08-29T00:37:17", "url": "https://files.pythonhosted.org/packages/ff/0d/7a8c99d193e4cc6208ed36fa9775882f5c1a4131493674e7bfff6b62df22/Autologging-1.2.0.zip" } ], "1.2.1": [ { "comment_text": "", "digests": { "md5": "468649b48260117a26f8145867bcd127", "sha256": "491a8ab49cf99d0059fd38e74187e899aa5bc6ffe9bf777d87517515a37dd3ab" }, "downloads": -1, "filename": "Autologging-1.2.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "468649b48260117a26f8145867bcd127", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 13057, "upload_time": "2018-10-11T03:55:12", "url": "https://files.pythonhosted.org/packages/98/fd/3ab658362ffd472118131c2ddcf1cd35e1c0db47903761a082aa81555c25/Autologging-1.2.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6e6add2135648d620722f4a70fb9344a", "sha256": "092da1eddf11121a184ea21edf6cbc880e6f0ffd3c3c33d50072ef4ac428a0cb" }, "downloads": -1, "filename": "Autologging-1.2.1.win-amd64.exe", "has_sig": false, "md5_digest": "6e6add2135648d620722f4a70fb9344a", "packagetype": "bdist_wininst", "python_version": "any", "requires_python": null, "size": 607475, "upload_time": "2018-10-11T03:55:41", "url": "https://files.pythonhosted.org/packages/84/de/a9d3875421423688b80ca55654182a98090c76d6f241d673650107d262ae/Autologging-1.2.1.win-amd64.exe" }, { "comment_text": "", "digests": { "md5": "28ceab135753f651b62aab0b3185f6c0", "sha256": "73d8b26f97b8e81efadc31580f8586fde6636c4000b84337ed6e0c524d98629b" }, "downloads": -1, "filename": "Autologging-1.2.1.zip", "has_sig": false, "md5_digest": "28ceab135753f651b62aab0b3185f6c0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 346975, "upload_time": "2018-10-11T03:55:52", "url": "https://files.pythonhosted.org/packages/b5/5f/74f449120041ec286e4fd19f3a032d6427c9a54b5fd19e35c9864d159f88/Autologging-1.2.1.zip" } ], "1.3.0": [ { "comment_text": "", "digests": { "md5": "e1cfba9a2601840c352074ae065e93e5", "sha256": "bf64216430e43daeec25a7a103be772701a9e1ad7fef7d0d89790adb5f846e5f" }, "downloads": -1, "filename": "Autologging-1.3.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e1cfba9a2601840c352074ae065e93e5", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 13669, "upload_time": "2019-02-15T23:49:04", "url": "https://files.pythonhosted.org/packages/9a/8f/04057d4999a51357432823a6b101603969ec5c4781d70036aeba21deb5c4/Autologging-1.3.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "78a8b95707af98cb43e75386320bd3e6", "sha256": "6fd8350c5143e6736e3d7b13fc9daabb95a63433665174a45a019ef36bb6d68e" }, "downloads": -1, "filename": "Autologging-1.3.0.win-amd64.exe", "has_sig": false, "md5_digest": "78a8b95707af98cb43e75386320bd3e6", "packagetype": "bdist_wininst", "python_version": "any", "requires_python": null, "size": 608150, "upload_time": "2019-02-15T23:49:31", "url": "https://files.pythonhosted.org/packages/79/65/a9d4f8d17866fd78cc44ab511a47ecb244ebfe536f9525040db8d2443461/Autologging-1.3.0.win-amd64.exe" }, { "comment_text": "", "digests": { "md5": "c4525bd357c619e7e7624832afe17d36", "sha256": "f21fa354873a649d1f60ff4778c8f2323724472f19cffaeb78af6b3bef36ab6d" }, "downloads": -1, "filename": "Autologging-1.3.0.zip", "has_sig": false, "md5_digest": "c4525bd357c619e7e7624832afe17d36", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 352484, "upload_time": "2019-02-15T23:49:54", "url": "https://files.pythonhosted.org/packages/8a/2d/cfc7539dfaff982edad06735c07f0410d4cd4f30ba0f3e0b975e8c6dc1c3/Autologging-1.3.0.zip" } ], "1.3.1": [ { "comment_text": "", "digests": { "md5": "5b8b6dcab4616d3a5d5c6b3750688b50", "sha256": "8fd6ff71e36dd99b61937c81e0ccaa859f4051d2887f82f72d18a6b2b0a43bd9" }, "downloads": -1, "filename": "Autologging-1.3.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5b8b6dcab4616d3a5d5c6b3750688b50", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 13303, "upload_time": "2019-02-24T19:05:18", "url": "https://files.pythonhosted.org/packages/bd/34/fb033bdc30ab3f9646483a1923daf015b90546fa22a3562e6c34cf2d27dc/Autologging-1.3.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a9fe47f1043c7b97b8c90fdc133e49e6", "sha256": "6bb9b90ba71b442e99bb8c0856e914c55fa5279026f4fdefb7d84f00f9be9060" }, "downloads": -1, "filename": "Autologging-1.3.1.win-amd64.exe", "has_sig": false, "md5_digest": "a9fe47f1043c7b97b8c90fdc133e49e6", "packagetype": "bdist_wininst", "python_version": "any", "requires_python": null, "size": 607749, "upload_time": "2019-02-24T19:05:36", "url": "https://files.pythonhosted.org/packages/3e/f7/ab0c7ac51f6a22a56121cc414defdad4511c393cc5eafe8e3b60b6d362b8/Autologging-1.3.1.win-amd64.exe" }, { "comment_text": "", "digests": { "md5": "73e8c1323c917c37b8321b05450765e1", "sha256": "170222e2d6db674f37a71d3314dbfb29975baa9d376f8074691fa3b0412399d0" }, "downloads": -1, "filename": "Autologging-1.3.1.zip", "has_sig": false, "md5_digest": "73e8c1323c917c37b8321b05450765e1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 329507, "upload_time": "2019-02-24T19:05:50", "url": "https://files.pythonhosted.org/packages/40/3d/8060c131a6e17d34ae4ac9efa5d8f65a5b04ea2bb16c681eb5c8e4a149cf/Autologging-1.3.1.zip" } ], "1.3.2": [ { "comment_text": "", "digests": { "md5": "0df04f9bdd573a9cf5fa705c3f6eb382", "sha256": "a14c6950a003e674a8fac03e7de03fb8cd18f7a42caa87ac5152556e8d389ae5" }, "downloads": -1, "filename": "Autologging-1.3.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "0df04f9bdd573a9cf5fa705c3f6eb382", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 13780, "upload_time": "2019-04-20T18:37:29", "url": "https://files.pythonhosted.org/packages/77/a8/73ca572f00e610bc0c36b429396aa431ede8dd05ecfa6fb58a89d72cfc7c/Autologging-1.3.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5c4cfd6fc6ed17ce970e7fdf22f1f226", "sha256": "e1f91cf65898f9c3063f7ca37aad6f9a7ce1205b83ec89f0ef66381f07bcab4b" }, "downloads": -1, "filename": "Autologging-1.3.2.win-amd64.exe", "has_sig": false, "md5_digest": "5c4cfd6fc6ed17ce970e7fdf22f1f226", "packagetype": "bdist_wininst", "python_version": "any", "requires_python": null, "size": 608226, "upload_time": "2019-04-20T18:37:53", "url": "https://files.pythonhosted.org/packages/96/9e/c7621d21cbc631dc391ba51c17dc05b24c5be1ea682725f540ee06e77493/Autologging-1.3.2.win-amd64.exe" }, { "comment_text": "", "digests": { "md5": "c0d0b89a72441421a1d0821ae8694a37", "sha256": "117659584d8aab8cf62046f682f8e57b54d958b8571c737fa8bf15c32937fbb6" }, "downloads": -1, "filename": "Autologging-1.3.2.zip", "has_sig": false, "md5_digest": "c0d0b89a72441421a1d0821ae8694a37", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 331690, "upload_time": "2019-04-20T18:38:09", "url": "https://files.pythonhosted.org/packages/06/dd/2062256827437ba3584b94a595b024bdfab17523b36e4749f220f7b60ec5/Autologging-1.3.2.zip" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "0df04f9bdd573a9cf5fa705c3f6eb382", "sha256": "a14c6950a003e674a8fac03e7de03fb8cd18f7a42caa87ac5152556e8d389ae5" }, "downloads": -1, "filename": "Autologging-1.3.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "0df04f9bdd573a9cf5fa705c3f6eb382", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 13780, "upload_time": "2019-04-20T18:37:29", "url": "https://files.pythonhosted.org/packages/77/a8/73ca572f00e610bc0c36b429396aa431ede8dd05ecfa6fb58a89d72cfc7c/Autologging-1.3.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5c4cfd6fc6ed17ce970e7fdf22f1f226", "sha256": "e1f91cf65898f9c3063f7ca37aad6f9a7ce1205b83ec89f0ef66381f07bcab4b" }, "downloads": -1, "filename": "Autologging-1.3.2.win-amd64.exe", "has_sig": false, "md5_digest": "5c4cfd6fc6ed17ce970e7fdf22f1f226", "packagetype": "bdist_wininst", "python_version": "any", "requires_python": null, "size": 608226, "upload_time": "2019-04-20T18:37:53", "url": "https://files.pythonhosted.org/packages/96/9e/c7621d21cbc631dc391ba51c17dc05b24c5be1ea682725f540ee06e77493/Autologging-1.3.2.win-amd64.exe" }, { "comment_text": "", "digests": { "md5": "c0d0b89a72441421a1d0821ae8694a37", "sha256": "117659584d8aab8cf62046f682f8e57b54d958b8571c737fa8bf15c32937fbb6" }, "downloads": -1, "filename": "Autologging-1.3.2.zip", "has_sig": false, "md5_digest": "c0d0b89a72441421a1d0821ae8694a37", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 331690, "upload_time": "2019-04-20T18:38:09", "url": "https://files.pythonhosted.org/packages/06/dd/2062256827437ba3584b94a595b024bdfab17523b36e4749f220f7b60ec5/Autologging-1.3.2.zip" } ] }