{ "info": { "author": "Lain Supe (lainproliant)", "author_email": "lainproliant@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "License :: OSI Approved :: BSD License", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Topic :: Software Development :: Libraries :: Application Frameworks" ], "description": "Xeno: The Python dependency injector from outer space.\n======================================================\n\n|Build Status|\n\nXeno is a simple Python dependency injection framework. Use it when you\nneed to manage complex inter-object dependencies in a clean way. For the\nmerits of dependency injection and IOC, see\nhttps://en.wikipedia.org/wiki/Dependency_injection.\n\nXeno should feel pretty familiar to users of Google Guice in Java, as it\nis somewhat similar, although it is less focused on type names and more\non named resources and parameter injection.\n\nInstallation\n============\n\nInstallation is simple. With python3-pip, do the following:\n\n::\n\n $ sudo pip install -e .\n\nOr, to install the latest version available on PyPI:\n\n::\n\n $ sudo pip install xeno\n\nUsage\n=====\n\nTo use Xeno as a dependency injection framework, you need to create a\nxeno.Injector and provide it with modules. These modules are regular\nPython objects with methods marked with the ``@xeno.provider``\nannotation. This annotation tells the ``Injector`` that this method\nprovides a named resource, the same name as the method marked with\n``@provider``. These methods should either take no parameters (other\nthan ``self``), or take named parameters which refer to other resources\nby name, i.e.\u00a0the providers can also be injected with other resources in\norder to build a dependency chain.\n\nOnce you have an ``Injector`` full of resources, you can use it to\ninject instances, functions, or methods with resources.\n\nTo create a new object instance by injecting resources into its\nconstructor, use ``Injector.create(clazz)``, where ``clazz`` is the\nclass which you would like to instantiate. The constructor of this class\nis called, and all named parameters in the constructor are treated as\nresource references. Once the object is instantiated, any methods marked\nwith ``@inject`` are invoked with named resources provided.\n\nResources can be injected into normal functions, bound methods, or\nexisting object instances via ``Injector.inject(obj)``. If the parameter\nis an object instance, it is scanned for methods marked with ``@inject``\nand these methods are invoked with named resources provided.\n\nExample\n-------\n\nIn this simple example, we inject an output stream into an object.\n\n::\n\n import sys\n from xeno import *\n\n class OutputStreamModule:\n @provide\n def output_stream(self):\n return sys.stdout\n\n class VersionWriter:\n def __init__(self, output_stream):\n self.output_stream = output_stream\n\n def write_version(self):\n print('The python version is %s' % sys.version_info,\n file=self.output_stream)\n\n injector = Injector(OutputStreamModule())\n writer = injector.create(VersionWriter)\n writer.write_version()\n\nCheckout ``test.py`` in the git repo for more usage examples.\n\nChange Log\n----------\n\nVersion 4.0.0: May 12 2019\n~~~~~~~~~~~~~~~~~~~~~~~~~~\n\n**BACKWARDS INCOMPATIBLE CHANGE** - Removed support for parameter\nannotation aliases. Use ``@alias`` on methods instead. This was removed\nto allow Xeno code to play nicely with PEP 484 type hinting.\n\nVersion 3.1.0: August 29 2018\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\n- Add ClassAttributes.for_object convenience method\n\nVersion 3.0.0: May 4 2018\n~~~~~~~~~~~~~~~~~~~~~~~~~\n\n**BACKWARDS INCOMPATIBLE CHANGE** - Provide injection interceptors with\nan alias map for the given param map. - This change breaks all existing\ninjection interceptors until the new param is added.\n\nVersion 2.8.0: May 3 2018\n~~~~~~~~~~~~~~~~~~~~~~~~~\n\n- Allow decorated/wrapped methods to be properly injected if their\n ``'params'`` method attribute is carried forward.\n\nVersion 2.7.0: April 20 2018\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\n- The ``Injector`` now adds a ``'resource-name'`` attribute to resource\n methods allowing the inspection of a resource\u2019s full canonical name\n at runtime.\n\nVersion 2.6.0: March 27 2018\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\n- Bugfix release: Remove support for implicit asynchronous resolution\n of dependencies. Providers can still be async, in order to await some\n other set of coroutines, but can no longer themselves be run in sync.\n The benefits do not outweigh the complexity of bugs and timing\n concerns introduced by this approach.\n\nVersion 2.5.0: March 2, 2018\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\n- Added ``Injector.provide_async()``. Note that resource are always run\n within an event loop and should not use ``inject()``, ``provide()``,\n or ``require()`` directly, instead they should use\n ``inject_async()``, ``provide_async()``, and ``require_async()`` to\n dynamically modify resources.\n\nVersion 2.4.1: January 30, 2018\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\n- Added ``Injector.scan_resources()`` to allow users to scan for\n resource names with the given attributes.\n- Added ``Attributes.merge()`` to assist with passing attributes down\n to functions which are wrapped in a decorator.\n- Added ``MethodAttributes.wraps()`` static decorator to summarize a\n common use case of attribute merging.\n- Added ``MethodAttributes.add()`` as a simple static decorator to add\n attribute values to a method\u2019s attributes.\n\nVersion 2.4.0: January 21, 2018\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\n- Dropped support for deprecated ``Namespace.enumerate()`` in favor of\n ``Namespace.get_leaves()``.\n\nVersion 2.3.0: January 21, 2018\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\n- Added support for asyncio-based concurrency and async provider\n coroutines with per-injector event loops (``injector.loop``).\n\nVersion 2.2.0: September 19, 2017\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\n- Expose the Injector\u2019s Namespace object via\n ``Injector.get_namespace()``. This is useful for users who want to\n list the contents of namespaces.\n\nVersion 2.1.0: August 23rd, 2017\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\n- Allow multiple resource names to be provided to\n ``Injector.get_dependency_graph()``.\n\nVersion 2.0.0: July 25th, 2017\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\n**BACKWARDS INCOMPATIBLE CHANGE** - Change the default namespace\nseparator and breakout symbol to \u2018/\u2019\n\nCode using the old namespace separator can be made to work by overriding\nthe value of xeno.Namespace.SEP:\n\n::\n\n import xeno\n xeno.Namespace.SEP = '::'\n\nVersion 1.10: July 25th, 2017\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\n- Allow names prefixed with ``::`` to escape their module\u2019s namespace,\n e.g.\u00a0\\ ``::top_level_item``\n\nVersion 1.9: May 23rd, 2017\n~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\n- Add ``@const()`` module annotation for value-based resources\n- Add ``Injector.get_dependency_tree()`` to fetch a tree of dependency\n names for a given resource name.\n\nVersion 1.8: May 16th, 2017\n~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\n- Add ``MissingResourceError`` and ``MissingDependencyError`` exception\n types.\n\nVersion 1.7: May 16th, 2017\n~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\n- Major update, adding support for namespaces, aliases, and inline\n resource parameter aliases. See the unit tests in test.py for\n examples.\n\n - Added ``@namespace('Name')`` decorator for modules to specify that\n all resources defined in the module should be scoped within\n \u2018Name::\u2019.\n - Added ``@name('alt-name')`` to allow resources to be named\n something other than the name of the function that defines them.\n - Added ``@alias('alt-name', 'name')`` to allow a resource to be\n renamed within either the scope of a single resource or a whole\n module.\n - Added ``@using('NamespaceName')`` to allow the contents of the\n given namespace to be automatically aliases into either the scope\n of a single resource or a whole module.\n - Added support for resource function annotations via PEP 3107 to\n allow inline aliases,\n e.g.\u00a0\\ ``def my_resource(name: 'Name::something-important'):``\n\nVersion 1.6: April 26th, 2017\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\n- Changed how ``xeno.MethodAttributes`` works: it now holds a map of\n attributes and provides methods ``get()``, ``put()``, and ``check()``\n\nVersion 1.5: April 26th, 2017\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\n- Added injection interceptors\n- Refactored method tagging to use ``xeno.MethodAttributes`` instead of\n named object attributes to make attribute tagging more flexible and\n usable by the outside world, e.g.\u00a0for the new injectors.\n\nVersion 1.4: August 30th, 2016\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\n- Added cycle detection.\n\nVersion 1.3: August 29th, 2016\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\n- Have the injector offer itself as a named resource named \u2018injector\u2019.\n\n.. |Build Status| image:: https://travis-ci.org/lainproliant/xeno.svg?branch=master\n :target: https://travis-ci.org/lainproliant/xeno", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/lainproliant/xeno", "keywords": "IOC dependency injector", "license": "BSD", "maintainer": "", "maintainer_email": "", "name": "xeno", "package_url": "https://pypi.org/project/xeno/", "platform": "", "project_url": "https://pypi.org/project/xeno/", "project_urls": { "Homepage": "https://github.com/lainproliant/xeno" }, "release_url": "https://pypi.org/project/xeno/4.0.4/", "requires_dist": null, "requires_python": "", "summary": "The Python dependency injector from outer space.", "version": "4.0.4" }, "last_serial": 5962538, "releases": { "1.0": [ { "comment_text": "", "digests": { "md5": "5203c246e1658a664bd160a9b395999a", "sha256": "90c27a1203c7a2fbcfc05f95b8887e6c034c7b92181488f5111076d9b57cee56" }, "downloads": -1, "filename": "xeno-1.0.tar.gz", "has_sig": true, "md5_digest": "5203c246e1658a664bd160a9b395999a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5824, "upload_time": "2016-08-29T05:54:21", "url": "https://files.pythonhosted.org/packages/d6/54/70d3affef72c17a6f70d6625e76071ceab6e6f030b792d0f104a8fd398d1/xeno-1.0.tar.gz" } ], "1.1": [ { "comment_text": "", "digests": { "md5": "c98432723cae893d53600d6cfbf1e56a", "sha256": "1ece943ec3a9e8b599b99899107284795da70b5154dc58e89c733633db50189c" }, "downloads": -1, "filename": "xeno-1.1.tar.gz", "has_sig": true, "md5_digest": "c98432723cae893d53600d6cfbf1e56a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6150, "upload_time": "2016-08-29T06:21:29", "url": "https://files.pythonhosted.org/packages/e9/43/965f37d080005c0e61e3c258d263391d644b38d68803bea8f9f09ad449bc/xeno-1.1.tar.gz" } ], "1.10.0": [ { "comment_text": "", "digests": { "md5": "9b84ead2e1dba2f6fd05ef869c8923d0", "sha256": "4f1b5fb10f1bd2e1018b238a84d62b46099a7db2d6aa5b6e84bcaf1a6d95eebf" }, "downloads": -1, "filename": "xeno-1.10.0.tar.gz", "has_sig": false, "md5_digest": "9b84ead2e1dba2f6fd05ef869c8923d0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12325, "upload_time": "2017-07-26T01:50:34", "url": "https://files.pythonhosted.org/packages/f0/c0/592eb18026a633282790216eeeabb65fadf7d615e9d329b0f191338dcab9/xeno-1.10.0.tar.gz" } ], "1.10.1": [ { "comment_text": "", "digests": { "md5": "4bea95ec75bea3a5ca42be762c8cc23e", "sha256": "16b30e6a2faca78163da3e0538edcc2f4d85d88e5b28b31fec670fbff0cbc459" }, "downloads": -1, "filename": "xeno-1.10.1.tar.gz", "has_sig": false, "md5_digest": "4bea95ec75bea3a5ca42be762c8cc23e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12333, "upload_time": "2017-07-26T02:00:48", "url": "https://files.pythonhosted.org/packages/3e/e1/f6f35f314939ea0ff24a55ed11216c36c515f2e406172fdfa0f13bbcd226/xeno-1.10.1.tar.gz" } ], "1.2": [ { "comment_text": "", "digests": { "md5": "2047be981988f153a1de9f6e73dfb070", "sha256": "cdc1e23efbb361ed089518f5fcd247115ceb0542bfc4a4f4b1076244c4b0a978" }, "downloads": -1, "filename": "xeno-1.2.tar.gz", "has_sig": true, "md5_digest": "2047be981988f153a1de9f6e73dfb070", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6185, "upload_time": "2016-08-29T06:23:39", "url": "https://files.pythonhosted.org/packages/d9/26/560e617c753d532bed7a75e1cb7d499ecaa4b39c9fc46bfe54de2857fe9d/xeno-1.2.tar.gz" } ], "1.3": [ { "comment_text": "", "digests": { "md5": "a130af86fa7dd39532e8aa67de517d40", "sha256": "c9d5be2571d25df798c7b506595552734a4ac3d5695448387bc934e2ae9ed090" }, "downloads": -1, "filename": "xeno-1.3.tar.gz", "has_sig": true, "md5_digest": "a130af86fa7dd39532e8aa67de517d40", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6284, "upload_time": "2016-08-29T07:45:46", "url": "https://files.pythonhosted.org/packages/89/9a/55c30ddec77ec09c688d0462577bf5009a294648723095963aaeb41417ba/xeno-1.3.tar.gz" } ], "1.3.1": [ { "comment_text": "", "digests": { "md5": "a426cddce251eaccdcf173345e1412c8", "sha256": "33153a065b7ee2dbae9231843ca6a301496e54ff40a5e4f7e46d422c73ee253f" }, "downloads": -1, "filename": "xeno-1.3.1.tar.gz", "has_sig": true, "md5_digest": "a426cddce251eaccdcf173345e1412c8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6316, "upload_time": "2016-08-29T08:41:36", "url": "https://files.pythonhosted.org/packages/11/2e/515b4d363b0d005a7eaaae89bb5edd3bc260fd8d3dbb9fa9af83637b00ff/xeno-1.3.1.tar.gz" } ], "1.3.2": [ { "comment_text": "", "digests": { "md5": "0389db6dee37b6b0db7d808c9878cce4", "sha256": "145bf6953a16bae133bcf8aa743965e6b945a02b8c17b6df6c1ec17a2860bdf5" }, "downloads": -1, "filename": "xeno-1.3.2.tar.gz", "has_sig": true, "md5_digest": "0389db6dee37b6b0db7d808c9878cce4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6190, "upload_time": "2016-08-29T09:11:08", "url": "https://files.pythonhosted.org/packages/83/0e/023c25274cf55da06ae184b80912cf6045fb90d72ad8e048e5d48ce3908a/xeno-1.3.2.tar.gz" } ], "1.4.0": [ { "comment_text": "", "digests": { "md5": "cc8263117c6efdb4b5955449de99b45c", "sha256": "f78d32cd86ca0cf677eff1b21c7636ae9c035115bda2915f266a33ee0ddc8599" }, "downloads": -1, "filename": "xeno-1.4.0.tar.gz", "has_sig": true, "md5_digest": "cc8263117c6efdb4b5955449de99b45c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6465, "upload_time": "2016-08-30T07:21:26", "url": "https://files.pythonhosted.org/packages/55/4d/d3b1502942e66ce3b252c36c281df67e267eec1eb8d7e78da2c664046750/xeno-1.4.0.tar.gz" } ], "1.4.1": [ { "comment_text": "", "digests": { "md5": "aee688a9475ee18ef6721d4587bc1d2a", "sha256": "1438b683ab4cba8757ea24417529b030a070c6ac7ce1affb5fa979fc9e63f61c" }, "downloads": -1, "filename": "xeno-1.4.1.tar.gz", "has_sig": true, "md5_digest": "aee688a9475ee18ef6721d4587bc1d2a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6499, "upload_time": "2016-08-31T06:23:35", "url": "https://files.pythonhosted.org/packages/87/4f/27af5d767ac08ebfa17e7ec8efbb8f14c18b7c6d6e9ba9ab4239f76de0c7/xeno-1.4.1.tar.gz" } ], "1.4.2": [ { "comment_text": "", "digests": { "md5": "ffa72e36146b187fac66b70317d49a73", "sha256": "dc4123633f4854693192a2e74ad1ce1ab456a679ea2519332dac4e24d3ee932f" }, "downloads": -1, "filename": "xeno-1.4.2.tar.gz", "has_sig": true, "md5_digest": "ffa72e36146b187fac66b70317d49a73", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6679, "upload_time": "2016-09-06T08:32:40", "url": "https://files.pythonhosted.org/packages/ed/76/c4802c4db525ee7fe9e36f44d8a58663ea893badcb2aa9e572b31f52cf82/xeno-1.4.2.tar.gz" } ], "1.4.3": [ { "comment_text": "", "digests": { "md5": "ea508f54d669014d4ac3a7faa711bd63", "sha256": "5fe59ea5ac6ad6b44ddd1fb9e5bdf69b9eb18e6e19534f9522e3fb2605c63069" }, "downloads": -1, "filename": "xeno-1.4.3.tar.gz", "has_sig": true, "md5_digest": "ea508f54d669014d4ac3a7faa711bd63", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6644, "upload_time": "2016-09-06T08:38:16", "url": "https://files.pythonhosted.org/packages/d7/69/2abcc54d3cf83d0f33776486c52af660f9aebba8531b679dfff224ff8791/xeno-1.4.3.tar.gz" } ], "1.4.4": [ { "comment_text": "", "digests": { "md5": "ad512fa8ff2ba36fdf3113365fb1ce4a", "sha256": "6e04060be926ace3eb5d00429d675eda89fc0bcb381b67a94fbca121bbe865f8" }, "downloads": -1, "filename": "xeno-1.4.4.tar.gz", "has_sig": true, "md5_digest": "ad512fa8ff2ba36fdf3113365fb1ce4a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6650, "upload_time": "2016-09-06T08:40:10", "url": "https://files.pythonhosted.org/packages/f6/70/7e4e09eca4750442a4dabaed81fd35891edcb48414a3893382f6695e53b6/xeno-1.4.4.tar.gz" } ], "1.5.0": [ { "comment_text": "", "digests": { "md5": "76e9254db9336ff0dc58133171257220", "sha256": "dbe68a97da63d4c1af3346760176e86606f8f96a5a2330fa183786aa81e2a68b" }, "downloads": -1, "filename": "xeno-1.5.0.tar.gz", "has_sig": false, "md5_digest": "76e9254db9336ff0dc58133171257220", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7402, "upload_time": "2017-04-26T16:41:31", "url": "https://files.pythonhosted.org/packages/4e/1f/345bb6c6bbffa504be04b96322a922b41040277810415e880b79aef5ab9d/xeno-1.5.0.tar.gz" } ], "1.6.0": [ { "comment_text": "", "digests": { "md5": "fd1cb602ed68dc855c99e3671c214f5a", "sha256": "66efd406481fe7b67225a39a35d88163ae89acd813769f6cd14ebbf830b1871b" }, "downloads": -1, "filename": "xeno-1.6.0.tar.gz", "has_sig": false, "md5_digest": "fd1cb602ed68dc855c99e3671c214f5a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7644, "upload_time": "2017-04-28T17:23:30", "url": "https://files.pythonhosted.org/packages/56/38/85047c26f85786c69abfa608e87eed83aecd0c5546f45d610516f957b7f1/xeno-1.6.0.tar.gz" } ], "1.7.0": [ { "comment_text": "", "digests": { "md5": "b4d130501f07a168cfee0b7aa62c00e0", "sha256": "baad5fd2aede2f0fb3a126da6a640e4a557d19ded92e5cddace749b330a79c79" }, "downloads": -1, "filename": "xeno-1.7.0.tar.gz", "has_sig": false, "md5_digest": "b4d130501f07a168cfee0b7aa62c00e0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9369, "upload_time": "2017-05-16T17:43:14", "url": "https://files.pythonhosted.org/packages/d3/14/0c8ff73218a2ea19b2a2689e8b3054736885dce9250e31e3a898f55aca19/xeno-1.7.0.tar.gz" } ], "1.7.1": [ { "comment_text": "", "digests": { "md5": "1b47669596e6f6650a23875c33ee2782", "sha256": "aed099f8ebed2fce110ffa10f9f6849e5679e25c670bfd54910da94f4bd63c3b" }, "downloads": -1, "filename": "xeno-1.7.1.tar.gz", "has_sig": false, "md5_digest": "1b47669596e6f6650a23875c33ee2782", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8968, "upload_time": "2017-05-17T01:09:36", "url": "https://files.pythonhosted.org/packages/35/61/392fc2a5e010270f517a91a9e10652005cc03b7fc693883bfcd8b721325f/xeno-1.7.1.tar.gz" } ], "1.7.2": [ { "comment_text": "", "digests": { "md5": "3db031a79da1c76e02e7729d3b2a4854", "sha256": "9a2f62628388c7d8b99e4bd251208db87706ddf7c94c02b3591588072bf47adf" }, "downloads": -1, "filename": "xeno-1.7.2.tar.gz", "has_sig": false, "md5_digest": "3db031a79da1c76e02e7729d3b2a4854", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8955, "upload_time": "2017-05-17T01:24:09", "url": "https://files.pythonhosted.org/packages/6a/3a/4bf1372821e49efa22853acf67decb1c8f59770ce5b5c56a693f04f40614/xeno-1.7.2.tar.gz" } ], "1.7.3": [ { "comment_text": "", "digests": { "md5": "f8e20046fef3fcb626d852b92041d508", "sha256": "a95d40a827c8941649283659bf47122552edb51aaf2b84a43cb3bf7ccac714a1" }, "downloads": -1, "filename": "xeno-1.7.3.tar.gz", "has_sig": false, "md5_digest": "f8e20046fef3fcb626d852b92041d508", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9438, "upload_time": "2017-05-17T01:30:19", "url": "https://files.pythonhosted.org/packages/24/8e/8d9d44e2d4fd11e0943a8a7f5b1bcb1fe1d027f938530da248de1dbb2aa4/xeno-1.7.3.tar.gz" } ], "1.8.0": [ { "comment_text": "", "digests": { "md5": "6873715a8b339b74b9f09c3f4ee7bc20", "sha256": "b5280db476e4c66c3754dbf247771d321bbb21c96b7032d405fd80904259a68b" }, "downloads": -1, "filename": "xeno-1.8.0.tar.gz", "has_sig": false, "md5_digest": "6873715a8b339b74b9f09c3f4ee7bc20", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9548, "upload_time": "2017-05-17T05:18:26", "url": "https://files.pythonhosted.org/packages/4c/fb/8aa65487fdc67c4a45150c10b4feeb3b7d4b92bacc46119dc65bc42efeaa/xeno-1.8.0.tar.gz" } ], "1.8.1": [ { "comment_text": "", "digests": { "md5": "7347b6ddb689e800140f3e1698884e3c", "sha256": "f34a1ac3ca5c11c0f0e2b99817a1f5f9201b18c81350c6f5f93892f691dd3477" }, "downloads": -1, "filename": "xeno-1.8.1.tar.gz", "has_sig": false, "md5_digest": "7347b6ddb689e800140f3e1698884e3c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9692, "upload_time": "2017-05-17T07:00:11", "url": "https://files.pythonhosted.org/packages/3c/fe/1124aa72a417d2e706fae155e7e33b3be36b007389feb92da93b8e5bf32c/xeno-1.8.1.tar.gz" } ], "1.8.2": [ { "comment_text": "", "digests": { "md5": "8bbaa8383823157f7f42a708e74daad6", "sha256": "470df00a7bb9c79ecd2b92a35b7e63dd457162a58195f458b28203288d361da1" }, "downloads": -1, "filename": "xeno-1.8.2.tar.gz", "has_sig": false, "md5_digest": "8bbaa8383823157f7f42a708e74daad6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9770, "upload_time": "2017-05-17T16:35:48", "url": "https://files.pythonhosted.org/packages/94/10/b557e3946f10385f8615c9ef5154e6bb4c4aaa646979c49256627cbaeeab/xeno-1.8.2.tar.gz" } ], "1.9.0": [ { "comment_text": "", "digests": { "md5": "89afb5b613c114952ac05d45c2b24ee1", "sha256": "0641c12d0ac341f515e7ad8911db679882fafd3bf2c95042f179871acd050b06" }, "downloads": -1, "filename": "xeno-1.9.0.tar.gz", "has_sig": false, "md5_digest": "89afb5b613c114952ac05d45c2b24ee1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11752, "upload_time": "2017-05-25T02:16:22", "url": "https://files.pythonhosted.org/packages/0a/be/6e21606e996ec3e96086374e09d1606c9c76adc264827de71cccc332553b/xeno-1.9.0.tar.gz" } ], "1.9.1": [ { "comment_text": "", "digests": { "md5": "096f795129d79a5544b48ab529b273c5", "sha256": "8a87eac636a9e7dc2214ae4d5584d8c80d7dc430119f48ff7c7f84a72a493d9c" }, "downloads": -1, "filename": "xeno-1.9.1.tar.gz", "has_sig": false, "md5_digest": "096f795129d79a5544b48ab529b273c5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11890, "upload_time": "2017-05-26T17:29:01", "url": "https://files.pythonhosted.org/packages/29/db/0bc3b78d65423fb129744bcccd1d2776a2cdf0f4b1adebf1ef5a160f7d85/xeno-1.9.1.tar.gz" } ], "1.9.2": [ { "comment_text": "", "digests": { "md5": "73ab18ecb492e6f674270ee6988dbbe1", "sha256": "74100aeb1fad9f3e4e3467580bb74f4709e05a653a58a869868dade248db1dbf" }, "downloads": -1, "filename": "xeno-1.9.2.tar.gz", "has_sig": false, "md5_digest": "73ab18ecb492e6f674270ee6988dbbe1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11943, "upload_time": "2017-05-31T01:27:17", "url": "https://files.pythonhosted.org/packages/88/a4/af37863c236275c302780474838965ab585b88dc5bf45612f3ede3d65b02/xeno-1.9.2.tar.gz" } ], "1.9.3": [ { "comment_text": "", "digests": { "md5": "9220db14af485969293df75849dc1e98", "sha256": "794311cd9e264923ff3d8d2c4eda90e540fd18db7e8141c5de7bcd1ea046d3d0" }, "downloads": -1, "filename": "xeno-1.9.3.tar.gz", "has_sig": false, "md5_digest": "9220db14af485969293df75849dc1e98", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11921, "upload_time": "2017-05-31T01:29:16", "url": "https://files.pythonhosted.org/packages/c8/b4/49b0883c181c959f7021a411e65d0e9d6ab59d87ba55cf62d042be6903ca/xeno-1.9.3.tar.gz" } ], "1.9.4": [ { "comment_text": "", "digests": { "md5": "91f5b611ba27adc4471fdc9ac8598458", "sha256": "a7f74320e17244cc36f736a40e9d91b77a31948cd0b4508d214b830706ae0b97" }, "downloads": -1, "filename": "xeno-1.9.4.tar.gz", "has_sig": false, "md5_digest": "91f5b611ba27adc4471fdc9ac8598458", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11971, "upload_time": "2017-06-02T01:31:19", "url": "https://files.pythonhosted.org/packages/56/e9/e41b39e23aec4bacb02a9c62309add6b79a6e52bf7d6ddb3c519fd2bc708/xeno-1.9.4.tar.gz" } ], "1.9.5": [ { "comment_text": "", "digests": { "md5": "7c3eac2882e0bd00adeb305488fba232", "sha256": "3249c9193aee1922c969a58c85b235bfee8491bf22c4fc3aa1d6596fa40cb569" }, "downloads": -1, "filename": "xeno-1.9.5.tar.gz", "has_sig": false, "md5_digest": "7c3eac2882e0bd00adeb305488fba232", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12011, "upload_time": "2017-06-02T17:41:21", "url": "https://files.pythonhosted.org/packages/3d/d0/81c0aa0362155247efe973ffda7478cf0a0049e0219188b46504f0e05fb2/xeno-1.9.5.tar.gz" } ], "1.9.6": [ { "comment_text": "", "digests": { "md5": "bdd2c01be5902aad892c51774defb492", "sha256": "d083da1922d776163a779aeec45a9e5ade40c8b972ee2dd3f30d0c4edbafea18" }, "downloads": -1, "filename": "xeno-1.9.6.tar.gz", "has_sig": false, "md5_digest": "bdd2c01be5902aad892c51774defb492", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12050, "upload_time": "2017-06-03T02:14:41", "url": "https://files.pythonhosted.org/packages/da/58/d6d5b63719f33cf2fc73d78c2f25091b391b9b05e0abc5c5484a7cd7e8c1/xeno-1.9.6.tar.gz" } ], "1.9.7": [ { "comment_text": "", "digests": { "md5": "433fafdb21edcfd0605484a553d8ca3d", "sha256": "595758ece3fd6488afc21dfd5f666877a5cbf1dab6d12e5d6ca15b7b3599bcd7" }, "downloads": -1, "filename": "xeno-1.9.7.tar.gz", "has_sig": false, "md5_digest": "433fafdb21edcfd0605484a553d8ca3d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12154, "upload_time": "2017-06-07T00:58:58", "url": "https://files.pythonhosted.org/packages/80/ee/eea7ac0055f807262aa4707d81cc8cd8d92cfaaac7f707fd7d8f157d90cd/xeno-1.9.7.tar.gz" } ], "2.0.0": [ { "comment_text": "", "digests": { "md5": "85e8522ce631d0028923fb0082656ed7", "sha256": "fa6892ada43118934263c6bd8e7080e116ea41aae1e9f4c22f2de87d6bc2517d" }, "downloads": -1, "filename": "xeno-2.0.0.tar.gz", "has_sig": false, "md5_digest": "85e8522ce631d0028923fb0082656ed7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12629, "upload_time": "2017-07-26T02:25:06", "url": "https://files.pythonhosted.org/packages/36/19/882eab0fb060efbe7513bc5ba192c0cf860dc50146c0f59ec4879f13501f/xeno-2.0.0.tar.gz" } ], "2.2.0": [ { "comment_text": "", "digests": { "md5": "c8c496570a1030bb3eb63943b985b0da", "sha256": "a068888858952bc15463a799f19f28b4287e4a977b5b51792df6e602c5d0f3b7" }, "downloads": -1, "filename": "xeno-2.2.0.tar.gz", "has_sig": false, "md5_digest": "c8c496570a1030bb3eb63943b985b0da", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13780, "upload_time": "2017-09-27T04:11:17", "url": "https://files.pythonhosted.org/packages/01/3f/019cfa8c53eef9ac86b062f9cba6831f9f3223d2f5ca87be9c717d2a5ce6/xeno-2.2.0.tar.gz" } ], "2.4.0": [ { "comment_text": "", "digests": { "md5": "0061a9dcaf153c5ba8b896e40a2dc3a3", "sha256": "2421d4aa7c32075fdf183e64e98302dec984a33156dd363dc9a7ac9d3cbc725a" }, "downloads": -1, "filename": "xeno-2.4.0.tar.gz", "has_sig": false, "md5_digest": "0061a9dcaf153c5ba8b896e40a2dc3a3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14489, "upload_time": "2018-01-22T21:21:10", "url": "https://files.pythonhosted.org/packages/50/60/41226090a5c4c25e105fb0b3234e1e6894b6a73d999e69a5d6cb680e02b2/xeno-2.4.0.tar.gz" } ], "2.4.1": [ { "comment_text": "", "digests": { "md5": "648876c38257fc4a77b6404bf6bb8fe3", "sha256": "bbce92d3fc3fbd7ec7f8fe4ac02e3f9fa46ec17829778cfc243413edb8517829" }, "downloads": -1, "filename": "xeno-2.4.1.tar.gz", "has_sig": false, "md5_digest": "648876c38257fc4a77b6404bf6bb8fe3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15167, "upload_time": "2018-01-31T19:55:19", "url": "https://files.pythonhosted.org/packages/eb/1e/58677b1d3f9d92657f3a0c7d1f5da71a3cd8284a31e0e064dc2904ea732a/xeno-2.4.1.tar.gz" } ], "2.4.2": [ { "comment_text": "", "digests": { "md5": "845a6102288663818b4f478bf30ad7e1", "sha256": "b95e9ddd4d4e4c3d76989d7fab3a76cf089018a296f8125a9d8c6f367b321392" }, "downloads": -1, "filename": "xeno-2.4.2.tar.gz", "has_sig": false, "md5_digest": "845a6102288663818b4f478bf30ad7e1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15176, "upload_time": "2018-02-15T18:19:46", "url": "https://files.pythonhosted.org/packages/0d/27/0485e29bca1b713ed7cbcf376c3a34716f64c1e88f19fa953376ca35d21c/xeno-2.4.2.tar.gz" } ], "2.5.0": [ { "comment_text": "", "digests": { "md5": "45fd1d09739d887923faaa7c646b1f82", "sha256": "572a44986242f0fa291f146cf3af117ccae230950c0cc71f3f282ce061ce5edf" }, "downloads": -1, "filename": "xeno-2.5.0.tar.gz", "has_sig": false, "md5_digest": "45fd1d09739d887923faaa7c646b1f82", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15521, "upload_time": "2018-03-03T01:57:35", "url": "https://files.pythonhosted.org/packages/08/bf/c68e58b9b0f362e4800c7e9cab0179a34767ac8e8d91fe64521c9f2a0a70/xeno-2.5.0.tar.gz" } ], "2.5.1": [ { "comment_text": "", "digests": { "md5": "84b9b763fe1258c3dcca20453dfdc435", "sha256": "79e742f04544698e4e366ac6a55c734b082428574679f96fbd11c1fbfc40918f" }, "downloads": -1, "filename": "xeno-2.5.1.tar.gz", "has_sig": false, "md5_digest": "84b9b763fe1258c3dcca20453dfdc435", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15815, "upload_time": "2018-03-14T08:31:55", "url": "https://files.pythonhosted.org/packages/d0/14/67937443c6fba158b23cc130baaf1afc160c22941721355ce3f550e7ee7e/xeno-2.5.1.tar.gz" } ], "2.5.2": [ { "comment_text": "", "digests": { "md5": "6d1c96efd1016bc9d3c3559511c2a087", "sha256": "18bb0cdd4d73d5ba9b64dae22b1a75b94518acb807e9e9e42501398f667ae04f" }, "downloads": -1, "filename": "xeno-2.5.2.tar.gz", "has_sig": false, "md5_digest": "6d1c96efd1016bc9d3c3559511c2a087", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15852, "upload_time": "2018-03-24T01:49:53", "url": "https://files.pythonhosted.org/packages/73/74/139030b515405464324bdd7f1496f7b0d46a12fa9663ee4efae148be5456/xeno-2.5.2.tar.gz" } ], "2.5.3": [ { "comment_text": "", "digests": { "md5": "a149079abb7bc4e7b53ed4029c8fc16d", "sha256": "4db75cc5d86cb987a2d55299b6bc94bf714afb4b15881024f25cacc4b49588b5" }, "downloads": -1, "filename": "xeno-2.5.3.tar.gz", "has_sig": false, "md5_digest": "a149079abb7bc4e7b53ed4029c8fc16d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15857, "upload_time": "2018-03-24T01:54:15", "url": "https://files.pythonhosted.org/packages/1a/9e/6784610715a547bc36ae0bc4b50d3911a71912e9f5a38828edd30d50a383/xeno-2.5.3.tar.gz" } ], "2.5.4": [ { "comment_text": "", "digests": { "md5": "dc7d30bd58608fc249f468ab5fdc9099", "sha256": "c5c1dfba492b76436119f36bf017ccc7af34ff5d2a22558619c8db5ca5b34ac3" }, "downloads": -1, "filename": "xeno-2.5.4.tar.gz", "has_sig": false, "md5_digest": "dc7d30bd58608fc249f468ab5fdc9099", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15878, "upload_time": "2018-03-27T23:47:07", "url": "https://files.pythonhosted.org/packages/ab/ba/9f90943a44e4adcc56235ef1924776b4087af554c4e5dfbb1883ebc1e5f0/xeno-2.5.4.tar.gz" } ], "2.6.0": [ { "comment_text": "", "digests": { "md5": "110239355da47cbb03398c57dbb01ce3", "sha256": "f41917b7ba276483c328484cbe3809e3e02bd8fd42ab7cb9ecaddec0e3120415" }, "downloads": -1, "filename": "xeno-2.6.0.tar.gz", "has_sig": false, "md5_digest": "110239355da47cbb03398c57dbb01ce3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16218, "upload_time": "2018-03-28T01:50:56", "url": "https://files.pythonhosted.org/packages/23/9d/2e1f7366937cc29d4ac386fe1836159c913579607ca24f762d3ce1f035af/xeno-2.6.0.tar.gz" } ], "2.7.0": [ { "comment_text": "", "digests": { "md5": "6859ec569892403b5427a2ef0e10d04f", "sha256": "4f24bad3eadd1b88058e7fb2df6af6a83b9cea18f9e3c12cbc6160df37a30429" }, "downloads": -1, "filename": "xeno-2.7.0.tar.gz", "has_sig": false, "md5_digest": "6859ec569892403b5427a2ef0e10d04f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16323, "upload_time": "2018-04-20T20:37:02", "url": "https://files.pythonhosted.org/packages/53/05/893a407b490c5c3066a08be26d94e63688802a42fe1f92d5a9672915ab4e/xeno-2.7.0.tar.gz" } ], "2.7.1": [ { "comment_text": "", "digests": { "md5": "5b9c5496bba536fe3697baf98332f79a", "sha256": "3251f314347406f8a1c812d6690717b14a44c7839600765a87137232fe8df6fd" }, "downloads": -1, "filename": "xeno-2.7.1.tar.gz", "has_sig": false, "md5_digest": "5b9c5496bba536fe3697baf98332f79a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16327, "upload_time": "2018-04-20T20:52:59", "url": "https://files.pythonhosted.org/packages/bc/75/768872afd2ee72ac0acf0ce8fac1c8797eac73430e4f2231507dc01a74f6/xeno-2.7.1.tar.gz" } ], "2.8.0": [ { "comment_text": "", "digests": { "md5": "eb07c0d38f201289b3d25d8345a07ad8", "sha256": "40cddd15188ee9484d3ff435e612e083f505e4615604cd993f88dc7a781430f3" }, "downloads": -1, "filename": "xeno-2.8.0.tar.gz", "has_sig": false, "md5_digest": "eb07c0d38f201289b3d25d8345a07ad8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16454, "upload_time": "2018-05-03T17:49:20", "url": "https://files.pythonhosted.org/packages/2c/5d/03a65e6033c1c563050d73bf0ff70151cd4291766aaf31abd4a667813c3a/xeno-2.8.0.tar.gz" } ], "3.0.0": [ { "comment_text": "", "digests": { "md5": "ce3c7135d783a9cb5c3a669e921252bc", "sha256": "bdacc886b50966b639d23bcb72b1322470f148b5d21c720033b14c961f15a3c5" }, "downloads": -1, "filename": "xeno-3.0.0.tar.gz", "has_sig": false, "md5_digest": "ce3c7135d783a9cb5c3a669e921252bc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16588, "upload_time": "2018-05-05T01:32:19", "url": "https://files.pythonhosted.org/packages/f1/61/898f77f0c6711dce70553fe78845a08aa6516e50de1ec673c6efcf6bac3f/xeno-3.0.0.tar.gz" } ], "3.1.0": [ { "comment_text": "", "digests": { "md5": "2f55e100a8b8871bc2af843197bb52e8", "sha256": "03161bc3fffb8eab4554802d595228b489f87cd616076d68c3ae83f8988dd535" }, "downloads": -1, "filename": "xeno-3.1.0.tar.gz", "has_sig": false, "md5_digest": "2f55e100a8b8871bc2af843197bb52e8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14589, "upload_time": "2018-08-30T01:57:04", "url": "https://files.pythonhosted.org/packages/6f/54/cf6db50ef112f03499d97fa407714147fb280c811926912659ad3410554a/xeno-3.1.0.tar.gz" } ], "4.0.0": [ { "comment_text": "", "digests": { "md5": "c3ded3d4bb41d53a3923c2868a3bffd6", "sha256": "efbee649e0a304adb886f1198d29ddd0535b8636648e0f096c3994ce9a7f704d" }, "downloads": -1, "filename": "xeno-4.0.0.tar.gz", "has_sig": false, "md5_digest": "c3ded3d4bb41d53a3923c2868a3bffd6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14860, "upload_time": "2019-05-13T05:52:40", "url": "https://files.pythonhosted.org/packages/bd/74/b0b8c1e292bbfcf77fa71b66105a791e5e023c25aa25fbe82e7ce5f018dc/xeno-4.0.0.tar.gz" } ], "4.0.1": [ { "comment_text": "", "digests": { "md5": "af04bfd0498ae7d03ce4813af27a3bb6", "sha256": "34f508aae3033a694d26c09c4b8a9d20c428b28b168686cc9daeb875d9c85ff0" }, "downloads": -1, "filename": "xeno-4.0.1.tar.gz", "has_sig": false, "md5_digest": "af04bfd0498ae7d03ce4813af27a3bb6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16386, "upload_time": "2019-10-10T20:43:05", "url": "https://files.pythonhosted.org/packages/7e/41/84785caad7750c15b8eca2445b23c91e568334f9f3fdc395127037030f02/xeno-4.0.1.tar.gz" } ], "4.0.2": [ { "comment_text": "", "digests": { "md5": "97223041f2b479b529a0021c64dc3f6f", "sha256": "e2ce5728d79d8b1c83ad5a2fd7db29c7e0fa611c68584b6394907a7cfa058796" }, "downloads": -1, "filename": "xeno-4.0.2.tar.gz", "has_sig": false, "md5_digest": "97223041f2b479b529a0021c64dc3f6f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16385, "upload_time": "2019-10-11T04:33:15", "url": "https://files.pythonhosted.org/packages/ed/5a/e7366ec59032202a730979d4b92882afe477075e7c20df33ef2ba9948df2/xeno-4.0.2.tar.gz" } ], "4.0.3": [ { "comment_text": "", "digests": { "md5": "5f5343954b00b40511b1e624e8ba5627", "sha256": "6e0f6aadaf50d8598ce6ec65fa2e31bf1ca064113bd7856b57fde8b1c8c1a7c7" }, "downloads": -1, "filename": "xeno-4.0.3.tar.gz", "has_sig": false, "md5_digest": "5f5343954b00b40511b1e624e8ba5627", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16388, "upload_time": "2019-10-11T04:35:09", "url": "https://files.pythonhosted.org/packages/b0/97/c63e3a0055ce9d59116777e78a622522a753e94fbc4193374bd18f02a40d/xeno-4.0.3.tar.gz" } ], "4.0.4": [ { "comment_text": "", "digests": { "md5": "85d428b3165fcee45a1f9544406546bc", "sha256": "bef63b2f6a95b765324156684c09c6a31ed9c3f63496005155433c67eecc0cdd" }, "downloads": -1, "filename": "xeno-4.0.4.tar.gz", "has_sig": false, "md5_digest": "85d428b3165fcee45a1f9544406546bc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16379, "upload_time": "2019-10-12T01:31:12", "url": "https://files.pythonhosted.org/packages/62/a5/b4c7041e9feb3bd897c6c54c105314395c9434e882ca480a6a1d103d6d63/xeno-4.0.4.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "85d428b3165fcee45a1f9544406546bc", "sha256": "bef63b2f6a95b765324156684c09c6a31ed9c3f63496005155433c67eecc0cdd" }, "downloads": -1, "filename": "xeno-4.0.4.tar.gz", "has_sig": false, "md5_digest": "85d428b3165fcee45a1f9544406546bc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16379, "upload_time": "2019-10-12T01:31:12", "url": "https://files.pythonhosted.org/packages/62/a5/b4c7041e9feb3bd897c6c54c105314395c9434e882ca480a6a1d103d6d63/xeno-4.0.4.tar.gz" } ] }