{ "info": { "author": "Nathanael Fritz", "author_email": "fritzy@netflint.net", "bugtrack_url": null, "classifiers": [ "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Programming Language :: Python", "Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3.1", "Programming Language :: Python :: 3.2", "Programming Language :: Python :: 3.3", "Topic :: Software Development :: Libraries :: Python Modules" ], "description": "SleekXMPP\n#########\n\nSleekXMPP is an MIT licensed XMPP library for Python 2.6/3.1+,\nand is featured in examples in\n`XMPP: The Definitive Guide `_\nby Kevin Smith, Remko Tron\u00e7on, and Peter Saint-Andre. If you've arrived\nhere from reading the Definitive Guide, please see the notes on updating\nthe examples to the latest version of SleekXMPP.\n\nSleekXMPP's design goals and philosphy are:\n\n**Low number of dependencies**\n Installing and using SleekXMPP should be as simple as possible, without\n having to deal with long dependency chains.\n\n As part of reducing the number of dependencies, some third party\n modules are included with SleekXMPP in the ``thirdparty`` directory.\n Imports from this module first try to import an existing installed\n version before loading the packaged version, when possible.\n\n**Every XEP as a plugin**\n Following Python's \"batteries included\" approach, the goal is to\n provide support for all currently active XEPs (final and draft). Since\n adding XEP support is done through easy to create plugins, the hope is\n to also provide a solid base for implementing and creating experimental\n XEPs.\n\n**Rewarding to work with**\n As much as possible, SleekXMPP should allow things to \"just work\" using\n sensible defaults and appropriate abstractions. XML can be ugly to work\n with, but it doesn't have to be that way.\n\n\nGet the Code\n------------\n\nGet the latest stable version from PyPI::\n\n pip install sleekxmpp\n\nThe latest source code for SleekXMPP may be found on `Github\n`_. Releases can be found in the\n``master`` branch, while the latest development version is in the\n``develop`` branch.\n\n**Latest Release**\n - `1.3.1 `_\n\n**Develop Releases**\n - `Latest Develop Version `_\n\n\nInstalling DNSPython\n--------------------\nIf you are using Python3 and wish to use dnspython, you will have to checkout and\ninstall the ``python3`` branch::\n\n git clone http://github.com/rthalley/dnspython\n cd dnspython\n git checkout python3\n python3 setup.py install\n\nDiscussion\n----------\nA mailing list and XMPP chat room are available for discussing and getting\nhelp with SleekXMPP.\n\n**Mailing List**\n `SleekXMPP Discussion on Google Groups `_\n\n**Chat**\n `sleek@conference.jabber.org `_\n\n\nDocumentation and Testing\n-------------------------\nDocumentation can be found both inline in the code, and as a Sphinx project in ``/docs``.\nTo generate the Sphinx documentation, follow the commands below. The HTML output will\nbe in ``docs/_build/html``::\n\n cd docs\n make html\n open _build/html/index.html\n\nTo run the test suite for SleekXMPP::\n\n python testall.py\n\n\nThe SleekXMPP Boilerplate\n-------------------------\nProjects using SleekXMPP tend to follow a basic pattern for setting up client/component\nconnections and configuration. Here is the gist of the boilerplate needed for a SleekXMPP\nbased project. See the documetation or examples directory for more detailed archetypes for\nSleekXMPP projects::\n\n import logging\n\n from sleekxmpp import ClientXMPP\n from sleekxmpp.exceptions import IqError, IqTimeout\n\n\n class EchoBot(ClientXMPP):\n\n def __init__(self, jid, password):\n ClientXMPP.__init__(self, jid, password)\n\n self.add_event_handler(\"session_start\", self.session_start)\n self.add_event_handler(\"message\", self.message)\n\n # If you wanted more functionality, here's how to register plugins:\n # self.register_plugin('xep_0030') # Service Discovery\n # self.register_plugin('xep_0199') # XMPP Ping\n\n # Here's how to access plugins once you've registered them:\n # self['xep_0030'].add_feature('echo_demo')\n\n # If you are working with an OpenFire server, you will\n # need to use a different SSL version:\n # import ssl\n # self.ssl_version = ssl.PROTOCOL_SSLv3\n\n def session_start(self, event):\n self.send_presence()\n self.get_roster()\n\n # Most get_*/set_* methods from plugins use Iq stanzas, which\n # can generate IqError and IqTimeout exceptions\n #\n # try:\n # self.get_roster()\n # except IqError as err:\n # logging.error('There was an error getting the roster')\n # logging.error(err.iq['error']['condition'])\n # self.disconnect()\n # except IqTimeout:\n # logging.error('Server is taking too long to respond')\n # self.disconnect()\n\n def message(self, msg):\n if msg['type'] in ('chat', 'normal'):\n msg.reply(\"Thanks for sending\\n%(body)s\" % msg).send()\n\n\n if __name__ == '__main__':\n # Ideally use optparse or argparse to get JID,\n # password, and log level.\n\n logging.basicConfig(level=logging.DEBUG,\n format='%(levelname)-8s %(message)s')\n\n xmpp = EchoBot('somejid@example.com', 'use_getpass')\n xmpp.connect()\n xmpp.process(block=True)\n\n\nCredits\n-------\n**Main Author:** Nathan Fritz\n `fritzy@netflint.net `_,\n `@fritzy `_\n\n Nathan is also the author of XMPPHP and `Seesmic-AS3-XMPP\n `_, and a former member of\n the XMPP Council.\n\n**Co-Author:** Lance Stout\n `lancestout@gmail.com `_,\n `@lancestout `_\n\n**Contributors:**\n - Brian Beggs (`macdiesel `_)\n - Dann Martens (`dannmartens `_)\n - Florent Le Coz (`louiz `_)\n - Kevin Smith (`Kev `_, http://kismith.co.uk)\n - Remko Tron\u00e7on (`remko `_, http://el-tramo.be)\n - Te-j\u00e9 Rogers (`te-je `_)\n - Thom Nichols (`tomstrummer `_)\n", "description_content_type": null, "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://github.com/fritzy/SleekXMPP", "keywords": "", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "sleekxmpp", "package_url": "https://pypi.org/project/sleekxmpp/", "platform": "any", "project_url": "https://pypi.org/project/sleekxmpp/", "project_urls": { "Homepage": "http://github.com/fritzy/SleekXMPP" }, "release_url": "https://pypi.org/project/sleekxmpp/1.3.3/", "requires_dist": null, "requires_python": "", "summary": "SleekXMPP is an elegant Python library for XMPP (aka Jabber, Google Talk, etc).", "version": "1.3.3" }, "last_serial": 3143400, "releases": { "1.0": [ { "comment_text": "", "digests": { "md5": "a5effa56a18dbaa4f70bb1738750392e", "sha256": "f4fd999f9e80816c475e046d62b53949cb6dfcb8e75d8d80482e2020a2a77456" }, "downloads": -1, "filename": "sleekxmpp-1.0.tar.gz", "has_sig": false, "md5_digest": "a5effa56a18dbaa4f70bb1738750392e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 702072, "upload_time": "2012-01-03T23:22:24", "url": "https://files.pythonhosted.org/packages/00/9e/8a029f8673a248a9e43edd515620af0e8731f015f6b8b500328fe8b68b2e/sleekxmpp-1.0.tar.gz" } ], "1.0beta6": [ { "comment_text": "", "digests": { "md5": "849e5d233a0f0c49668d9473dab2b445", "sha256": "bf5e1600496d0d95875647bfa19fb940e4528808b909ed8bc57301764c3d2a10" }, "downloads": -1, "filename": "sleekxmpp-1.0beta6.tar.gz", "has_sig": false, "md5_digest": "849e5d233a0f0c49668d9473dab2b445", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 136380, "upload_time": "2011-08-05T08:38:46", "url": "https://files.pythonhosted.org/packages/67/69/f06e8d0480ba13b7e0ccafe3b1bdba79e15457e56845f53930258c69b378/sleekxmpp-1.0beta6.tar.gz" } ], "1.0beta6.1": [ { "comment_text": "", "digests": { "md5": "3212cfc66e219536ea96cc835866fd88", "sha256": "47c81cf91a6dde1462d2f1a6dbb985c44fbd9d79a4a7031c9a6965661250d5ee" }, "downloads": -1, "filename": "sleekxmpp-1.0beta6.1.tar.gz", "has_sig": false, "md5_digest": "3212cfc66e219536ea96cc835866fd88", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 136760, "upload_time": "2011-08-05T23:16:34", "url": "https://files.pythonhosted.org/packages/e7/80/afb30dab9f23e20b6a783a75eeb9d42d0abb95c01ae64dcfffe174d648fd/sleekxmpp-1.0beta6.1.tar.gz" } ], "1.0rc1": [ { "comment_text": "", "digests": { "md5": "3a7221473d68968f43a001ca33b93faa", "sha256": "60950571e4c81d58b16580dcc2f78474277a38674857824c5d4ed3230f9a26ee" }, "downloads": -1, "filename": "sleekxmpp-1.0rc1.tar.gz", "has_sig": false, "md5_digest": "3a7221473d68968f43a001ca33b93faa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 146406, "upload_time": "2011-08-24T19:02:31", "url": "https://files.pythonhosted.org/packages/83/d0/92639dbc7a13a1e5d2c18cb632c5c2791ef79d34ebef6589855dbe63b0e0/sleekxmpp-1.0rc1.tar.gz" } ], "1.0rc2": [ { "comment_text": "", "digests": { "md5": "8a9c38d43f26ac21a11e861eceabe035", "sha256": "4657e0699825892fd2600ac25ffc9d42ab09df70aab746d3293cd2182d0714ae" }, "downloads": -1, "filename": "sleekxmpp-1.0rc2.tar.gz", "has_sig": false, "md5_digest": "8a9c38d43f26ac21a11e861eceabe035", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 688295, "upload_time": "2011-09-02T01:32:00", "url": "https://files.pythonhosted.org/packages/bc/82/555192b106ffe964f22486bbfe4a9ba01734e809179b27b79f45aae2f157/sleekxmpp-1.0rc2.tar.gz" } ], "1.0rc3": [ { "comment_text": "", "digests": { "md5": "3138e83cfc5262d23dd4add4b6c9e3bc", "sha256": "d007941e8b918fd7104954fe83c14088db9734d1d68d4fa1628a9a76bea47e0b" }, "downloads": -1, "filename": "sleekxmpp-1.0rc3.tar.gz", "has_sig": false, "md5_digest": "3138e83cfc5262d23dd4add4b6c9e3bc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1191888, "upload_time": "2011-11-19T01:38:02", "url": "https://files.pythonhosted.org/packages/ad/a3/10141c146a0d6ff4e120de42897b00a33bbef276e10f8b287a99508fa8c2/sleekxmpp-1.0rc3.tar.gz" } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "420baab274fff9c88a7999562aeba0ff", "sha256": "47290787502797a6bae14d36e47a6056ba4e2d2269225144b05b3267edda1900" }, "downloads": -1, "filename": "sleekxmpp-1.1.0.tar.gz", "has_sig": false, "md5_digest": "420baab274fff9c88a7999562aeba0ff", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1279457, "upload_time": "2012-06-01T23:21:04", "url": "https://files.pythonhosted.org/packages/bf/43/142242f5bf488e58d650c383a1cfdffb78031f51d66ff51dd63f39d16224/sleekxmpp-1.1.0.tar.gz" } ], "1.1.1": [ { "comment_text": "", "digests": { "md5": "0c4fc33b5e351d450dc1430f7d4d8c09", "sha256": "16bf635c004f7092891c965a0715788c2f89b8b30c155fa115140e86ed58d957" }, "downloads": -1, "filename": "sleekxmpp-1.1.1.tar.gz", "has_sig": false, "md5_digest": "0c4fc33b5e351d450dc1430f7d4d8c09", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1279558, "upload_time": "2012-06-04T21:02:18", "url": "https://files.pythonhosted.org/packages/a1/e4/566318cfc2f143b2eb735c2f0eaf00bcd158569e89cdf5dd683c42ed6cba/sleekxmpp-1.1.1.tar.gz" } ], "1.1.10": [ { "comment_text": "", "digests": { "md5": "9ecf706944c83c456efc67cd8030bfba", "sha256": "22d5bb239d3115a0fc941e328b2fa43de86c5d837f372d9255ef040919c33e6d" }, "downloads": -1, "filename": "sleekxmpp-1.1.10.tar.gz", "has_sig": false, "md5_digest": "9ecf706944c83c456efc67cd8030bfba", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1303727, "upload_time": "2012-07-30T18:10:43", "url": "https://files.pythonhosted.org/packages/e8/d1/48e87ebf122952d6789629d56646c5fe31c691dc71203f86704e590c96b3/sleekxmpp-1.1.10.tar.gz" } ], "1.1.11": [ { "comment_text": "", "digests": { "md5": "95f847b64fb84483acfadce425fe42cf", "sha256": "f28e7de712dac23aff0ab5ff420da28dcd3b2e9d696ddc1c307570cfb5a08b4d" }, "downloads": -1, "filename": "sleekxmpp-1.1.11.tar.gz", "has_sig": false, "md5_digest": "95f847b64fb84483acfadce425fe42cf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1303266, "upload_time": "2012-11-13T17:35:51", "url": "https://files.pythonhosted.org/packages/4f/7f/bc248ea3c266fccb0ec21bc24a17d88affcc157bc02e82ef5030b57a8283/sleekxmpp-1.1.11.tar.gz" } ], "1.1.2": [ { "comment_text": "", "digests": { "md5": "7f57dc0745dc5d354d4c0b5da20afc56", "sha256": "b7bcabcf7d2e45d4a522e3e9629620391bf6672bc27848fcbd665e06e071c5f1" }, "downloads": -1, "filename": "sleekxmpp-1.1.2.tar.gz", "has_sig": false, "md5_digest": "7f57dc0745dc5d354d4c0b5da20afc56", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1279923, "upload_time": "2012-06-06T21:27:56", "url": "https://files.pythonhosted.org/packages/c1/6f/13fb67aba6d240e5754af6ce119f65abe31849ef02c9a9472b1b60fd2aad/sleekxmpp-1.1.2.tar.gz" } ], "1.1.3": [ { "comment_text": "", "digests": { "md5": "eeb3474ba2f5b0a1d7afbfa76ded1cfc", "sha256": "ad0377c96d577dd1880d8666d88df0bb2694bbcbfad5d719b652bbfe1ee9f488" }, "downloads": -1, "filename": "sleekxmpp-1.1.3.tar.gz", "has_sig": false, "md5_digest": "eeb3474ba2f5b0a1d7afbfa76ded1cfc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1279992, "upload_time": "2012-06-09T20:39:41", "url": "https://files.pythonhosted.org/packages/31/39/fddf44c503203fae79492a69f820faea72389e65ef53d7bf14ffeffff64d/sleekxmpp-1.1.3.tar.gz" } ], "1.1.4": [ { "comment_text": "", "digests": { "md5": "45d6069755812877e6d3d4fa3fa2a510", "sha256": "319b7d88832fc4bcf48b7030493e6b9afdcd927950231e944e6416119e450e38" }, "downloads": -1, "filename": "sleekxmpp-1.1.4.tar.gz", "has_sig": false, "md5_digest": "45d6069755812877e6d3d4fa3fa2a510", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1281013, "upload_time": "2012-06-13T18:20:57", "url": "https://files.pythonhosted.org/packages/21/be/076de39cce60a77d61736abb33f62c94980aa67a45acaebae6ea6a2a1b7f/sleekxmpp-1.1.4.tar.gz" } ], "1.1.5": [ { "comment_text": "", "digests": { "md5": "7253437f872d16a19b4b4c6ee54b128e", "sha256": "337c59d27ec5afe25ca5e14defc009c6851bf309dbdd9bc927f477fcadd6e076" }, "downloads": -1, "filename": "sleekxmpp-1.1.5.tar.gz", "has_sig": false, "md5_digest": "7253437f872d16a19b4b4c6ee54b128e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1281109, "upload_time": "2012-06-16T00:42:29", "url": "https://files.pythonhosted.org/packages/33/25/2a91dbd4e37c5cde84adb94a59e669a1a0d39d5fba92955d7dcc51573bd4/sleekxmpp-1.1.5.tar.gz" } ], "1.1.6": [ { "comment_text": "", "digests": { "md5": "5ec217e5eaa3ce8211e32de4496ea62a", "sha256": "fe15956d5a4db204d3009403c0184e8878c30624a2d56b4b7ae325b248e0da69" }, "downloads": -1, "filename": "sleekxmpp-1.1.6.tar.gz", "has_sig": false, "md5_digest": "5ec217e5eaa3ce8211e32de4496ea62a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1293697, "upload_time": "2012-06-21T06:14:49", "url": "https://files.pythonhosted.org/packages/7f/9f/01a12c1b8dd6ff665dfe74a17b01778a4c59d140f8df8823c7b7043a6e0c/sleekxmpp-1.1.6.tar.gz" } ], "1.1.7": [ { "comment_text": "", "digests": { "md5": "d8771f7a7c6e4980b173436249a9a843", "sha256": "f71f6e9c565104f431ce168b0e442efb808fae89dcbb1ccb02d1fcba4c708ce3" }, "downloads": -1, "filename": "sleekxmpp-1.1.7.tar.gz", "has_sig": false, "md5_digest": "d8771f7a7c6e4980b173436249a9a843", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1294429, "upload_time": "2012-06-21T08:47:12", "url": "https://files.pythonhosted.org/packages/24/37/a3e4e5931bf95c8095c528d522aa5e03362e330951900473e6fc90ab3fc8/sleekxmpp-1.1.7.tar.gz" } ], "1.1.8": [ { "comment_text": "", "digests": { "md5": "a120b2d66320ad14dc68735a4d4b4b1e", "sha256": "f9d866d216450283daec7f7a1dd6c924293628bb5c205eba1d15f7ac34ceb97b" }, "downloads": -1, "filename": "sleekxmpp-1.1.8.tar.gz", "has_sig": false, "md5_digest": "a120b2d66320ad14dc68735a4d4b4b1e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1284805, "upload_time": "2012-07-01T02:44:55", "url": "https://files.pythonhosted.org/packages/3c/1c/d08e8069ed919b402fa4f5b31eaca55ab11a64e891a95c536779c1b1be78/sleekxmpp-1.1.8.tar.gz" } ], "1.1.9": [ { "comment_text": "", "digests": { "md5": "4cc3b30ebdd108672064eb65b342aae2", "sha256": "e29f75c59d344d4a358f300c14e13a958f4d9ea48fb36567ac14ae0d3c2f36fe" }, "downloads": -1, "filename": "sleekxmpp-1.1.9.tar.gz", "has_sig": false, "md5_digest": "4cc3b30ebdd108672064eb65b342aae2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1286513, "upload_time": "2012-07-30T17:58:23", "url": "https://files.pythonhosted.org/packages/24/8d/bfbbe8a8e449c97040adb8ed23556c263de6f198f7d8694a312739a5b265/sleekxmpp-1.1.9.tar.gz" } ], "1.2.0": [ { "comment_text": "", "digests": { "md5": "d21e25ef548542678025fce0ecab3e4c", "sha256": "d32c622e4a83ba126a2f1a4a43c5ab98e37bcaf0d195cb68c9a62c38f2a44ec9" }, "downloads": -1, "filename": "sleekxmpp-1.2.0.tar.gz", "has_sig": false, "md5_digest": "d21e25ef548542678025fce0ecab3e4c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 816688, "upload_time": "2014-02-06T18:02:46", "url": "https://files.pythonhosted.org/packages/28/90/cdb48c3c0033c0ae8c358e35ae092df755749fc9a7d41a9687694bd23659/sleekxmpp-1.2.0.tar.gz" } ], "1.2.1": [ { "comment_text": "", "digests": { "md5": "ba7c0e8f7a4b772dd72066adffa1f256", "sha256": "29cf28fcdf3ad2ce38bf8cd6a7e895dcfe72cba87e3fd4a954a55c95ee3b049e" }, "downloads": -1, "filename": "sleekxmpp-1.2.1.tar.gz", "has_sig": false, "md5_digest": "ba7c0e8f7a4b772dd72066adffa1f256", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 830434, "upload_time": "2014-02-09T22:34:13", "url": "https://files.pythonhosted.org/packages/97/54/e28e6995960ed7ebee26968846e6eb0b4e31bc0ff69baad96acd7c7d51b9/sleekxmpp-1.2.1.tar.gz" } ], "1.2.2": [ { "comment_text": "", "digests": { "md5": "cb3ff02a59eb77faefa3c81142dad9fb", "sha256": "027f48254695f3385c19007fc6af8f46db12cb97c9c9c474a78e8b805f31f55b" }, "downloads": -1, "filename": "sleekxmpp-1.2.2.tar.gz", "has_sig": false, "md5_digest": "cb3ff02a59eb77faefa3c81142dad9fb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 837047, "upload_time": "2014-02-09T22:36:54", "url": "https://files.pythonhosted.org/packages/31/6b/073a523e777f216b2e0d7c988cb961a6818fbe91d89dd3ba9627e28f8e58/sleekxmpp-1.2.2.tar.gz" } ], "1.2.3": [ { "comment_text": "", "digests": { "md5": "997bb9003e6f1d2c764a587c8c0f3a07", "sha256": "c5158667a68e7b9f1c4cc29b72f4d9295393af4677be15301e1849df46564515" }, "downloads": -1, "filename": "sleekxmpp-1.2.3.tar.gz", "has_sig": false, "md5_digest": "997bb9003e6f1d2c764a587c8c0f3a07", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 837074, "upload_time": "2014-02-09T22:40:24", "url": "https://files.pythonhosted.org/packages/7f/26/f586f4c24d6ab3d190cf3861f1e75498fd0f205f2c136ccfc166ada96f98/sleekxmpp-1.2.3.tar.gz" } ], "1.2.4": [ { "comment_text": "", "digests": { "md5": "e64f0cf806c65f94c624d5688d183a6b", "sha256": "a26ff0d878f5eb3c6cc78249cca07983eae10cbc640b805c635b262ddf671d76" }, "downloads": -1, "filename": "sleekxmpp-1.2.4.tar.gz", "has_sig": false, "md5_digest": "e64f0cf806c65f94c624d5688d183a6b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 837217, "upload_time": "2014-02-14T21:54:07", "url": "https://files.pythonhosted.org/packages/f7/30/8639333ae9a66708eac1811bdeb2057d912a63445db915eb839656ef8284/sleekxmpp-1.2.4.tar.gz" } ], "1.2.5": [ { "comment_text": "", "digests": { "md5": "14a081ac79a033d69e264bbcfd6a0f5f", "sha256": "ea317041a1d5f48d8499bfce054cf2eda7fac4c7c5966373e97dcf269fc6a98f" }, "downloads": -1, "filename": "sleekxmpp-1.2.5.tar.gz", "has_sig": false, "md5_digest": "14a081ac79a033d69e264bbcfd6a0f5f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 837266, "upload_time": "2014-04-21T01:11:07", "url": "https://files.pythonhosted.org/packages/02/1d/b4513e6dd920ffa382c4e96bbfde103eb406b0e3ad17b538c39ddeb96c55/sleekxmpp-1.2.5.tar.gz" } ], "1.3.0": [ { "comment_text": "", "digests": { "md5": "b9131d99ad481132a19f404da8edf127", "sha256": "5581d763a3e254125944740309034ea18b88be287cbc4a6b81cee100c5f8c315" }, "downloads": -1, "filename": "sleekxmpp-1.3.0.tar.gz", "has_sig": false, "md5_digest": "b9131d99ad481132a19f404da8edf127", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 830838, "upload_time": "2014-06-09T03:03:05", "url": "https://files.pythonhosted.org/packages/62/a3/175d2b16677faf8dd2309335455c562f161b879ab9162bb919ae02e1b1ae/sleekxmpp-1.3.0.tar.gz" } ], "1.3.1": [ { "comment_text": "", "digests": { "md5": "ff7c1154fb238efa83ea64ef91a1bff4", "sha256": "394f43d7be504125f98ed18a8e5aaaacf5f47280c7d12e9851857724f78433cf" }, "downloads": -1, "filename": "sleekxmpp-1.3.1.tar.gz", "has_sig": false, "md5_digest": "ff7c1154fb238efa83ea64ef91a1bff4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 831027, "upload_time": "2014-06-09T15:31:03", "url": "https://files.pythonhosted.org/packages/2e/33/7adcc8d6b35cb72f9cc56785a3d9c63d540200c476b0cb3a0926f5b51102/sleekxmpp-1.3.1.tar.gz" } ], "1.3.2": [ { "comment_text": "", "digests": { "md5": "48e25e701925780f6e1f91cef1115f92", "sha256": "2dc1ecd78fbcaf071195039ec0e4a0f922597c2140d590240b4b244e1fbb9dd9" }, "downloads": -1, "filename": "sleekxmpp-1.3.2.tar.gz", "has_sig": false, "md5_digest": "48e25e701925780f6e1f91cef1115f92", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 841676, "upload_time": "2017-03-23T23:46:41", "url": "https://files.pythonhosted.org/packages/eb/4f/89e9e1886bce75dfcd41d98d1ffbefefa907d719b04e0bddec9848787300/sleekxmpp-1.3.2.tar.gz" } ], "1.3.3": [ { "comment_text": "", "digests": { "md5": "92f51b09378e7ff74874f4914a8a1018", "sha256": "d213c1de71d92505f95ced0460ee0f84fdc4ddcacb7d7dd343739ed4028e5569" }, "downloads": -1, "filename": "sleekxmpp-1.3.3.tar.gz", "has_sig": false, "md5_digest": "92f51b09378e7ff74874f4914a8a1018", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 845044, "upload_time": "2017-09-02T18:16:35", "url": "https://files.pythonhosted.org/packages/13/ca/2a73521df7696b4cf9a9820cd61097c1c88cbb9da67a712146e622426ca1/sleekxmpp-1.3.3.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "92f51b09378e7ff74874f4914a8a1018", "sha256": "d213c1de71d92505f95ced0460ee0f84fdc4ddcacb7d7dd343739ed4028e5569" }, "downloads": -1, "filename": "sleekxmpp-1.3.3.tar.gz", "has_sig": false, "md5_digest": "92f51b09378e7ff74874f4914a8a1018", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 845044, "upload_time": "2017-09-02T18:16:35", "url": "https://files.pythonhosted.org/packages/13/ca/2a73521df7696b4cf9a9820cd61097c1c88cbb9da67a712146e622426ca1/sleekxmpp-1.3.3.tar.gz" } ] }