{ "info": { "author": "Rocky Bernstein", "author_email": "rocky@gnu.org", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Environment :: Console", "Intended Audience :: Developers", "License :: OSI Approved :: GNU General Public License v3 (GPLv3)", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 3.2", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Topic :: Software Development :: Debuggers", "Topic :: Software Development :: Libraries :: Python Modules" ], "description": "|buildstatus| |license| |Supported Python Versions|\n\n.. contents:: :local:\n\nAbstract\n========\n\nThis is a gdb-like debugger for Python. It is a rewrite of *pdb* from\nthe ground up.\n\nA command-line interface (CLI) is provided as well as an remote access\ninterface over TCP/IP.\n\nSee the Tutorial_ for how to use. See ipython-trepan_ for using this\nin *ipython* or an *ipython notebook*.\n\nThis package is for Python 3.2 and above. See trepan2_ for the same code\nmodified to work with Python 2.\n\nFeatures\n========\n\nSince this debugger is similar to other_ trepanning_ debuggers_ and *gdb*\nin general, knowledge gained by learning this is transferable to those\ndebuggers and vice versa.\n\nThere's a lot of cool stuff here that's not in the stock\nPython debugger *pdb*.\n\n\nExact location information\n--------------------------\n\nPython reports line information on the granularity of a line. To get\nmore precise information, we can (de)parse into Python the byte code\naround a bytecode offset such as the place you are stopped at.\n\nSo far as I know, there is no other debugger that can do this.\n\n\nDebugging Python bytecode (no source available)\n-----------------------------------------------\n\nYou can pass the debugger the name of Python bytecode and many times,\nthe debugger will merrily proceed. This debugger tries very hard find\nthe source code. Either by using the current executable search path\n(e.g. `PATH`) or for some by looking inside the bytecode for a\nfilename in the main code object (`co_filename`) and applying that\nwith a search path which takes into account directory where the\nbytecode lives.\n\nFailing to find source code this way, and in other situations where\nsource code can't be found, the debugger will decompile the bytecode\nand use that for showing source test. *This allows us to debug `eval`'d\nor `exec''d code.*\n\nBut if you happen to know where the source code is located, you can\nassociate a file source code with the current name listed in the\nbytecode. See the set_substitute_ command for details here.\n\n\nSource-code Syntax Colorization\n-------------------------------\n\nStarting with release 0.2.0, terminal source code is colorized via\npygments_ . And with that you can set the pygments color style,\ne.g. \"colorful\", \"paraiso-dark\". See set_style_ . Furthermore, we make use\nof terminal bold and emphasized text in debugger output and help\ntext. Of course, you can also turn this off. Starting with release\n0.6.0, you can use your own pygments_style_, provided you have a\nterminal that supports 256 colors. If your terminal supports the basic\nANSI color sequences only, we support that too in both dark and light\nthemes.\n\n\nCommand Completion\n------------------\n\nStarting with release 2.8, readline command completion has been\nadded. Command completion is not just a simple static list, but varies\ndepending on the context. For example, for frame-changing commands\nwhich take optional numbers, on the list of *valid numbers* is\nconsidered.\n\nTerminal Handling\n-----------------\n\nWe can adjust debugger output depending on the line width of your\nterminal. If it changes, or you want to adjust it, see set_width_ .\n\nSmart Eval\n----------\n\nStarting with release 0.2.0, if you want to evaluate the current\nsource line before it is run in the code, use ``eval`` or\n``deval``. To evaluate text of a common fragment of line, such as the\nexpression part of an *if* statement, you can do that with\n``eval?`` or ``deval?``. See eval_ for more information.\n\nMore Stepping Control\n---------------------\n\nSometimes you want small steps, and sometimes large stepping.\n\nThis fundamental issue is handled in a couple ways:\n\nStep Granularity\n................\n\nThere are now ``step`` *event* and ``next`` *event* commands with\naliases to ``s+``, ``s>`` and so on. The plus-suffixed commands force\na different line on a subsequent stop, the dash-suffixed commands\ndon't. Suffixes ``>``, ``<``, and ``!`` specify ``call``, ``return``\nand ``exception`` events respectively. And without a suffix you get\nthe default; this is set by the `set different` command.\n\nDocumentation\n-------------\n\nDocumentation: http://python3-trepan.readthedocs.org\n\nEvent Filtering and Tracing\n...........................\n\nBy default the debugger stops at every event: ``call``, ``return``,\n``line``, ``exception``, ``c-call``, ``c-exception``. If you just want\nto stop at ``line`` events (which is largely what you happens in\n*pdb*) you can. If however you just want to stop at calls and returns,\nthat's possible too. Or pick some combination.\n\nIn conjunction with handling *all* events by default, the event status is shown when stopped. The reason for stopping is also available via `info program`.\n\nEvent Tracing of Calls and Returns\n----------------------------------\n\nI'm not sure why this was not done before. Probably because of the\nlack of the ability to set and move by different granularities,\ntracing calls and returns lead to too many uninteresting stops (such\nas at the same place you just were at). Also, stopping on function\ndefinitions probably also added to this tedium.\n\nBecause we're really handling return events, we can show you the return value. (*pdb* has an \"undocumented\" *retval* command that doesn't seem to work.)\n\nDebugger Macros via Python Lambda expressions\n---------------------------------------------\n\nStarting with release 0.2.3, there are debugger macros. In *gdb*,\nthere is a *macro* debugger command to extend debugger commands.\n\nHowever Python has its own rich programming language so it seems silly\nto recreate the macro language that is in *gdb*. Simpler and more\npowerful is just to use Python here. A debugger macro here is just a\nlambda expression which returns a string or a list of strings. Each\nstring returned should be a debugger command.\n\nWe also have *aliases* for the extremely simple situation where you\nwant to give an alias to an existing debugger command. But beware:\nsome commands, like step_ inspect command suffixes and change their\nbehavior accordingly.\n\nWe also envision a number of other ways to allow extension of this\ndebugger either through additional modules, or user-supplied debugger\ncommand directories.\n\nIf what you were looking for in macros was more front-end control over\nthe debugger, then consider using the experimental (and not finished)\nBullwinkle protocol.\n\nByte-code Instruction Introspection\n------------------------------------\n\nWe do more in the way of looking at the byte codes to give better information. Through this we can provide:\n\n* a *skip* command. It is like the *jump* command, but you don't have to deal with line numbers.\n* disassembly of code fragments. You can now disassemble relative to the stack frames you are currently stopped at.\n* Better interpretation of where you are when inside *execfile* or *exec*. (But really though this is probably a Python compiler misfeature.)\n* Check that breakpoints are set only where they make sense.\n* A more accurate determination of if you are at a function-defining *def* statement (because the caller instruction contains ``MAKE_FUNCTION``.)\n\nEven without \"deparsing\" mentioned above, the abilty to disassemble by line number range or byte-offset range lets you tell exactly where you are and code is getting run.\n\nSome Debugger Command Arguments can be Variables and Expressions\n----------------------------------------------------------------\n\nCommands that take integer arguments like frame-moving commands like\n*up*, allow you to use a Python expression which may include local or\nglobal variables that evaluates to an integer. This eliminates the\nneed in *gdb* for special \"dollar\" debugger variables. (Note however\nbecause of *shlex* parsing, expressions can't have embedded blanks.)\n\nOut-of-Process Debugging\n------------------------\n\nYou can now debug your program in a different process or even a different computer on a different network!\n\nEgg, Wheel, and Tarballs\n------------------------\n\nCan be installed via the usual *pip* or *easy_install*. There is a\nsource tarball. `How To Install\n`_ has\nfull instructions and installing from git and by other means.\n\nModularity\n----------\n\nThe Debugger plays nice with other trace hooks. You can have several debugger objects.\n\nMany of the things listed below doesn't directly effect end-users, but\nit does eventually by way of more robust and featureful code. And\nkeeping developers happy is a good thing.(TM)\n\n* Commands and subcommands are individual classes now, not methods in a class. This means they now have properties like the context in which they can be run, minimum abbreviation name or alias names. To add a new command you basically add a file in a directory.\n* I/O is it's own layer. This simplifies interactive readline behavior from reading commands over a TCP socket.\n* An interface is it's own layer. Local debugging, remote debugging, running debugger commands from a file (`source`) are different interfaces. This means, for example, that we are able to give better error reporting if a debugger command file has an error.\n* There is an experimental Python-friendly interface for front-ends\n* more testable. Much more unit and functional tests. More of *pydb*'s integration test will eventually be added.\n\nSee Also\n--------\n\n* trepan2_ : trepan debugger for Python 2\n* pydbgr_ : previous incarnation of debugger\n* pydb_ : even older incarnation of debugger (for very old Python 2)\n* Tutorial_: Tutorial for how to use\n* https://pypi.python.org/pypi/uncompyle6 : Python decompiler\n* https://pypi.python.org/pypi/xdis : cross-platform disassembler\n\n\n.. _pygments: http://pygments.org\n.. _pygments_style: http://pygments.org/docs/styles/\n.. _howtoinstall: https://github.com/rocky/python3-trepan/wiki/How-to-Install\n.. _pydb: http://bashdb.sf.net/pydb\n.. _pydbgr: https://pypi.python.org/pypi/pydbgr\n.. _trepan2: https://pypi.python.org/pypi/trepan2\n.. _trepan3: https://github.com/rocky/python3-trepan\n.. _other: https://www.npmjs.com/package/trepanjs\n.. _trepanning: https://rubygems.org/gems/trepanning\n.. _debuggers: https://metacpan.org/pod/Devel::Trepan\n.. _this: http://bashdb.sourceforge.net/pydb/features.html\n.. _Tutorial: http://python2-trepan.readthedocs.io/en/latest/entry-exit.html\n.. |downloads| image:: https://img.shields.io/pypi/dd/trepan3k.svg\n :target: https://pypi.python.org/pypi/trepan3k/\n.. |buildstatus| image:: https://travis-ci.org/rocky/python3-trepan.svg\n\t\t :target: https://travis-ci.org/rocky/python3-trepan\n :target: https://travis-ci.org/rocky/python3-trepan/\n.. _ipython-trepan: https://github.com/rocky/ipython-trepan\n.. |license| image:: https://img.shields.io/pypi/l/trepan.svg\n :target: https://pypi.python.org/pypi/trepan3k\n :alt: License\n.. _set_style: https://python3-trepan.readthedocs.org/en/latest/commands/set/style.html\n.. _set_substitute: https://python3-trepan.readthedocs.org/en/latest/commands/set/substitute.html\n.. _set_width: https://python3-trepan.readthedocs.org/en/latest/commands/set/width.html\n.. _eval: https://python3-trepan.readthedocs.org/en/latest/commands/data/eval.html\n.. _step: https://python3-trepan.readthedocs.org/en/latest/commands/running/step.html\n.. _install: http://python3-trepan.readthedocs.org/en/latest/install.html\n.. |Supported Python Versions| image:: https://img.shields.io/pypi/pyversions/trepan2.svg\n :target: https://pypi.python.org/pypi/trepan3k/", "description_content_type": null, "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://github.com/rocky/python3-trepan/", "keywords": "", "license": "GPL3", "maintainer": "", "maintainer_email": "", "name": "trepan", "package_url": "https://pypi.org/project/trepan/", "platform": "", "project_url": "https://pypi.org/project/trepan/", "project_urls": { "Homepage": "http://github.com/rocky/python3-trepan/" }, "release_url": "https://pypi.org/project/trepan/0.8.6/", "requires_dist": null, "requires_python": "", "summary": "GDB-like Python Debugger in the Trepan family", "version": "0.8.6" }, "last_serial": 3651330, "releases": { "0.2.5": [ { "comment_text": "", "digests": { "md5": "d013f1b3b254c28881c07a342d29c26a", "sha256": "a3265f6cdc6758f3dc5ab2eebae499a1dc25a61a50e09082f286c11ede1d2e5e" }, "downloads": -1, "filename": "trepan-0.2.5_01-py3.3.egg", "has_sig": false, "md5_digest": "d013f1b3b254c28881c07a342d29c26a", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 474200, "upload_time": "2013-03-24T04:40:06", "url": "https://files.pythonhosted.org/packages/6d/43/91cf2ac38f721f0b010ab78a66f4c39efa92dc12aa718fd4d82ca5092c8e/trepan-0.2.5_01-py3.3.egg" }, { "comment_text": "", "digests": { "md5": "5182ab28137eb756ae230b1719bafba0", "sha256": "43160b3035e44b48bb4d3924d97550e9c1dbff3f3bef8e7447a6ad3823990737" }, "downloads": -1, "filename": "trepan-0.2.5-py3.2.egg", "has_sig": false, "md5_digest": "5182ab28137eb756ae230b1719bafba0", "packagetype": "bdist_egg", "python_version": "3.2", "requires_python": null, "size": 467601, "upload_time": "2013-03-23T17:45:44", "url": "https://files.pythonhosted.org/packages/68/bb/c0ab0157abfc80332c5d1190bf0a8cb6ed64929297400cc10d0a90031db0/trepan-0.2.5-py3.2.egg" }, { "comment_text": "", "digests": { "md5": "1ba72e90e51bcb327cb077b5b0322df6", "sha256": "e6dcde9acef4881809f4365a6848992762e1082e0c817d88d91b0bb330eb579d" }, "downloads": -1, "filename": "trepan-0.2.5.tar.gz", "has_sig": false, "md5_digest": "1ba72e90e51bcb327cb077b5b0322df6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 117653, "upload_time": "2013-03-23T17:46:12", "url": "https://files.pythonhosted.org/packages/ef/72/4f20ebc8040c73d5ad60229a6e926b7edb0eff451af48151ddc632b933f7/trepan-0.2.5.tar.gz" } ], "0.2.7": [ { "comment_text": "", "digests": { "md5": "45bfe9f740c55b915dcb700860cb8bee", "sha256": "778bf016d3e5296a88d881d1e267e4e65f98bd5aca09ff34b2064f1cc23cf982" }, "downloads": -1, "filename": "trepan-0.2.7-py2.4.egg", "has_sig": false, "md5_digest": "45bfe9f740c55b915dcb700860cb8bee", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 523802, "upload_time": "2013-04-19T23:48:37", "url": "https://files.pythonhosted.org/packages/b6/f1/5384ff171766c06e97773126a817a70ac3f27edc11bf6c1b66e4bcbbf660/trepan-0.2.7-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "d042450fab12b46fb58c430dd64848fe", "sha256": "4e80bf8be0c8c0b01a8404d931f80c854627c3079da6bf4827aa1dde99ed0327" }, "downloads": -1, "filename": "trepan-0.2.7-py2.5.egg", "has_sig": false, "md5_digest": "d042450fab12b46fb58c430dd64848fe", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 519974, "upload_time": "2013-04-20T00:00:32", "url": "https://files.pythonhosted.org/packages/ee/f1/8fd6a11e3eb82c768990b7eac30e9ea8f91d125395e394434c05d188ff4e/trepan-0.2.7-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "d30efb0e2f14d7947bfe9a4c79d03d07", "sha256": "bfed8eb2fb67d9ff64bdea25ec35d7a86e78e54ebe02ba7eb3d34c39066bd88e" }, "downloads": -1, "filename": "trepan-0.2.7-py2.6.egg", "has_sig": false, "md5_digest": "d30efb0e2f14d7947bfe9a4c79d03d07", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 519420, "upload_time": "2013-04-20T00:00:51", "url": "https://files.pythonhosted.org/packages/db/78/9176ec8894ad4be6b8e0b05e4c64425d35ea3aab05549589cc348ea67078/trepan-0.2.7-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "c3b7c89ae4e4e38a00c7c352de0cbd75", "sha256": "47f68180442f92e8fb3202eb304770ebf087ae1d50a86a1d280af74061145329" }, "downloads": -1, "filename": "trepan-0.2.7-py2.7.egg", "has_sig": false, "md5_digest": "c3b7c89ae4e4e38a00c7c352de0cbd75", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 518048, "upload_time": "2013-04-20T00:01:13", "url": "https://files.pythonhosted.org/packages/8e/76/571692664b37eaa9cff3f2243a30de1033f9d1f899bbb00e1381bb1359b2/trepan-0.2.7-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "1506a95097cd1f4bc49825b1372b2d44", "sha256": "ea7cade49889fbeea5e0e27fadc95a57514976f24f1ad2c3ff825477fe7c0157" }, "downloads": -1, "filename": "trepan-0.2.7.tar.gz", "has_sig": false, "md5_digest": "1506a95097cd1f4bc49825b1372b2d44", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 174152, "upload_time": "2013-05-12T16:33:55", "url": "https://files.pythonhosted.org/packages/93/8c/a5db3ed0ccb21b30f0163b6b190a67f3544aeccfd8b8482324ee26b9397c/trepan-0.2.7.tar.gz" } ], "0.2.8": [ { "comment_text": "", "digests": { "md5": "0837d38b681ccafbe8395426699505df", "sha256": "6a62b1d6991e778c9aa084a292a23dc5dbcb6801d6d8601226a0d29778756e70" }, "downloads": -1, "filename": "trepan-0.2.8-py2.4.egg", "has_sig": false, "md5_digest": "0837d38b681ccafbe8395426699505df", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 527537, "upload_time": "2013-05-12T16:58:27", "url": "https://files.pythonhosted.org/packages/ea/2a/b80ebac85119c594e3641580f1d0c4dff999c32e72c25148a90373fc1ee3/trepan-0.2.8-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "7b729511f4f26a9d63f05a413f3db1a9", "sha256": "a03e090e5bcd8ec94da67ad2da2586e56980b09be4c71328f85358ac06f66974" }, "downloads": -1, "filename": "trepan-0.2.8-py2.5.egg", "has_sig": false, "md5_digest": "7b729511f4f26a9d63f05a413f3db1a9", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 523635, "upload_time": "2013-05-12T16:58:33", "url": "https://files.pythonhosted.org/packages/89/c1/be150689bd920c3a0da155b285841126f5906ed1b51eef8f0858f5a26748/trepan-0.2.8-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "6dee0a247fb2b817f448095cff821f5f", "sha256": "3eb56427b46437b7e11b809672f02338c325a8c606a249bfb8d2020350170557" }, "downloads": -1, "filename": "trepan-0.2.8-py2.6.egg", "has_sig": false, "md5_digest": "6dee0a247fb2b817f448095cff821f5f", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 523080, "upload_time": "2013-05-12T16:58:40", "url": "https://files.pythonhosted.org/packages/a9/45/abaca9c2866c527fe9180ec1f0755aaf883e935ec328d5f7c5cd134e5d01/trepan-0.2.8-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "f92bdfad1dcf3d610b0f7b3463905cd7", "sha256": "2fd4998ddb9e4d518752a03271203db3bd4cf2566cd5e91778b8af2049f933e2" }, "downloads": -1, "filename": "trepan-0.2.8-py2.7.egg", "has_sig": false, "md5_digest": "f92bdfad1dcf3d610b0f7b3463905cd7", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 521602, "upload_time": "2013-05-12T16:58:46", "url": "https://files.pythonhosted.org/packages/50/64/a8c7ba1d884eb7abc2785268c29cddf9e294e7a5766ee743605bf01b5144/trepan-0.2.8-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "8c9416472c135884fe5a1ba053578db7", "sha256": "4c8b649be1f4f5c520096ca406b21aa3351b291bf602c929d11ad71823383f68" }, "downloads": -1, "filename": "trepan-0.2.8-py3.2.egg", "has_sig": false, "md5_digest": "8c9416472c135884fe5a1ba053578db7", "packagetype": "bdist_egg", "python_version": "3.2", "requires_python": null, "size": 508824, "upload_time": "2013-05-12T16:54:48", "url": "https://files.pythonhosted.org/packages/1c/1a/c23dbd9b7d6a929a93c1a27d0b95d87455a60cfea8b600c5b0e78c7f3b55/trepan-0.2.8-py3.2.egg" }, { "comment_text": "", "digests": { "md5": "903cdfbb7cb1e2b866b308e54249ad3d", "sha256": "9c43252fe8d24bbc3d31a5e1587fe9213eec1e3bea5bde5e855df708e3d66e48" }, "downloads": -1, "filename": "trepan-0.2.8-py3.3.egg", "has_sig": false, "md5_digest": "903cdfbb7cb1e2b866b308e54249ad3d", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 517534, "upload_time": "2013-09-06T14:59:33", "url": "https://files.pythonhosted.org/packages/bb/3e/57f39ddf332e7d423d4397850471d42c7697a8cd729741bae3990b67dab5/trepan-0.2.8-py3.3.egg" }, { "comment_text": "", "digests": { "md5": "216a9ee0e60df183a4c90e412d0cbf37", "sha256": "45a76180a41ac30d666e2671622b4ccbd05cd5eb365bfeaf5b32939873eb3293" }, "downloads": -1, "filename": "trepan-0.2.8.tar.gz", "has_sig": false, "md5_digest": "216a9ee0e60df183a4c90e412d0cbf37", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 130823, "upload_time": "2013-05-12T16:55:27", "url": "https://files.pythonhosted.org/packages/e6/d8/d22a234f95173e404b455b0e89a80a8f3e1784fedc01ca42d9f88f7b0fff/trepan-0.2.8.tar.gz" }, { "comment_text": "", "digests": { "md5": "e91d3e2bba0c93aa203fc10af0bd58c1", "sha256": "b7770c27a822e8c48241a54c1d1db1a92b832bc276e734197c618f11c9509f58" }, "downloads": -1, "filename": "trepan2-0.2.8.tar.gz", "has_sig": false, "md5_digest": "e91d3e2bba0c93aa203fc10af0bd58c1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 174169, "upload_time": "2013-05-12T23:13:46", "url": "https://files.pythonhosted.org/packages/9a/d2/0b1d31528d8bba6d061c934b17ef03b0a9e71482e5e6c94fdb62f8f5f9b2/trepan2-0.2.8.tar.gz" } ], "0.2.9": [ { "comment_text": "", "digests": { "md5": "ff964a3ca2877faa81347720f5b4a64a", "sha256": "7b91f3aca8ad25602dc8b86c8f558a68f40f2a56ff999e4a232ff91716c4dba9" }, "downloads": -1, "filename": "trepan-0.2.9.tar.gz", "has_sig": false, "md5_digest": "ff964a3ca2877faa81347720f5b4a64a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 173027, "upload_time": "2014-10-05T02:29:36", "url": "https://files.pythonhosted.org/packages/86/21/43e284cbd4c4b831f5ac1749c71373e07b581bb8560cf50cc15fcd03846b/trepan-0.2.9.tar.gz" } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "cc85593aec099ad1ed463a31b3ae5b03", "sha256": "0cee4679043e5948711f605f34d9824ffcaab4d0643f02d99c92e44dfd24badf" }, "downloads": -1, "filename": "trepan-0.3.0-py2.6.egg", "has_sig": false, "md5_digest": "cc85593aec099ad1ed463a31b3ae5b03", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 528225, "upload_time": "2014-10-08T11:38:37", "url": "https://files.pythonhosted.org/packages/7c/11/9e1b7482896e61c68402b46af77b857df133f1966b199276dbd28768e63a/trepan-0.3.0-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "22bfe897e803de63a1f49ea7cc0156e3", "sha256": "fb7c3e5d7ebcef79a1f21a2ddf909cbd193b17d8466d6034fa25c1d7545f3ef8" }, "downloads": -1, "filename": "trepan-0.3.0-py2.7.egg", "has_sig": false, "md5_digest": "22bfe897e803de63a1f49ea7cc0156e3", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 526712, "upload_time": "2014-10-08T11:39:20", "url": "https://files.pythonhosted.org/packages/98/53/f9e28cffebc9985051aaaf38d9da96b1b4705cfd684ace1d87b7c7936db6/trepan-0.3.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "31fb47d8fd44a547c8964d26fee5ced5", "sha256": "86967fd69de71002941b7e19c706624daf4673b878ea4cf49fd0613b1b0528cb" }, "downloads": -1, "filename": "trepan-0.3.0.tar.gz", "has_sig": false, "md5_digest": "31fb47d8fd44a547c8964d26fee5ced5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 171413, "upload_time": "2014-10-09T00:59:29", "url": "https://files.pythonhosted.org/packages/41/31/2323d68b69a7dbc3926f8e4611547c532da1edb951ed0682bf0b46bf19f1/trepan-0.3.0.tar.gz" } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "4fa2b8d670015e328178beb4e7767c4c", "sha256": "358bda8b9f38125eac248f220b037e9198b061b16737a1d91050ad98536b116f" }, "downloads": -1, "filename": "trepan-0.3.1-py2.6.egg", "has_sig": false, "md5_digest": "4fa2b8d670015e328178beb4e7767c4c", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 528236, "upload_time": "2014-10-09T03:47:41", "url": "https://files.pythonhosted.org/packages/54/fe/70ff9bd4e64c3bcc3e9eb159d04a32b878771d5932b35e1a5642076132f7/trepan-0.3.1-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "12c2c9f01e429daf1536ec059b34d76b", "sha256": "1e672bca80331ea9b6d62a28b19bdaa1c264d2694cdaedec988d723c7ee4f5c2" }, "downloads": -1, "filename": "trepan-0.3.1-py2.7.egg", "has_sig": false, "md5_digest": "12c2c9f01e429daf1536ec059b34d76b", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 526723, "upload_time": "2014-10-09T03:47:46", "url": "https://files.pythonhosted.org/packages/63/d0/71ab22eb29a5c151670b8332f2e1e2091e03ef641e6c52073a9155228881/trepan-0.3.1-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "6f88e42d06b819b1e5da6b916aba7cb0", "sha256": "7ac7426b0af663c42266f4cbde74961f43c0cc2d20793452d1e64167679e1fce" }, "downloads": -1, "filename": "trepan-0.3.1.tar.gz", "has_sig": false, "md5_digest": "6f88e42d06b819b1e5da6b916aba7cb0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 173425, "upload_time": "2014-10-09T03:47:54", "url": "https://files.pythonhosted.org/packages/04/75/920fdb6cfb9c98ffbbe03da36b3969f1ce9576127c0b3efe932a76f2286d/trepan-0.3.1.tar.gz" } ], "0.3.2": [ { "comment_text": "", "digests": { "md5": "af6b76f3d9ce9bbbce7cf38f0aec4c7c", "sha256": "be7482210c5722cc799e402ab94071ee6b557eabef7872aea100680c24b4df66" }, "downloads": -1, "filename": "trepan-0.3.2-py2.6.egg", "has_sig": false, "md5_digest": "af6b76f3d9ce9bbbce7cf38f0aec4c7c", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 528246, "upload_time": "2014-10-10T09:16:22", "url": "https://files.pythonhosted.org/packages/27/8e/53658e94b94c0c3a2be704216e2dc6aa3c267faa1e77ed502f8c1a63c8dd/trepan-0.3.2-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "19bbcf4b43c9df93a9592081e354d888", "sha256": "2c4f2ba092eef5c26c8f54843c5c804ed3c328d03b7f17e5d404e5bdd7ed57bd" }, "downloads": -1, "filename": "trepan-0.3.2-py2.7.egg", "has_sig": false, "md5_digest": "19bbcf4b43c9df93a9592081e354d888", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 526735, "upload_time": "2014-10-10T09:16:27", "url": "https://files.pythonhosted.org/packages/fb/87/5de5132c8e559addc478aca8a2bba3b4a67fb1c6de980974dc14d31db885/trepan-0.3.2-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "75e355ed419ae25a107ba67e978f9a3a", "sha256": "8fef542de03f87a3d2154e7f406b30d47cce3e0bb248a7bc72f16a8b4eba86dc" }, "downloads": -1, "filename": "trepan-0.3.2.tar.gz", "has_sig": false, "md5_digest": "75e355ed419ae25a107ba67e978f9a3a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 173450, "upload_time": "2014-10-10T09:30:44", "url": "https://files.pythonhosted.org/packages/53/85/9011ab8566faab6d0b2779ccfeaa0cd9cfd73dfb485d1fa86a7aebecbf02/trepan-0.3.2.tar.gz" } ], "0.3.3": [ { "comment_text": "", "digests": { "md5": "0199159174fc87f3f6d24afae402c430", "sha256": "01dbae16394c34a674bc8bed64aa2f11f7eabccf1596a206abd41cf8068b2ada" }, "downloads": -1, "filename": "trepan-0.3.3-py2.6.egg", "has_sig": false, "md5_digest": "0199159174fc87f3f6d24afae402c430", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 528247, "upload_time": "2014-10-10T10:34:48", "url": "https://files.pythonhosted.org/packages/9d/ef/626116f322f895a4df98f33f17171592d05c23af0f86b2819a871fa1892e/trepan-0.3.3-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "99feeebe53bf45a7a11da2acb6f1d4a6", "sha256": "b77a277488b4940032cfb3624f8e900a4771b8aac73ac8e409321662a858ce10" }, "downloads": -1, "filename": "trepan-0.3.3-py2.7.egg", "has_sig": false, "md5_digest": "99feeebe53bf45a7a11da2acb6f1d4a6", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 526727, "upload_time": "2014-10-10T10:34:53", "url": "https://files.pythonhosted.org/packages/5b/f1/c59b7d5c7dd3b8d6a2f9dab27db755f49198fe2c1dfc971cf3a7ae99b53c/trepan-0.3.3-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "d15bba9fecff0d524d668de2fd9ef475", "sha256": "2404df30f40001b8dfac68f80964cd9b1cc49babb4cc993e3fce0700907f5ad1" }, "downloads": -1, "filename": "trepan-0.3.3.tar.gz", "has_sig": false, "md5_digest": "d15bba9fecff0d524d668de2fd9ef475", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 173407, "upload_time": "2014-10-10T10:34:57", "url": "https://files.pythonhosted.org/packages/ed/db/557c55636b85ff30b10c058190fb9167476a44c9f15089fd06303ef3e129/trepan-0.3.3.tar.gz" } ], "0.3.4": [ { "comment_text": "", "digests": { "md5": "b8054cb0ade618d5d90f432e85f8589d", "sha256": "95951072d4307d406578d097fa7ed0194ede9a9ee6fa7bf6a24a697b07f7894d" }, "downloads": -1, "filename": "trepan-0.3.4-py2.7.egg", "has_sig": false, "md5_digest": "b8054cb0ade618d5d90f432e85f8589d", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 526763, "upload_time": "2014-10-20T02:08:07", "url": "https://files.pythonhosted.org/packages/57/2c/8f6938fceaded013fd6d80bcc3d63f672293943a8a973f938580949e2cd4/trepan-0.3.4-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "0ccd3154c38c97bc1b8321f30c16428c", "sha256": "d0531d0903e2cc99c74642e88e26f54b03971fe8a007c0adec5942aa57e701ff" }, "downloads": -1, "filename": "trepan-0.3.4.tar.gz", "has_sig": false, "md5_digest": "0ccd3154c38c97bc1b8321f30c16428c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 173589, "upload_time": "2014-10-20T02:08:18", "url": "https://files.pythonhosted.org/packages/a1/06/910f6611912c86ff2010fcad6f470a14319919ac8af49e3bddfc08f8d423/trepan-0.3.4.tar.gz" } ], "0.3.5": [ { "comment_text": "", "digests": { "md5": "357c95e8214cd20aeba6aea7a3726de6", "sha256": "df587ce143694a2f55bb3c4978702314ba83ace299d031d09daa6ad598fd809b" }, "downloads": -1, "filename": "trepan-0.3.5-py2.6.egg", "has_sig": false, "md5_digest": "357c95e8214cd20aeba6aea7a3726de6", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 528320, "upload_time": "2014-10-21T08:36:25", "url": "https://files.pythonhosted.org/packages/d5/71/b4300dc43431f5cdcb5792889c83d59a032d57f7ecee318564c471b6a909/trepan-0.3.5-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "10dd343dfca6537c2b566b6c6ba6be32", "sha256": "6e5694c900bd56258571f5da4489a6e4ae77eb846bb5b004479e37b4e04423c1" }, "downloads": -1, "filename": "trepan-0.3.5-py2.7.egg", "has_sig": false, "md5_digest": "10dd343dfca6537c2b566b6c6ba6be32", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 526801, "upload_time": "2014-10-21T08:36:30", "url": "https://files.pythonhosted.org/packages/6c/77/7ca57652b94f0e832985cd7f115916015f979b3c24dc59eabf5566271942/trepan-0.3.5-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "d28989f2341e57cbac7478bc4a3353a0", "sha256": "572768ad1fe68d4d56b4406b08bcb6ec38c409dfcf720d523915eeb90e0967bb" }, "downloads": -1, "filename": "trepan-0.3.5.tar.gz", "has_sig": false, "md5_digest": "d28989f2341e57cbac7478bc4a3353a0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 173881, "upload_time": "2014-10-21T08:36:35", "url": "https://files.pythonhosted.org/packages/5e/c1/98b5892a20b450629afb0cffd4ca884229b0087ba239a8fb2279e5114e7a/trepan-0.3.5.tar.gz" } ], "0.3.6": [ { "comment_text": "", "digests": { "md5": "93ab0579b262be1d2d3b663f1174aafa", "sha256": "b2311cc984ae53f8c2539ef9eb2f322fede88176b229a522196a07a08d99bba6" }, "downloads": -1, "filename": "trepan-0.3.6-py2.6.egg", "has_sig": false, "md5_digest": "93ab0579b262be1d2d3b663f1174aafa", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 529006, "upload_time": "2014-10-25T10:14:01", "url": "https://files.pythonhosted.org/packages/6a/9c/d78713108a54a68cf95e4d4ae836138fe1f41e67ed9e4a4b18d94b6b5a11/trepan-0.3.6-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "b4c9db7b273524b1f582c7dbd2195c6c", "sha256": "a2ad11662b6e6e718813cdbe6fd6750376a2a498363a1b41daa0519181da0e6e" }, "downloads": -1, "filename": "trepan-0.3.6-py2.7.egg", "has_sig": false, "md5_digest": "b4c9db7b273524b1f582c7dbd2195c6c", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 527482, "upload_time": "2014-10-25T10:14:07", "url": "https://files.pythonhosted.org/packages/70/d9/b48aef9a0e2658cead7d33535a96eddb1c69ec83a40949e781393cfc6261/trepan-0.3.6-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "b0f6e674fb4fbd02fe248efa1481a54e", "sha256": "a1dcdac92016a58006fde81fd5f0c649eedc1f80f1449dc5c2889ec42b63738e" }, "downloads": -1, "filename": "trepan-0.3.6.tar.gz", "has_sig": false, "md5_digest": "b0f6e674fb4fbd02fe248efa1481a54e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 174205, "upload_time": "2014-10-25T10:14:11", "url": "https://files.pythonhosted.org/packages/88/35/c52a3134783e08d1abbaa9f21c0995d1cb04455bd81f8f5dfa976123fdad/trepan-0.3.6.tar.gz" } ], "0.3.7": [ { "comment_text": "", "digests": { "md5": "2c8edba9346b6c264a2c09cca1e7e464", "sha256": "6401a120f48d5ae623aa4b858d80ca20729a780a3d4214c2a6c09491cdb9bed2" }, "downloads": -1, "filename": "trepan-0.3.7-py2.6.egg", "has_sig": false, "md5_digest": "2c8edba9346b6c264a2c09cca1e7e464", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 528870, "upload_time": "2014-10-25T10:58:37", "url": "https://files.pythonhosted.org/packages/5f/72/a8f1af6e4b5644b88a9f50f76333891c59adcc6721fbd2a4914914d62b4d/trepan-0.3.7-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "b32b8d461c0fa0a0694cd81cbde23370", "sha256": "9d89413a5947c5b7009ecaa3bddf4fb7b48367fbed8b3ffdfe487dd73db9416b" }, "downloads": -1, "filename": "trepan-0.3.7-py2.7.egg", "has_sig": false, "md5_digest": "b32b8d461c0fa0a0694cd81cbde23370", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 527359, "upload_time": "2014-10-25T10:58:42", "url": "https://files.pythonhosted.org/packages/20/9c/ebef1605a67a1c701da447b70d28f0d12fd3d21a77de2c13d37513ac134c/trepan-0.3.7-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "b8dd3ee0e1f6f8f89126ce1ce62a9a7a", "sha256": "6e7b37a210f65ba0b0bf07715c998f1167990d99ee8c811ef45b1bddecb3e47b" }, "downloads": -1, "filename": "trepan-0.3.7.tar.gz", "has_sig": false, "md5_digest": "b8dd3ee0e1f6f8f89126ce1ce62a9a7a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 173971, "upload_time": "2014-10-25T10:58:46", "url": "https://files.pythonhosted.org/packages/db/10/83c32399b18308a0e2f050643ccf04685227270086abba96f2b9710bbf2a/trepan-0.3.7.tar.gz" } ], "0.3.8": [ { "comment_text": "", "digests": { "md5": "8ae8c05c771880eeab23d0110d651421", "sha256": "1f3397702c47f4e12b687873817ef0abd1f9214b9045d3f90b78ec8c425a3b1f" }, "downloads": -1, "filename": "trepan-0.3.8-py2.6.egg", "has_sig": false, "md5_digest": "8ae8c05c771880eeab23d0110d651421", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 528906, "upload_time": "2014-10-25T16:09:56", "url": "https://files.pythonhosted.org/packages/50/f5/d6b540c4bf460d1cc991f00e0795aee881faa656ae104e0eb465f444b6d7/trepan-0.3.8-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "654402f2fd76001ff8f337fd741b5d14", "sha256": "9c06ad7bc16769d23c4c13aa8aa7609210fb548f4268d1000a10bf75eb1f3731" }, "downloads": -1, "filename": "trepan-0.3.8-py2.7.egg", "has_sig": false, "md5_digest": "654402f2fd76001ff8f337fd741b5d14", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 527385, "upload_time": "2014-10-25T16:10:00", "url": "https://files.pythonhosted.org/packages/2c/21/2c111c280b8b16d4f0a1eec7784d531610e0c91eb6f95e3d103dcd1c90a6/trepan-0.3.8-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "fc7789d4019a480c2406db0eddac2614", "sha256": "abee2e22bc4de362b6bfe478bc98f5d95cae7d66bea4aa903fc8af8c4884d7d5" }, "downloads": -1, "filename": "trepan-0.3.8.tar.gz", "has_sig": false, "md5_digest": "fc7789d4019a480c2406db0eddac2614", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 174358, "upload_time": "2014-10-25T16:10:05", "url": "https://files.pythonhosted.org/packages/e1/42/80d754a895ef77da2543f946efa9a81ba7074e2ddba3a2f09dd758a15d2c/trepan-0.3.8.tar.gz" } ], "0.3.9": [ { "comment_text": "", "digests": { "md5": "2b9b906418ae206d7b21dce314cf544e", "sha256": "15b1db0200a752749467eeca0b58b0f7cc91901131b096948fd0ae0f576ee337" }, "downloads": -1, "filename": "trepan-0.3.9-py2.6.egg", "has_sig": false, "md5_digest": "2b9b906418ae206d7b21dce314cf544e", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 529030, "upload_time": "2014-10-25T17:20:45", "url": "https://files.pythonhosted.org/packages/04/ab/17814db3766642d73b087cd6b6075af3885cb7da6eafaee1f888c332ad15/trepan-0.3.9-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "045ba8d0725f079942322408e44b184c", "sha256": "9497d29345ef3bae1d417c60b543b14c62bd573669f42b274add948d9fddc990" }, "downloads": -1, "filename": "trepan-0.3.9-py2.7.egg", "has_sig": false, "md5_digest": "045ba8d0725f079942322408e44b184c", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 527493, "upload_time": "2014-10-25T17:20:49", "url": "https://files.pythonhosted.org/packages/f0/7a/4fead2b7a80161eb91ded7e37697f5bcd9d91c26574dc1fbbcc58bf37195/trepan-0.3.9-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "450f01d6e19b976489cd937593ed45aa", "sha256": "909461cee4ce465131398284bb4fbeb0fea114f976cfa5592efaceba3cf8071d" }, "downloads": -1, "filename": "trepan-0.3.9.tar.gz", "has_sig": false, "md5_digest": "450f01d6e19b976489cd937593ed45aa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 174423, "upload_time": "2014-10-25T17:20:52", "url": "https://files.pythonhosted.org/packages/1c/8c/5d6fb0c2fe030c230b32c90dd9d31cdd517bc3328dfa7593ed46f1836e37/trepan-0.3.9.tar.gz" } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "fa0816ebc2ea23728b3ed1bd344eb12d", "sha256": "a32eca77a446576f604d2bcd529cfce5a9b3499df21d660c7ea5fa351ca35111" }, "downloads": -1, "filename": "trepan-0.4.0-py2.5.egg", "has_sig": false, "md5_digest": "fa0816ebc2ea23728b3ed1bd344eb12d", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 529880, "upload_time": "2014-12-25T03:15:07", "url": "https://files.pythonhosted.org/packages/68/40/3ccc46f571a8670331ab955b15a2307344d74fdb8887833301638672922a/trepan-0.4.0-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "c1696748ebf2156de5bd0459ffc304df", "sha256": "c58a4f5d2b60eaa017eee97c0881315edb571765e4f1d35fb3f0ce641f2879f1" }, "downloads": -1, "filename": "trepan-0.4.0-py2.6.egg", "has_sig": false, "md5_digest": "c1696748ebf2156de5bd0459ffc304df", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 529331, "upload_time": "2014-12-25T03:16:46", "url": "https://files.pythonhosted.org/packages/48/62/161d665ca570e6d4984d104c84e62ab54ab5a40597d3cbaaae7f8257b71c/trepan-0.4.0-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "3a0cb0d7b5b87acfe73554fb418e5096", "sha256": "bef26d814626b0593466ebd37175540e12e8a81de81d970a0594232830a564be" }, "downloads": -1, "filename": "trepan-0.4.0-py2.7.egg", "has_sig": false, "md5_digest": "3a0cb0d7b5b87acfe73554fb418e5096", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 527797, "upload_time": "2014-12-25T02:29:19", "url": "https://files.pythonhosted.org/packages/e5/1b/0ff63c5331906c74bd1c0cdc4d71257b3b38c30ed1d06e542870e93cf84c/trepan-0.4.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "f4073463d01fe80081c2765a683e3ee2", "sha256": "f727b02672b943224101f790c4f7048dd6bec59c421790c7271ca7de30fc5294" }, "downloads": -1, "filename": "trepan-0.4.0.tar.gz", "has_sig": false, "md5_digest": "f4073463d01fe80081c2765a683e3ee2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 171041, "upload_time": "2014-12-25T02:29:39", "url": "https://files.pythonhosted.org/packages/60/98/13451c7da0f7c8f825b23707e9bd8a676fa1b29991028cf145f11612bc92/trepan-0.4.0.tar.gz" } ], "0.4.1": [ { "comment_text": "", "digests": { "md5": "7985ffa0bd294a43b0441bddbec00656", "sha256": "161b35da7874e60083f92ba14f7fd02729514ae45aa5c4a543adf824f7cfbc80" }, "downloads": -1, "filename": "trepan-0.4.1-py2.6.egg", "has_sig": false, "md5_digest": "7985ffa0bd294a43b0441bddbec00656", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 533007, "upload_time": "2015-01-24T01:26:14", "url": "https://files.pythonhosted.org/packages/bd/f4/24727f95dd1b5d21edd5165364bf647a38e7303f86efc79ce7009ad14db5/trepan-0.4.1-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "69311105fbb93f985c7889ff7759351e", "sha256": "8a667fdad99ab5a94ee3338ec4658a1dd65f76a581d140f083a3e1d2b6f7a1de" }, "downloads": -1, "filename": "trepan-0.4.1-py2.7.egg", "has_sig": false, "md5_digest": "69311105fbb93f985c7889ff7759351e", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 531465, "upload_time": "2015-01-24T01:26:17", "url": "https://files.pythonhosted.org/packages/83/a6/c60c65dcc8d72223c24637d61a3f475a63c9335fee5a971329be94c155cb/trepan-0.4.1-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "0288619381cedc61e1e2b2803e4cc999", "sha256": "fef4205a6c42d73dde58506e6e83605253abf9867c94b91a259a21f48529adcd" }, "downloads": -1, "filename": "trepan-0.4.1.tar.gz", "has_sig": false, "md5_digest": "0288619381cedc61e1e2b2803e4cc999", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 177525, "upload_time": "2015-01-24T01:24:56", "url": "https://files.pythonhosted.org/packages/94/75/4856df95af3a64e852d16c6a4c8eefb1c0009207f59f7685bf8f128b3f5f/trepan-0.4.1.tar.gz" } ], "0.4.2": [ { "comment_text": "", "digests": { "md5": "adb3ca8b2321b05cd30435e067be6ec1", "sha256": "4d80b5f244ac798aca29013d697f5318ea87958d9d267241844b14056f4913ad" }, "downloads": -1, "filename": "trepan-0.4.2-py2.6.egg", "has_sig": false, "md5_digest": "adb3ca8b2321b05cd30435e067be6ec1", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 533920, "upload_time": "2015-02-17T17:17:21", "url": "https://files.pythonhosted.org/packages/8a/fb/1958d71ea086efa2c7eef66f11fdd571657ab57488aca852d2bdd3014a99/trepan-0.4.2-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "1d5308fdca45be3f9dd7f63ef2a10f9b", "sha256": "da07d43093a5d6563738048240a232df90b24b7ee4c003f7fcf7e48466a1f39b" }, "downloads": -1, "filename": "trepan-0.4.2-py2.7.egg", "has_sig": false, "md5_digest": "1d5308fdca45be3f9dd7f63ef2a10f9b", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 532309, "upload_time": "2015-02-17T17:17:26", "url": "https://files.pythonhosted.org/packages/b3/43/e8051b21b4eae5d227bd30756c904dd603766326c34818dddb2f35bae7ce/trepan-0.4.2-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "5cf01d33db37c3dc64854c9f45ccfbd2", "sha256": "1d17e9def6c374189a0f8d102f76e8a8f55e191c486bd9b08da62c59cbf3add5" }, "downloads": -1, "filename": "trepan-0.4.2.tar.gz", "has_sig": false, "md5_digest": "5cf01d33db37c3dc64854c9f45ccfbd2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 177364, "upload_time": "2015-02-17T17:17:33", "url": "https://files.pythonhosted.org/packages/63/e1/adbd87122b44d9384110bba891ad5cf4da9bf3570569e758b4bfd749a17a/trepan-0.4.2.tar.gz" } ], "0.4.3": [ { "comment_text": "", "digests": { "md5": "173e5b6b5575c867b321446b336e72b1", "sha256": "62639804da64c49f44f47b8681fa8dc2d19aa866a7566ce201bde5ccc11e4081" }, "downloads": -1, "filename": "trepan-0.4.3-py2.6.egg", "has_sig": false, "md5_digest": "173e5b6b5575c867b321446b336e72b1", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 534100, "upload_time": "2015-04-06T16:35:02", "url": "https://files.pythonhosted.org/packages/ec/cd/c6be56b1eaab5c6f215df5a91c31210a3798ea337cbeb6ba540645c76467/trepan-0.4.3-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "01b6c6ecc01ff8f85d514588105ef363", "sha256": "eeba19811817e0e482c042d482670f1b2128f93137d039a9402368bbf242c33b" }, "downloads": -1, "filename": "trepan-0.4.3-py2.7.egg", "has_sig": false, "md5_digest": "01b6c6ecc01ff8f85d514588105ef363", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 532453, "upload_time": "2015-04-06T16:35:07", "url": "https://files.pythonhosted.org/packages/a2/78/adf1342db70c31c25e22e427dc170158c6bba61752f5a2b52293834160c5/trepan-0.4.3-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "0f3b9ca619d3742e9b13de3612a4701c", "sha256": "4a9f8bfd6b8c451846d9d67704c0e95dbe8fc8c58e85fc6bf903866691550917" }, "downloads": -1, "filename": "trepan-0.4.3-py3.3.egg", "has_sig": false, "md5_digest": "0f3b9ca619d3742e9b13de3612a4701c", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 531816, "upload_time": "2015-04-06T15:35:38", "url": "https://files.pythonhosted.org/packages/9b/08/35e3989f0628692d275fbf82b8b2daee6821b4f45ee4db85e5ffacde9b7c/trepan-0.4.3-py3.3.egg" }, { "comment_text": "", "digests": { "md5": "1d2103dda7a53de7e6321e3b8c4f9f2a", "sha256": "9b8b15cc85b3762e6e16762c514acce7bed2e3457b14fd7380cc7672f895c9e9" }, "downloads": -1, "filename": "trepan-0.4.3-py3.4.egg", "has_sig": false, "md5_digest": "1d2103dda7a53de7e6321e3b8c4f9f2a", "packagetype": "bdist_egg", "python_version": "3.4", "requires_python": null, "size": 523599, "upload_time": "2015-04-06T15:35:42", "url": "https://files.pythonhosted.org/packages/c8/6c/0a7055420095647e05630d000f954d3e8c4a3357eedbd9cd1b851687e5a8/trepan-0.4.3-py3.4.egg" } ], "0.4.4": [], "0.4.5": [ { "comment_text": "", "digests": { "md5": "57203908d06efdb23409a9053b9c8bcd", "sha256": "94c2a1df4a9005e09a751c340bc7739e5009139df30b161f57bf04cc12fefad9" }, "downloads": -1, "filename": "trepan-0.4.5-py2.6.egg", "has_sig": false, "md5_digest": "57203908d06efdb23409a9053b9c8bcd", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 534114, "upload_time": "2015-04-24T01:50:37", "url": "https://files.pythonhosted.org/packages/8c/3b/f6a905904a04bb0a369db5b4cd8d4885d4e3b2526d74ca616eab403174d8/trepan-0.4.5-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "8dfd3f8476efcf843e728e35139d2e92", "sha256": "5a82b447e8168a978cea63b7dadaa398f8f1b1f34d3b58ec55706bd16762403c" }, "downloads": -1, "filename": "trepan-0.4.5-py2.7.egg", "has_sig": false, "md5_digest": "8dfd3f8476efcf843e728e35139d2e92", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 532461, "upload_time": "2015-04-24T01:50:41", "url": "https://files.pythonhosted.org/packages/51/a1/b4a8c5b882bb7e00cf71d96b4735c4f6412706698d0174f3817e50a63b46/trepan-0.4.5-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "f1cf8077ec7be8db2a541793ef74624d", "sha256": "d0c1d854ef2a4f69836fa9665d3e512346b7911133c7356c5fb32d3628e80308" }, "downloads": -1, "filename": "trepan-0.4.5.tar.gz", "has_sig": false, "md5_digest": "f1cf8077ec7be8db2a541793ef74624d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 178837, "upload_time": "2015-04-24T01:50:48", "url": "https://files.pythonhosted.org/packages/09/95/b067a8f1dc315345fa3cc6e89f12e2df36782f93db78aeb6c1dbcea493f8/trepan-0.4.5.tar.gz" } ], "0.4.6": [ { "comment_text": "", "digests": { "md5": "b050c506a332540c1f2adc37d1e15cb5", "sha256": "d99315d3163724b863adc70fd3f0f91e642e3d7a068076330b3c6a1ae1200c43" }, "downloads": -1, "filename": "trepan-0.4.6-py2.6.egg", "has_sig": false, "md5_digest": "b050c506a332540c1f2adc37d1e15cb5", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 540793, "upload_time": "2015-05-15T01:47:38", "url": "https://files.pythonhosted.org/packages/0b/8a/d21696294990bc89b3db893df6b0a6c6bd18d2d14a07eb3e4df781505b34/trepan-0.4.6-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "76b89362a1cd0b0718536cdc05773878", "sha256": "89fa599967f6fe390cc6280a890beb7fc612936b88aff7b9fdacf4691cebbc28" }, "downloads": -1, "filename": "trepan-0.4.6-py2.7.egg", "has_sig": false, "md5_digest": "76b89362a1cd0b0718536cdc05773878", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 539181, "upload_time": "2015-05-15T01:47:43", "url": "https://files.pythonhosted.org/packages/b6/c4/4c52c749ef4aba0e2d6fe6410165a1fdb600cfad673e465314fcbd16d659/trepan-0.4.6-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "9ab65c20c447e5c86362dd048e3a571d", "sha256": "6b84af4e80eb26a60f3416c49747eb1eeb768cc7e783ed38095c9fc473282448" }, "downloads": -1, "filename": "trepan-0.4.6.tar.gz", "has_sig": false, "md5_digest": "9ab65c20c447e5c86362dd048e3a571d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 181232, "upload_time": "2015-05-15T01:49:19", "url": "https://files.pythonhosted.org/packages/7e/02/d75236437c730e2d9d0a4a6106de25687c032dcaf0654a2ef3396a4987b1/trepan-0.4.6.tar.gz" } ], "0.4.7": [ { "comment_text": "", "digests": { "md5": "82acc2f893a3b3333980f7cb1c9682ef", "sha256": "305d4f9b21eaed786068a3d095401cf1c8dd5c617927fbc50385e018c5bbb808" }, "downloads": -1, "filename": "trepan-0.4.7-py2.6.egg", "has_sig": false, "md5_digest": "82acc2f893a3b3333980f7cb1c9682ef", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 550047, "upload_time": "2015-05-16T21:29:38", "url": "https://files.pythonhosted.org/packages/d5/db/065dbc03821e2c246507f94dfa281ca09974ec5fbb3483aa8c6c654691f9/trepan-0.4.7-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "327710a33d27f2d6140fb8625df45dda", "sha256": "cfcef2fb2ebcb065a0201654b8927123861b3802a5e80e9620e689ae73513c0d" }, "downloads": -1, "filename": "trepan-0.4.7-py2.7.egg", "has_sig": false, "md5_digest": "327710a33d27f2d6140fb8625df45dda", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 548408, "upload_time": "2015-05-16T21:29:43", "url": "https://files.pythonhosted.org/packages/9c/7b/bc9ffdac58491994577de997824afebd00d4900dfa0498e87132523a6ebf/trepan-0.4.7-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "6bb9f515f3b2a264a913b9c12d61bbb6", "sha256": "897462ddefa811c989857e9acdc9a7a33b95f78a58cce3429722ef1c808aec19" }, "downloads": -1, "filename": "trepan-0.4.7-py2-none-any.whl", "has_sig": false, "md5_digest": "6bb9f515f3b2a264a913b9c12d61bbb6", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 281374, "upload_time": "2015-05-17T14:09:50", "url": "https://files.pythonhosted.org/packages/d8/51/cae82bcd14c0bccc92628a52e4f4267b29c9d059b4837970eb7a6f030716/trepan-0.4.7-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "dbbd34d7eb25b78562fc4a3356531fab", "sha256": "e71f64bab72a8d4f0155accb6b3b7ae51908908524a8652456f541df970e22c0" }, "downloads": -1, "filename": "trepan-0.4.7.tar.gz", "has_sig": false, "md5_digest": "dbbd34d7eb25b78562fc4a3356531fab", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 184034, "upload_time": "2015-05-17T13:18:33", "url": "https://files.pythonhosted.org/packages/b6/4b/c53ed84c64cf1009d9cc33c0128e0506e6177ca847edc9285bb0c0e78814/trepan-0.4.7.tar.gz" } ], "0.4.8": [ { "comment_text": "", "digests": { "md5": "a1404db8cbf3f1555ba64eb1ccd94d5d", "sha256": "b6263f164b4693fbe7818ea131cecd7a2db178fe3343ff2587c69ad743e78b6e" }, "downloads": -1, "filename": "trepan-0.4.8-py2.6.egg", "has_sig": false, "md5_digest": "a1404db8cbf3f1555ba64eb1ccd94d5d", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 554384, "upload_time": "2015-05-27T23:19:41", "url": "https://files.pythonhosted.org/packages/b0/9a/b0aead2eb13e8622c1b66f60a384af67285dce49be0585e59f47c1546132/trepan-0.4.8-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "47f06f35274cdac7c42ccb94e9531e23", "sha256": "7ab38aade1160e085fc72e6e9b4de12447134c7c8f6d1e7f60b6f25e705ac7b8" }, "downloads": -1, "filename": "trepan-0.4.8-py2.7.egg", "has_sig": false, "md5_digest": "47f06f35274cdac7c42ccb94e9531e23", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 552792, "upload_time": "2015-05-27T23:19:51", "url": "https://files.pythonhosted.org/packages/f6/fb/157f4b8b936fb0da0f376d121974181bbf8e583016969bffd7d91d549880/trepan-0.4.8-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "99693c2aadbfd9f983d87a172909082b", "sha256": "1c17cdb0f983b3f63e293222ac33b23db40019c43ff3393d4282adbdf6e768fa" }, "downloads": -1, "filename": "trepan-0.4.8-py2-none-any.whl", "has_sig": false, "md5_digest": "99693c2aadbfd9f983d87a172909082b", "packagetype": "bdist_wheel", "python_version": "2.6", "requires_python": null, "size": 283145, "upload_time": "2015-05-27T23:19:46", "url": "https://files.pythonhosted.org/packages/8f/de/242ba02e369e2534ac3821e788435c0ef77a817fa71bcb6e4bd257b17606/trepan-0.4.8-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "81487a90865ddbb7afc1fe35ceaf435c", "sha256": "f9b8455dc559683d6ed043cacf97acf5810baf286299d39eb01ff634ee5774b1" }, "downloads": -1, "filename": "trepan-0.4.8-py3.4.egg", "has_sig": false, "md5_digest": "81487a90865ddbb7afc1fe35ceaf435c", "packagetype": "bdist_egg", "python_version": "3.4", "requires_python": null, "size": 545448, "upload_time": "2015-05-27T23:16:25", "url": "https://files.pythonhosted.org/packages/30/bc/4bc6f8c86adbf0c18e4e2753d47738a24182f865ec80db344b733ff3886d/trepan-0.4.8-py3.4.egg" }, { "comment_text": "", "digests": { "md5": "b22283ac43ccfe25fdb8729ef2105a88", "sha256": "fcc0b4c6822ea6dfb4384a3144c7caa73742c2a2b9d0d2375545754f0f1e88d5" }, "downloads": -1, "filename": "trepan-0.4.8-py3-none-any.whl", "has_sig": false, "md5_digest": "b22283ac43ccfe25fdb8729ef2105a88", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 266741, "upload_time": "2015-05-27T23:16:29", "url": "https://files.pythonhosted.org/packages/ce/f1/cfb351aed67072f7f3ed054724b1d1957dfef144340e084960a82b9f7488/trepan-0.4.8-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "90cbc985f11b089f92b7a22e9a372bd5", "sha256": "9d6378944d5919bb17e109b5d8fea78c180911b120cd6c81fb142e9d7a03990d" }, "downloads": -1, "filename": "trepan-0.4.8.tar.gz", "has_sig": false, "md5_digest": "90cbc985f11b089f92b7a22e9a372bd5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 185789, "upload_time": "2015-05-27T23:20:03", "url": "https://files.pythonhosted.org/packages/c2/c9/9f9062bd848061b606685d1756a2265570e19dccc7d6cfac0673cf492dc7/trepan-0.4.8.tar.gz" } ], "0.4.9": [ { "comment_text": "", "digests": { "md5": "bc47f22b764b1b0bdb763350129f12ef", "sha256": "95f277e5c19df10a3aae40913e8784f07cfb3be9ab2446e2182ea5fbdafb5411" }, "downloads": -1, "filename": "trepan-0.4.9-py2.6.egg", "has_sig": false, "md5_digest": "bc47f22b764b1b0bdb763350129f12ef", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 557959, "upload_time": "2015-06-12T09:37:55", "url": "https://files.pythonhosted.org/packages/be/4b/43f8bed17690732356f15e6705c58093ae7fa134ed56a1c669e5abdf3339/trepan-0.4.9-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "95962d684c8c6a030a38502ed5b21253", "sha256": "50f2c8ca7832e292681d182416557f891b1a5f54dbca63410f1873d939d86836" }, "downloads": -1, "filename": "trepan-0.4.9-py2.7.egg", "has_sig": false, "md5_digest": "95962d684c8c6a030a38502ed5b21253", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 556360, "upload_time": "2015-06-12T09:38:06", "url": "https://files.pythonhosted.org/packages/8d/e6/b7101671c484075567a74858b3d9ef8bbdab9e50006d18e8ef3d655a9f1e/trepan-0.4.9-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "36ed94503ed010e84dfded6631f89839", "sha256": "dcc2a377b5de473c3afbe22573a98dfd46cf987fd6f75caa3c15f458a68d6211" }, "downloads": -1, "filename": "trepan-0.4.9-py2-none-any.whl", "has_sig": false, "md5_digest": "36ed94503ed010e84dfded6631f89839", "packagetype": "bdist_wheel", "python_version": "2.6", "requires_python": null, "size": 286743, "upload_time": "2015-06-12T09:38:00", "url": "https://files.pythonhosted.org/packages/d0/2a/bdbc692a5b2b59a7a590413180207fe5c5e8e7ed865f9546afbcc3c3e2a8/trepan-0.4.9-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "fc3b14cdf6fafe766736acbed6e23bcc", "sha256": "30db45c322b20f3495c5b482bafc281cbeae16f2269c25ab1ea83979cb3fede2" }, "downloads": -1, "filename": "trepan-0.4.9-py3.4.egg", "has_sig": false, "md5_digest": "fc3b14cdf6fafe766736acbed6e23bcc", "packagetype": "bdist_egg", "python_version": "3.4", "requires_python": null, "size": 554387, "upload_time": "2015-06-12T09:29:39", "url": "https://files.pythonhosted.org/packages/c7/bd/be8bb9c40ec7fff917e0689a5666d99c689ea994eacb4a428a7613e1b395/trepan-0.4.9-py3.4.egg" }, { "comment_text": "", "digests": { "md5": "253e188b81f1e3f47dea223655ec18ce", "sha256": "6b7c95bae4864204e4048c4551638e330d0f9abe36daccd9d68fa64d6bae518a" }, "downloads": -1, "filename": "trepan-0.4.9-py3-none-any.whl", "has_sig": false, "md5_digest": "253e188b81f1e3f47dea223655ec18ce", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 272020, "upload_time": "2015-06-12T09:29:43", "url": "https://files.pythonhosted.org/packages/e7/b2/a656faf51ec38be611e9214ec8240e45eebe2a56d94f716c20b8c7c0689c/trepan-0.4.9-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "28f4983869c3db5291d49e1eed81239c", "sha256": "6e053d9533cd284ac7a079e4b8a73112fedeaceb40f62269b40927cb2442a88e" }, "downloads": -1, "filename": "trepan-0.4.9.tar.gz", "has_sig": false, "md5_digest": "28f4983869c3db5291d49e1eed81239c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 190555, "upload_time": "2015-06-12T09:38:12", "url": "https://files.pythonhosted.org/packages/10/43/b0af820982a810673850301d91f3165e3df07280eeaf7be61866ed29194d/trepan-0.4.9.tar.gz" } ], "0.5.0": [ { "comment_text": "", "digests": { "md5": "a86a3724438bdf8ca6e1583a7d09f347", "sha256": "05e92a48b5c02f7b13b5079e8e91b76a0221b4e083a59db73c4be32cdfcbe28e" }, "downloads": -1, "filename": "trepan-0.5.0-py2.6.egg", "has_sig": false, "md5_digest": "a86a3724438bdf8ca6e1583a7d09f347", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 556678, "upload_time": "2015-08-02T04:25:52", "url": "https://files.pythonhosted.org/packages/08/91/fc218162c6298e0779892ba5fd698ca1703a1f6a44947f92fe7e7acb972a/trepan-0.5.0-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "d4e0de1200c41548faee43bc4d352673", "sha256": "5dc90008174c5c8925dbcf75682b91c70b31dcfbb2aed6cd112614c689767e3c" }, "downloads": -1, "filename": "trepan-0.5.0-py2.7.egg", "has_sig": false, "md5_digest": "d4e0de1200c41548faee43bc4d352673", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 555096, "upload_time": "2015-08-02T04:26:02", "url": "https://files.pythonhosted.org/packages/ab/11/2b7ec4de45c84846e38394382109d9e7a802d251cbab46fa3ba9af9158ec/trepan-0.5.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "1ac985afafbfd295bf0f27d7cb7a0ae0", "sha256": "a7ac76f14e38ce4356ecc81748792932ab7bdd3a84331c6680d2fc1d2d6134bc" }, "downloads": -1, "filename": "trepan-0.5.0-py2-none-any.whl", "has_sig": false, "md5_digest": "1ac985afafbfd295bf0f27d7cb7a0ae0", "packagetype": "bdist_wheel", "python_version": "2.6", "requires_python": null, "size": 286008, "upload_time": "2015-08-02T04:25:56", "url": "https://files.pythonhosted.org/packages/0f/5c/5b285d726b34fe8911a87d7f14453b932020a2e5842672b4d87fea7d031b/trepan-0.5.0-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8095569fa67e683febeaa3dfe21fad5e", "sha256": "fbff43c86e3f97e11abbda91bf84287d67491726cf7133498a0890bcd166d331" }, "downloads": -1, "filename": "trepan-0.5.0-py3.4.egg", "has_sig": false, "md5_digest": "8095569fa67e683febeaa3dfe21fad5e", "packagetype": "bdist_egg", "python_version": "3.4", "requires_python": null, "size": 554730, "upload_time": "2015-08-02T04:22:24", "url": "https://files.pythonhosted.org/packages/9a/5a/31b085efea6ef32ad85f887030d3e9ec4a47cacb1c3b6205affb74b3b2e0/trepan-0.5.0-py3.4.egg" }, { "comment_text": "", "digests": { "md5": "8f3cba4aa66d523de39e69cec66a870f", "sha256": "aa91da642c97e5f14a3a8fec00cb313866bc4e89b7a991139bf2e015b38d83c5" }, "downloads": -1, "filename": "trepan-0.5.0-py3-none-any.whl", "has_sig": false, "md5_digest": "8f3cba4aa66d523de39e69cec66a870f", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 272143, "upload_time": "2015-08-02T04:22:28", "url": "https://files.pythonhosted.org/packages/56/63/85091873d4e679e03a6d61c2e486fadcd625b17b1ef064410d8c89da01d7/trepan-0.5.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "64c9fb4e820c50e6ef83be942620a922", "sha256": "f00e7d632c6c5bd6f6d7795fab905d50eebc79685ce4c00731a66d6908187518" }, "downloads": -1, "filename": "trepan-0.5.0.tar.gz", "has_sig": false, "md5_digest": "64c9fb4e820c50e6ef83be942620a922", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 190919, "upload_time": "2015-08-02T04:27:13", "url": "https://files.pythonhosted.org/packages/3e/fb/34468f62975845d92ba56e1a61765d5ad7c8a4b22672bb00a51d6a60ddb4/trepan-0.5.0.tar.gz" } ], "0.5.1": [ { "comment_text": "", "digests": { "md5": "32020ff04a0f606216913d0e775a067c", "sha256": "5ecf590d2c98957b899ba25eaa04b26ba96df08f91e13d5b709e186e7a3ff3e0" }, "downloads": -1, "filename": "trepan-0.5.1-py2.6.egg", "has_sig": false, "md5_digest": "32020ff04a0f606216913d0e775a067c", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 556877, "upload_time": "2015-08-16T12:09:22", "url": "https://files.pythonhosted.org/packages/87/a2/6c002ff020517c83f23dcb5f9edb4c9e32e3e76f77283c7aae75be75048b/trepan-0.5.1-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "6911ba048428790abf3d7c9dfcd27e1d", "sha256": "89926ff8618c9138547673539409da750d6ad4e5279ed2ff1c9d8abc48d6aee4" }, "downloads": -1, "filename": "trepan-0.5.1-py2.7.egg", "has_sig": false, "md5_digest": "6911ba048428790abf3d7c9dfcd27e1d", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 555297, "upload_time": "2015-08-16T12:09:35", "url": "https://files.pythonhosted.org/packages/e6/0b/2dd503d085591acb7343fef2ed338296a49e996b35a3b47569fc712ab5d3/trepan-0.5.1-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "ee5f3b76e43afa3a7691f6a09b225af1", "sha256": "666501602a4996337e4c7c52b22e5a8698eea0add8c0c2f985e57ea453096ee2" }, "downloads": -1, "filename": "trepan-0.5.1-py2-none-any.whl", "has_sig": false, "md5_digest": "ee5f3b76e43afa3a7691f6a09b225af1", "packagetype": "bdist_wheel", "python_version": "2.6", "requires_python": null, "size": 286093, "upload_time": "2015-08-16T12:09:27", "url": "https://files.pythonhosted.org/packages/cf/bf/ae0b211ecd5b2834db2d6e13ae034f8d782a292b03995e5ea2431d0978aa/trepan-0.5.1-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "afe74edad415748ba76610890436c6a5", "sha256": "f60813765c932de1e00a40989353606db53f2afcca5cde8d3a2064c037b229fe" }, "downloads": -1, "filename": "trepan-0.5.1.tar.gz", "has_sig": false, "md5_digest": "afe74edad415748ba76610890436c6a5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 191010, "upload_time": "2015-08-16T12:09:59", "url": "https://files.pythonhosted.org/packages/5b/55/1852369969113d7d863a791387fcf38fd7df030f7b8c7e8e44d2d735c68c/trepan-0.5.1.tar.gz" } ], "0.5.2": [ { "comment_text": "", "digests": { "md5": "4e374f3a62b15dd04a97224c17770827", "sha256": "3170b577b9f5d69dbad6a1af4a08a6206f02aae753d31c255634b61778d87558" }, "downloads": -1, "filename": "trepan-0.5.2-py3.4.egg", "has_sig": false, "md5_digest": "4e374f3a62b15dd04a97224c17770827", "packagetype": "bdist_egg", "python_version": "3.4", "requires_python": null, "size": 554943, "upload_time": "2015-08-25T01:30:19", "url": "https://files.pythonhosted.org/packages/f6/2f/5d1ccd33b63d0610294be682610cf7e510135cc9d36ed8417338f35f55c9/trepan-0.5.2-py3.4.egg" } ], "0.5.3": [ { "comment_text": "", "digests": { "md5": "2d191f4c84f00d2a4a3e3e8bcee91d66", "sha256": "64e73f5d6cc7141afc0369d1d3b73018bbfaf94f50adac47e83faa8e45f9fda2" }, "downloads": -1, "filename": "trepan-0.5.3-py2.6.egg", "has_sig": false, "md5_digest": "2d191f4c84f00d2a4a3e3e8bcee91d66", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 557366, "upload_time": "2015-10-12T23:22:43", "url": "https://files.pythonhosted.org/packages/67/27/5ff4b8cebc9823b31293c5336a151aa6a5fe153abf95ff34387b2847cbb3/trepan-0.5.3-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "99fc45aad2a7c303241341c5268b0385", "sha256": "e65781f8a331752afd0e1d4b2291c793770136a305be606af68fded98202c2e8" }, "downloads": -1, "filename": "trepan-0.5.3-py2.7.egg", "has_sig": false, "md5_digest": "99fc45aad2a7c303241341c5268b0385", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 555777, "upload_time": "2015-10-12T23:22:58", "url": "https://files.pythonhosted.org/packages/cb/53/0790c7f4d0d1e61a8bda35834ed4657fd9a31b75fc1fe7d7dd0773cc507f/trepan-0.5.3-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "8f58c79f8aea2118b0dc1a833c1ce261", "sha256": "2e6c4c15411f71227ed5753d2491fa23ddd8c99df6e473b1a52a9e24aca1220d" }, "downloads": -1, "filename": "trepan-0.5.3-py2-none-any.whl", "has_sig": false, "md5_digest": "8f58c79f8aea2118b0dc1a833c1ce261", "packagetype": "bdist_wheel", "python_version": "2.6", "requires_python": null, "size": 286396, "upload_time": "2015-10-12T23:22:51", "url": "https://files.pythonhosted.org/packages/30/15/4d9c355cb9a7deddc02c166c713c447cbfbe28384eb2083b5b7242e437ce/trepan-0.5.3-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a01c4e0494e8e37686672649ac750a2a", "sha256": "18c457b9cac3f5332a5f59cf10ea0e8cbbf815f7ec56fdea4818a830ac637c35" }, "downloads": -1, "filename": "trepan-0.5.3.tar.gz", "has_sig": false, "md5_digest": "a01c4e0494e8e37686672649ac750a2a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 191697, "upload_time": "2015-10-12T23:23:13", "url": "https://files.pythonhosted.org/packages/bc/35/c694495a55deac9cebd70708a856bbafe53ce98925e448abd9da1d943d3e/trepan-0.5.3.tar.gz" } ], "0.6.0": [ { "comment_text": "", "digests": { "md5": "d465afa90e402443a03f5d11da9fd503", "sha256": "ccdbcb4180c4a0e634405eaa0d3453a96a4272e8cb567cfa5e6098bdd913d1dc" }, "downloads": -1, "filename": "trepan-0.6.0-py2.6.egg", "has_sig": false, "md5_digest": "d465afa90e402443a03f5d11da9fd503", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 570288, "upload_time": "2015-11-30T23:17:42", "url": "https://files.pythonhosted.org/packages/3b/b6/a7070fa17eb41438dab066c2bb3594a2785f7b9c6caec09b0859106dba54/trepan-0.6.0-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "3594bf101d484088fb5a78e8ddf8de90", "sha256": "d4f162ebaac820b58bf0a1fa52afa835a0860523ec3a7f8c3ed3313ce36ad7ac" }, "downloads": -1, "filename": "trepan-0.6.0-py2.7.egg", "has_sig": false, "md5_digest": "3594bf101d484088fb5a78e8ddf8de90", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 568690, "upload_time": "2015-11-30T23:17:57", "url": "https://files.pythonhosted.org/packages/d3/2f/9766dc2371107d55725e28e5e31bc50bf181376a90f059540dc1b7e37f2f/trepan-0.6.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "a4195f1ff5979b784a8b8de72aa58434", "sha256": "448acc39a6b1eb6b4bb98c75f73b675e81473ba023ce78c946ae8488a3aad47e" }, "downloads": -1, "filename": "trepan-0.6.0-py2-none-any.whl", "has_sig": false, "md5_digest": "a4195f1ff5979b784a8b8de72aa58434", "packagetype": "bdist_wheel", "python_version": "2.6", "requires_python": null, "size": 293338, "upload_time": "2015-11-30T23:17:48", "url": "https://files.pythonhosted.org/packages/c9/2b/0534b4807a030ee70f03c447b7ea0a9d2a92a5798ffea9aaa2cdf376b92e/trepan-0.6.0-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8485f03b6a730793bf3c9fad69ae6005", "sha256": "4067b41a4298466e2f3bcc4720d8131b022737bf245034d9b6c13e2a28c5d87b" }, "downloads": -1, "filename": "trepan-0.6.0.tar.gz", "has_sig": false, "md5_digest": "8485f03b6a730793bf3c9fad69ae6005", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 194639, "upload_time": "2015-11-30T23:18:35", "url": "https://files.pythonhosted.org/packages/6c/45/f22dd3c98b233bdaf0ae8759e706271b080b09a19b8b09e17d1ea28ae61a/trepan-0.6.0.tar.gz" } ], "0.6.1": [ { "comment_text": "", "digests": { "md5": "acd772298521fe08fc6016411ac7c060", "sha256": "1d8af80f2bdd1978b2043bd2ce0e2b10ef0fbf70cb1ed7c7da3b8fafd806d07d" }, "downloads": -1, "filename": "trepan-0.6.1-py2.6.egg", "has_sig": false, "md5_digest": "acd772298521fe08fc6016411ac7c060", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 575063, "upload_time": "2015-12-10T09:52:19", "url": "https://files.pythonhosted.org/packages/4c/4f/b0a7347390f8dec3ed32056024401bd5a02682c93c1cc56f240e94a7a89d/trepan-0.6.1-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "3e59a97cb54294e81546a6b322267d9d", "sha256": "d6a52e67e7488ad7f20192dd3a20ac1aea87a3b8ff5bd3d2c42316ebd1c5cd9a" }, "downloads": -1, "filename": "trepan-0.6.1-py2.7.egg", "has_sig": false, "md5_digest": "3e59a97cb54294e81546a6b322267d9d", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 573468, "upload_time": "2015-12-10T09:52:29", "url": "https://files.pythonhosted.org/packages/ba/b4/264932d0f578a48d02a008cace48e7505e53c4f92165d076c3b0086796b3/trepan-0.6.1-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "25bcae62cf3f8d6838cf19b0fcffdd27", "sha256": "4bcb0089f03c25087fb4a861822bd54eb53a0663c617a09fa1cfa30ccd42b09e" }, "downloads": -1, "filename": "trepan-0.6.1-py2-none-any.whl", "has_sig": false, "md5_digest": "25bcae62cf3f8d6838cf19b0fcffdd27", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 296091, "upload_time": "2015-12-10T09:52:47", "url": "https://files.pythonhosted.org/packages/17/dc/809f9da3f37e3c0b6a5eff2848ab0dde8585ce692457443a07c026977393/trepan-0.6.1-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "593c6d3c549e62a5e0a9dbd2e1d2f645", "sha256": "efd08976d1695816652fc6b03a56b82046003595267231ce9f709df798b117ca" }, "downloads": -1, "filename": "trepan-0.6.1.tar.gz", "has_sig": false, "md5_digest": "593c6d3c549e62a5e0a9dbd2e1d2f645", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 196713, "upload_time": "2015-12-10T09:52:39", "url": "https://files.pythonhosted.org/packages/f9/49/416891d144fa697f4dd27f312edc3f9bfb0aff69c28b680c9a664a7c85a7/trepan-0.6.1.tar.gz" } ], "0.6.2": [ { "comment_text": "", "digests": { "md5": "01564f506cbee71132b8781a538b20c8", "sha256": "845dbf4dcb5dbc93f7fd9ba0bbbda88c89aed8bfe6b657ade935b00bae3b92d5" }, "downloads": -1, "filename": "trepan-0.6.2-py2.6.egg", "has_sig": false, "md5_digest": "01564f506cbee71132b8781a538b20c8", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 577931, "upload_time": "2015-12-12T04:19:14", "url": "https://files.pythonhosted.org/packages/31/41/501a14fa6d48d4daa52c16892757c38e832a4bcc7310d1bfb34a17b1c06f/trepan-0.6.2-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "a6ba08cc8767b62da768ddee07191c6d", "sha256": "bcfe35b684984d87315308d9760af3261a95de140a54dffbcd4db018289786ce" }, "downloads": -1, "filename": "trepan-0.6.2-py2.7.egg", "has_sig": false, "md5_digest": "a6ba08cc8767b62da768ddee07191c6d", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 576331, "upload_time": "2015-12-12T04:19:22", "url": "https://files.pythonhosted.org/packages/df/29/291f394669bd3797bdfc0faee3ef320d2ddd8d6f3eb144eaaf27ef55bebc/trepan-0.6.2-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "7383e5b98b150f20576bce54f1315afa", "sha256": "ec849a7873a834243d66091875295e1c220d37ae86a81308140ad612d30496be" }, "downloads": -1, "filename": "trepan-0.6.2-py2-none-any.whl", "has_sig": false, "md5_digest": "7383e5b98b150f20576bce54f1315afa", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 297425, "upload_time": "2015-12-12T04:19:38", "url": "https://files.pythonhosted.org/packages/ee/d4/8800a4a6796651046ffcd10c911096bfac0891a3717681f2fa73964d0450/trepan-0.6.2-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "685a5c041b5582530c609e889981e21c", "sha256": "34a0c00486c0ee38961846344234a010b7947012eb4e697ef86aeb3892f90f16" }, "downloads": -1, "filename": "trepan-0.6.2.tar.gz", "has_sig": false, "md5_digest": "685a5c041b5582530c609e889981e21c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 198608, "upload_time": "2015-12-12T04:19:30", "url": "https://files.pythonhosted.org/packages/93/89/67dcde307bc497e61186f63b50dc03d5cb66fa15a22c8331c334bf82388e/trepan-0.6.2.tar.gz" } ], "0.6.3": [ { "comment_text": "", "digests": { "md5": "2b49873880a4451b3084432e9dbad550", "sha256": "e1908b2accfa23c910f4c3f04c9057cdacfb30448b09df4f2f503efc8553ed59" }, "downloads": -1, "filename": "trepan-0.6.3-py2.6.egg", "has_sig": false, "md5_digest": "2b49873880a4451b3084432e9dbad550", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 584533, "upload_time": "2015-12-27T17:19:55", "url": "https://files.pythonhosted.org/packages/97/9b/171e9851ca6466a72a43a19ac05c897ae47a849a3318d7f97ef396257508/trepan-0.6.3-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "5a0777f1e3569bd4db31c510ec1d8b07", "sha256": "a2e4d176ca1e042f0e298bf1701da8d73075935a6f913aff5164a34767de1fbf" }, "downloads": -1, "filename": "trepan-0.6.3-py2.7.egg", "has_sig": false, "md5_digest": "5a0777f1e3569bd4db31c510ec1d8b07", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 582833, "upload_time": "2015-12-27T17:20:11", "url": "https://files.pythonhosted.org/packages/5a/a3/65003fa801accf6652f0d8a9b9a809bc2484ec0a287246699827c6e60e39/trepan-0.6.3-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "9365d67bc873f57ad1cc7e9e6aaf420d", "sha256": "5b562e358def006a16fff29f871752e45bee9d06904e8b5a0bb485fe18f904ea" }, "downloads": -1, "filename": "trepan-0.6.3-py2-none-any.whl", "has_sig": false, "md5_digest": "9365d67bc873f57ad1cc7e9e6aaf420d", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 300445, "upload_time": "2015-12-27T17:20:41", "url": "https://files.pythonhosted.org/packages/70/6d/8a1300a075a1aa0d63b4d3b30d225d084808840132258108e5d818066e6b/trepan-0.6.3-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "14b5fdddaa775c75c480564d90a073d5", "sha256": "ad3903fe67bc8e1789ea721d652d819b08a695168be8d24d40ac5f59750d59dd" }, "downloads": -1, "filename": "trepan-0.6.3.tar.gz", "has_sig": false, "md5_digest": "14b5fdddaa775c75c480564d90a073d5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 200358, "upload_time": "2015-12-27T17:20:27", "url": "https://files.pythonhosted.org/packages/5d/d8/d5b8bbcff151f1102bb1ec835146fae23110259ab7939797c08589b08d64/trepan-0.6.3.tar.gz" } ], "0.6.4": [ { "comment_text": "", "digests": { "md5": "33d17d11b63ab647445e82ef30c639a5", "sha256": "f0be324370bdfa5d256371b33e52ccd5bfafd22f290476af745810a7a49dad4a" }, "downloads": -1, "filename": "trepan-0.6.4-py2.6.egg", "has_sig": false, "md5_digest": "33d17d11b63ab647445e82ef30c639a5", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 584582, "upload_time": "2015-12-31T17:03:07", "url": "https://files.pythonhosted.org/packages/bf/17/951d666380435e084701d39997c4869f2e3e23bf467f2465304aa6df36f7/trepan-0.6.4-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "5599e52b0f91c0c5eb95254f945eec4f", "sha256": "0c4234648fb34bc5ee956edde233e653f6c73b03c0817ff57c6bea2f477ae197" }, "downloads": -1, "filename": "trepan-0.6.4-py2.7.egg", "has_sig": false, "md5_digest": "5599e52b0f91c0c5eb95254f945eec4f", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 582887, "upload_time": "2015-12-31T17:03:17", "url": "https://files.pythonhosted.org/packages/cd/0e/b9b4b45709ee1177c5291489695c69d3cb370cff8b657a0fb91f6b9bbccc/trepan-0.6.4-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "b593d6dd58787a0d90712535e430a663", "sha256": "c713017625458688d7ebb310f392f86641940b77bffc840d17fcbe121ef00959" }, "downloads": -1, "filename": "trepan-0.6.4-py2-none-any.whl", "has_sig": false, "md5_digest": "b593d6dd58787a0d90712535e430a663", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 300474, "upload_time": "2015-12-31T17:03:35", "url": "https://files.pythonhosted.org/packages/3b/53/99d1cc9b04cc4b56f02144d219fe6926ca472dadeb4688f112760756f2c1/trepan-0.6.4-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f5acc68b91eff4a26a5a3ded6c010254", "sha256": "7e5c82cd80fe0cd20ea45c3c75a92e91d90133257f8531c0b5a6d38d571dabcc" }, "downloads": -1, "filename": "trepan-0.6.4.tar.gz", "has_sig": false, "md5_digest": "f5acc68b91eff4a26a5a3ded6c010254", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 200472, "upload_time": "2015-12-31T17:03:27", "url": "https://files.pythonhosted.org/packages/94/27/3ad84368ba9535038dfdacbcfba440b6f5945f2fad6edf63bdef09c4d55a/trepan-0.6.4.tar.gz" } ], "0.6.5": [ { "comment_text": "", "digests": { "md5": "697ac96696b9e164f6bdd5095e64e56d", "sha256": "dc5b114ff2da44deab9d2991c1936deedcce44b6572b191a5a88d14e724e939b" }, "downloads": -1, "filename": "trepan-0.6.5.linux-x86_64.exe", "has_sig": false, "md5_digest": "697ac96696b9e164f6bdd5095e64e56d", "packagetype": "bdist_wininst", "python_version": "any", "requires_python": null, "size": 449038, "upload_time": "2016-07-26T21:42:11", "url": "https://files.pythonhosted.org/packages/ad/45/6dec2bbed14f3522a1d1a10bc65d1ca8eb24c2d5683f71c6c92226221007/trepan-0.6.5.linux-x86_64.exe" }, { "comment_text": "built for Linux-3.13.0-92-generic-x86_64-with-glibc2.7", "digests": { "md5": "c0271d01c48d7a9157b60c238c780594", "sha256": "94f4835716d88eb795d76c79ad7490a7a7dc8146e3868f0933267f1879e0d0c4" }, "downloads": -1, "filename": "trepan-0.6.5.linux-x86_64.tar.gz", "has_sig": false, "md5_digest": "c0271d01c48d7a9157b60c238c780594", "packagetype": "bdist_dumb", "python_version": "any", "requires_python": null, "size": 362258, "upload_time": "2016-07-26T21:41:28", "url": "https://files.pythonhosted.org/packages/43/47/b98a6096e566aa0a3541ae33c601d665e79988187ecb2845eff2208da0bf/trepan-0.6.5.linux-x86_64.tar.gz" }, { "comment_text": "", "digests": { "md5": "a3191a40c9771e6325575c1554cdfc42", "sha256": "067d409777f8928765ee808ebe0e04c6c42195cb077b73a2bebfca5d6cd101aa" }, "downloads": -1, "filename": "trepan-0.6.5-py2.6.egg", "has_sig": false, "md5_digest": "a3191a40c9771e6325575c1554cdfc42", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 593709, "upload_time": "2016-07-26T21:39:50", "url": "https://files.pythonhosted.org/packages/51/f7/e4b60a02cd7ce8ecc32de501a80a2a6ca8e679e70cb29ebba07fd6549427/trepan-0.6.5-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "4a721d4aaf2c598e4d4cdc841956954e", "sha256": "8331970adebfad1cb900b61e2de1e8186bee7aae95ca189ef12a09c50e801595" }, "downloads": -1, "filename": "trepan-0.6.5-py2.7.egg", "has_sig": false, "md5_digest": "4a721d4aaf2c598e4d4cdc841956954e", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 592006, "upload_time": "2016-07-26T21:39:56", "url": "https://files.pythonhosted.org/packages/6f/6c/1898ad04c064048545dca593e95bbd022d288ca11882c1bfdf606a613709/trepan-0.6.5-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "36af3dbeb4f06f8e248984bca08318da", "sha256": "da9149809e293ebf315c0bbeb43d24260a080d013daaf975af5410c779310e39" }, "downloads": -1, "filename": "trepan-0.6.5.tar.gz", "has_sig": false, "md5_digest": "36af3dbeb4f06f8e248984bca08318da", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 323388, "upload_time": "2016-07-26T21:40:13", "url": "https://files.pythonhosted.org/packages/7a/df/ea6aeb9a7b892279d8cf9eadefea64155f57786f361fa1d4f19411bbee72/trepan-0.6.5.tar.gz" } ], "0.6.6": [ { "comment_text": "", "digests": { "md5": "18e8a3ef3dd6b800a92883f88eb95e66", "sha256": "e325b18fa6e9f0b74cbc3a76c763c06b1ef125ecb112450026a5a8d46365efdc" }, "downloads": -1, "filename": "trepan-0.6.6-py2.7.egg", "has_sig": false, "md5_digest": "18e8a3ef3dd6b800a92883f88eb95e66", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 594888, "upload_time": "2017-06-03T16:36:15", "url": "https://files.pythonhosted.org/packages/a5/ac/c37dbebea0fae0142f989f1d962b5f933ff78e527c6c7809ea8024bd714a/trepan-0.6.6-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "1b9b395e2298d05944057bfef014ef5f", "sha256": "8e5f76920ae209ad49b80afb325de2a5eb8915d0aa7548b2d1619a32c1014462" }, "downloads": -1, "filename": "trepan-0.6.6.tar.gz", "has_sig": false, "md5_digest": "1b9b395e2298d05944057bfef014ef5f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 231414, "upload_time": "2017-06-03T16:36:42", "url": "https://files.pythonhosted.org/packages/25/74/fbf8202073d57da72b163cd905b6ef549adfea03fc98a3b76eabcb06c351/trepan-0.6.6.tar.gz" } ], "0.8.5": [ { "comment_text": "", "digests": { "md5": "fc906832db4754043271744d6b5d8a7c", "sha256": "fd904ded20c6d156b2d0db8e055db8bb5bb94cc76c01e23300ae3a08f5f61a06" }, "downloads": -1, "filename": "trepan-0.8.5-py3.3.egg", "has_sig": false, "md5_digest": "fc906832db4754043271744d6b5d8a7c", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 657585, "upload_time": "2018-02-07T20:42:43", "url": "https://files.pythonhosted.org/packages/6f/3d/8a4669b3dae0fbf62ae23da1292a00ac452752ed53f9f76047d82060b49b/trepan-0.8.5-py3.3.egg" }, { "comment_text": "", "digests": { "md5": "94666c24868c5e0dc0d793a2d459c85c", "sha256": "b2426f3016dbaa1c290ab59cd9e3b241ad11096a7e436c6f68c86af69c7a975c" }, "downloads": -1, "filename": "trepan3k-0.8.5-py3.3.egg", "has_sig": false, "md5_digest": "94666c24868c5e0dc0d793a2d459c85c", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 657585, "upload_time": "2018-02-07T20:32:51", "url": "https://files.pythonhosted.org/packages/bd/d0/e4c79b0be648678f59d1648bea3b54df3ddfe6a0da16bc385966e4c47295/trepan3k-0.8.5-py3.3.egg" } ], "0.8.6": [ { "comment_text": "", "digests": { "md5": "b98f52dfe7b30e4c3a0edc52cff50e31", "sha256": "d498f23d165ff1a6a4434d79f82082f0d40f18fbe7069578941c4c03c1e31dc5" }, "downloads": -1, "filename": "trepan3k-0.8.6-py3.3.egg", "has_sig": false, "md5_digest": "b98f52dfe7b30e4c3a0edc52cff50e31", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 657053, "upload_time": "2018-03-08T13:56:28", "url": "https://files.pythonhosted.org/packages/35/d0/accbf8b332fa2f8fd0d2a218f7d1c841e49186eb6ac15285b298f477bf27/trepan3k-0.8.6-py3.3.egg" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "b98f52dfe7b30e4c3a0edc52cff50e31", "sha256": "d498f23d165ff1a6a4434d79f82082f0d40f18fbe7069578941c4c03c1e31dc5" }, "downloads": -1, "filename": "trepan3k-0.8.6-py3.3.egg", "has_sig": false, "md5_digest": "b98f52dfe7b30e4c3a0edc52cff50e31", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 657053, "upload_time": "2018-03-08T13:56:28", "url": "https://files.pythonhosted.org/packages/35/d0/accbf8b332fa2f8fd0d2a218f7d1c841e49186eb6ac15285b298f477bf27/trepan3k-0.8.6-py3.3.egg" } ] }