{ "info": { "author": "luk3yx", "author_email": "", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Topic :: Software Development :: Libraries" ], "description": "# miniirc\n\n[![Python 3.4+]](#python-version-support) [![Available on PyPI.]](https://pypi.org/project/miniirc/) [![License: MIT]](https://github.com/luk3yx/miniirc/blob/master/LICENSE.md)\n\nA simple IRC client framework.\n\nTo install miniirc, simply run `pip3 install miniirc` as root.\n\n[Python 3.4+]: https://img.shields.io/badge/python-3.4/3.5+-blue.svg\n[Available on PyPI.]: https://img.shields.io/pypi/v/miniirc.svg\n[License: MIT]: https://img.shields.io/pypi/l/miniirc.svg\n\n## Parameters\n\n~~~py\nirc = miniirc.IRC(ip, port, nick, channels=None, *, ssl=None, ident=None, realname=None, persist=True, debug=False, ns_identity=None, auto_connect=True, ircv3_caps=set(), quit_message='I grew sick and died.', ping_interval=60, verify_ssl=True)\n~~~\n\n*Note that everything before the \\* is a positional argument.*\n\n| Parameter | Description |\n| ------------- | -------------------------------------------------------- |\n| `ip` | The IP/hostname of the IRC server to connect to. |\n| `port` | The port to connect to. |\n| `nick` | The nickname of the bot. |\n| `channels` | The channels to join on connect. This can be an iterable containing strings (list, set, etc), or (since v1.4.0) a string. Attempting to join multiple channels with a string will create unintended side-effects, and should be avoided until miniirc v1.5.0. |\n| `ssl` | Enable TLS/SSL. If `None`, TLS/SSL is disabled unless the port is `6697`. |\n| `ident` | The ident to use, defaults to `nick`. |\n| `realname` | The realname to use, defaults to `nick` as well. |\n| `persist` | Whether to automatically reconnect. |\n| `debug` | Enables debug mode, prints all IRC messages. This can also be a file-like object (with write mode enabled) if you want debug messages to be written into a file instead of being printed to stdout, or a function (for example `logging.debug`). |\n| `ns_identity` | The NickServ account to use (` `). This can be a tuple or list since miniirc v1.2.0. |\n| `auto_connect`| Runs `.connect()` straight away. |\n| `ircv3_caps` | A set() of additional IRCv3 capabilities to request. SASL is auto-added if `ns_identity` is specified. |\n| `connect_modes` | A mode string (for example `'+B'`) of UMODEs to set when connected. |\n| `quit_message`| Sets the default quit message. This can be modified per-quit with `irc.disconnect()`. |\n| `ping_interval` | If no packets are sent or received for this amount of seconds, miniirc will send a `PING`, and if no reply is sent, after the same timeout, miniirc will attempt to reconnect. Set to `None` to disable. |\n| `verify_ssl` | Verifies TLS/SSL certificates. Disabling this is not recommended. If you have trouble with certificate verification, try running `pip3 install certifi` first. |\n\n*The only mandatory parameters are `ip`, `port`, and `nick`.*\n\n## Functions\n\n| Function | Description |\n| ------------- | -------------------------------------------------------- |\n| `change_parser(parser=...)` | *See the message parser section for documentation.* |\n| `connect()` | Connects to the IRC server if not already connected. |\n| `ctcp(target, *msg, reply=False, tags=None)` | Sends a `CTCP` request or reply to `target`. |\n| `debug(...)` | Debug, calls `print(...)` if debug mode is on. |\n| `disconnect(msg=..., *, auto_reconnect=False)`| Disconnects from the IRC server. `auto_reconnect` will be overriden by `self.persist` if set to `True`. |\n| `Handler(...)` | An event handler, see [Handlers](#handlers) for more info.|\n| `me(target, *msg, tags=None)` | Sends a `/me` (`CTCP ACTION`) to `target`. |\n| `msg(target, *msg, tags=None)` | Sends a `PRIVMSG` to `target`. `target` should not contain spaces or start with a colon. |\n| `notice(target, *msg, tags=None)` | Sends a `NOTICE` to `target`. `target` should not contain spaces or start with a colon. |\n| `quote(*msg, force=False, tags=None)` | Sends a raw message to IRC, use `force=True` to send while disconnected. Do not send multiple commands in one `irc.quote()`, as the newlines will be stripped and it will be sent as one command. The `tags` parameter optionally allows you to add a `dict` with IRCv3 client tags (all starting in `+`), and will not be sent to IRC servers that do not support client tags. |\n\n*Note that if `force=False` on `irc.quote` (or `irc.msg` etc is called) while\nminiirc is not connected, messages will be temporarily stored and then sent\nonce miniirc is connected. Setting `force=True` will throw errors if miniirc is\ncompletely disconnected (`irc.connected` is `None`).*\n\n## Variables\n\n*These variables should not be changed outside `miniirc.py`.*\n\n| Variable | Description |\n| ------------- | -------------------------------------------------------- |\n| `active_caps` | A `set` of IRCv3 capabilities that have been successfully negotiated with the IRC server. This is empty while disconnected. |\n| `connected` | A boolean (or `None`), `True` when miniirc is connected, `False` when miniirc is connecting, and `None` when miniirc is not connected. |\n| `current_nick` | The bot/client's current nickname. Do not modify this, and use this instead of `irc.nick` when getting the bot's current nickname for compatibility with miniirc v2.0.0. |\n| `isupport` | *New in 1.1.0.* A `dict` with values (not necessarily strings) from `ISUPPORT` messages sent to the client. |\n| `msglen` | *New in 1.1.0.* The maximum length (in bytes) of messages (including `\\r\\n`). This is automatically changed if the server supports the `oragono.io/maxline-2` capability. |\n| `nick` | The nickname to use when connecting to IRC. Until miniirc v2.0.0, you should only modify this while disconnected, as it is also updated with nickname changes. |\n\nThe following arguments passed to `miniirc.IRC` are also available: `ip`,\n`port`, `channels`, `ssl`, `ident`, `realname`, `persist`, `connect_modes`,\n`quit_message`, `ping_interval`, `verify_ssl`.\n\n## Handlers\n\n`miniirc.Handler` and `miniirc.CmdHandler` are function decorators that add\nfunctions to an event handler list. Functions in this list are called in their\nown thread when their respective IRC event(s) is/are received. Handlers may\nwork on every IRC object in existence (`miniirc.Handler`) or only on\nspecific IRC objects (`irc.Handler`).\n\nThe basic syntax for a handler is as followed, where `*events` is a list of events (`PRIVMSG`, `NOTICE`, etc) are called.\n\n~~~py\nimport miniirc\n@miniirc.Handler(*events, colon=True)\ndef handler(irc, hostmask, args):\n # irc: An 'IRC' object.\n # hostmask: A 'hostmask' object.\n # args: A list containing the arguments sent to the command. Everything\n # following the first `:` in the command is put into one item\n # (args[-1]). If \"colon\" is \"False\", the leading \":\" (if any)\n # is automatically removed. Setting this to False is probably\n # a good idea to prevent unexpected side effects.\n pass\n~~~\n\n#### Recommendations when using handlers:\n\n - If you don't need support for miniirc <1.4.0 and are parsing the last\n parameter, setting `colon` to `False` is strongly recommended. If the\n `colon` parameter is omitted, it defaults to `True`, however this will\n change when miniirc v2.0.0 is released.\n - Although `Handler` and `CmdHandler` currently accept any object that can be\n converted to a string, every event is converted to a string internally.\n - Not specifying the [`ircv3`](#ircv3-tags) parameter when it is not required\n prevents a redundant `dict` from being created.\n - To add handlers to a specific `IRC` object and not every one in existence,\n use `irc.Handler` and `irc.CmdHandler` instead. If you want to create a\n `Bot` or `Client` class and automatically add handlers to `IRC` objects\n created inside it, see\n [making existing functions handlers](#making-existing-functions-handlers).\n\n### Hostmask object\n\nHostmasks are tuples with the format `('user', 'ident', 'hostname')`. If `ident`\nand `hostname` aren't sent from the server, they will be filled in with the\nprevious value. If a command is received without a hostmask, all the `hostmask`\nelements will be set to the name of the command. This is deprecated, however,\nand when miniirc v2.0.0 is released the `hostmask` elements will be set to\nempty strings.\n\n### Making existing functions handlers\n\nYou can make existing functions handlers (for example class instance methods)\nwith `irc.Handler(*events)(handler_function)`. You probably don't want to use\n`miniirc.Handler` for class instance methods, as this will create a handler\nthat gets triggered for every `IRC` object.\n\nYou can also add multiple handlers of the same type easily:\n\n```py\nadd_handler = irc.Handler('PRIVMSG')\nadd_handler(handler_1)\nadd_handler(self.instance_handler)\n```\n\nThis is useful if you want to create a `Bot` (or `Client`) class and add\nclass-specific handlers without creating global process-wide handlers or\ncreating a wrapper function for every class instance.\n\n### IRCv3 support\n\n#### IRCv3 tags\n\nIf you want your handler to support IRCv3 message tags, you need to add\n`ircv3=True` to the `Handler` or `CmdHandler` decorator. You will need to add a\n`tags` parameter to your function after `hostmask`. IRCv3 tags are sent to the\nhandlers as `dict`s, with values of either strings or `True`.\n\n*miniirc will automatically un-escape IRCv3 tag values.*\n\n~~~py\nimport miniirc\n@miniirc.Handler(*events, colon=False, ircv3=True)\ndef handler(irc, hostmask, tags, args):\n pass\n~~~\n\n#### IRCv3 capabilities\n\nYou can handle IRCv3 capabilities before connecting using a handler.\nYou must use `force=True` on any `irc.quote()` called here, as when this is\ncalled, miniirc may not yet be fully connected. Do not use the `colon` argument\nfor `Handler` when creating these handlers to avoid unexpected side-effects.\n\n~~~py\nimport miniirc\n@miniirc.Handler('IRCv3 my-cap-name')\ndef handler(irc, hostmask, args):\n # Process the capability here\n\n # IRCv3.2 capabilities:\n # args = ['my-cap-name', 'IRCv3.2-parameters']\n\n # IRCv3.1 capabilities:\n # args = ['my-cap-name']\n\n # Remove the capability from the processing list.\n irc.finish_negotiation(args[0]) # This can also be 'my-cap-name'.\n~~~\n\n### Custom message parsers\n\nIf the IRC server you are connecting to supports a non-standard message syntax, you can\ncreate custom message parsers. These are called with the raw message (as a `str`) and\ncan either return `None` to ignore the message or a 4-tuple (`cmd, hostmask, tags, args`)\nthat will then be sent on to the handlers. The items in this 4-tuple should be the same\ntype as the items expected by handlers (and `cmd` should be a string).\n\n#### Message parser example\n\nThis message parser makes the normal parser allow `~` as an IRCv3 tag prefix character.\n\n~~~py\nimport miniirc\n\ndef my_message_parser(msg):\n if msg.startswith('~'):\n msg = '@' + msg[1:]\n return miniirc.ircv3_message_parser(msg)\n~~~\n\n#### Changing message parsers\n\nTo change message parsers, you can use `irc.change_parser(func=...)`. If `func` is not\nspecified, it will default to the built-in parser. You can only change message parsers\non-the-fly (for example in an IRCv3 CAP handler). If you need to change message parsers\nbefore connecting, you can disable `auto_connect` and change it then.\n\n~~~py\nirc = miniirc.IRC(..., auto_connect=False)\nirc.change_parser(my_message_parser)\nirc.connect()\n~~~\n\n### Handling multiple events\n\n*New in version 1.3.0.*\n\nIf you want to handle multiple events and/or be able to get the name of the\nevent being triggered, you can use `irc.CmdHandler`. This will pass an extra\n`command` argument to the handler function (between `irc` and `hostmask`),\ncontaining a string with the command name (such as `PRIVMSG`).\n\n#### Catch-all handlers\n\n**Please do not use these unless there is no other alternative.**\n\nIf you want to handle *every* event, you can use catch-all handlers. To create\nthese, you can call `irc.CmdHandler()` *without* any parameters. Note that this\nhandler will be called many times while connecting (and once connected).\n\n*You cannot call `irc.Handler()` without parameters.*\n\n### Example\n\n~~~py\nimport miniirc\n\n# Not required, however this makes sure miniirc isn't insanely outdated.\nassert miniirc.ver >= (1,4,1)\n\n@miniirc.Handler('PRIVMSG', 'NOTICE', colon=True)\ndef handler(irc, hostmask, args):\n print(hostmask[0], 'sent a message to', args[0], 'with content', args[1])\n # nickname sent a message to #channel with content :Hello, world!\n\n@miniirc.CmdHandler('PRIVMSG', 'NOTICE', colon=False)\ndef cmdhandler(irc, command, hostmask, args):\n print(hostmask[0], 'sent a', command, 'to', args[0], 'with content',\n args[1])\n # nickname sent a PRIVMSG to #channel with content Hello, world!\n~~~\n\nThis will print a line whenever the bot gets a `PRIVMSG` or `NOTICE`.\n\n## Misc functions\n\nminiirc provides the following helper functions:\n\n| Name | Description |\n| ----------------------------- | ----------------------------------------- |\n| `miniirc.get_ca_certs()` | Runs `certifi.where()` if `certifi` is installed, otherwise returns `None`. |\n| `miniirc.ircv3_message_parser(msg)` | The default IRCv2/IRCv3 message parser, returns `cmd, hostmask, tags, args`. |\n| `miniirc.ver` | A tuple containing version information. |\n| `miniirc.version` | The `CTCP VERSION` reply, can be changed. |\n\nThe version numbering system should be similar to [SemVer](https://semver.org/),\nhowever backwards compatibility is preserved where possible when major releases\nchange. Patch version numbers can and will increase quickly, as miniirc is (at\nthe time of writing this) under active development.\n\n## Python version support\n\n - Python 2 does not work and will (probably) never work with miniirc. If you\n MUST use Python 2, you could try manually porting miniirc.\n - Python 3.3 and below probably won't work, and fixes will not be added unless\n they are very trivial.\n - Python 3.4, although not recommended, should work, however it is not tested\n as thoroughly.\n - Python 3.5 and above should work with the latest stable version of miniirc.\n\nIf there is a bug/error in Python 3.4 or newer, please open an issue or pull\nrequest on [GitHub](https://github.com/luk3yx/miniirc/issues) or\n[GitLab](https://gitlab.com/luk3yx/miniirc/issues).\n\n*If you are using Python 3.4 or an older version of Python, I strongly\nrecommend updating.*\n\n## miniirc_extras\n\nIf you want more advanced(-ish) features such as user tracking, you can use\n[miniirc_extras](https://pypi.org/project/miniirc-extras/)\n([GitHub](https://github.com/luk3yx/miniirc_extras),\n[GitLab](https://gitlab.com/luk3yx/miniirc_extras)). Note that miniirc_extras\nis still in beta and there will be breaking API changes in the future.\n\n## Deprecations\n\nWhen miniirc v2.0.0 is released, the following breaking changes will (probably)\nbe made:\n\n - Internal-only attributes `irc.handlers`, `irc.sock`, and `irc.sendq`\n (please do not use these) will be renamed. Again, please do not use these.\n - `irc.nick` will be the nickname used when connecting to IRC rather than the\n current nickname, use `irc.current_nick` for the current nickname (since\n v1.4.3). This will stop lots of underscores being automatically appended to\n nicknames.\n - `irc.ns_identity` will be stored as a tuple instead of a string, for example\n `('username', 'password with spaces')` instead of\n `'username password with spaces'`. Both formats are currently accepted and\n will be accepted in the `ns_identity` keyword argument.\n - Python 3.4 support *may* be dropped. If you are using Python 3.4, I\n recommend updating to a more recent version of Python.\n - The `colon` keyword argument to `Handler` and `CmdHandler` will default to\n `False` instead of `True`.\n - Unspecified hostmasks will be an empty string instead of the command. Don't\n rely on this \"feature\" if possible, simply ignore the hostmask if you do\n not need it.\n\n## Working examples/implementations\n\nHere is a list of some (open-source) bots using miniirc, in alphabetical order:\n\n - [irc-rss-feed-bot] - Posts RSS entry titles and shortened URLs to IRC\n channels. *Python 3.7+*\n - [irc-url-title-bot] - Gets webpage titles from URLs posted in IRC channels.\n *Python 3.7+*\n - [lurklite] - A generic configurable IRC bot.\n *[GitHub](https://github.com/luk3yx/lurklite) link.*\n - [stdinbot] - A very simple bot that dumps stdin to an IRC channel.\n *[GitHub](https://github.com/luk3yx/stdinbot) link.*\n\n*Want to add your own bot/client to this list? Open an issue on\n[GitHub](https://github.com/luk3yx/miniirc/issues) or\n[GitLab](https://github.com/luk3yx/miniirc/issues).*\n\n[irc-rss-feed-bot]: https://github.com/impredicative/irc-rss-feed-bot\n[irc-url-title-bot]: https://github.com/impredicative/irc-url-title-bot\n[lurklite]: https://gitlab.com/luk3yx/lurklite\n[stdinbot]: https://gitlab.com/luk3yx/stdinbot\n\n\n", "description_content_type": "text/markdown", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/luk3yx/miniirc", "keywords": "", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "miniirc", "package_url": "https://pypi.org/project/miniirc/", "platform": "", "project_url": "https://pypi.org/project/miniirc/", "project_urls": { "Homepage": "https://github.com/luk3yx/miniirc" }, "release_url": "https://pypi.org/project/miniirc/1.4.3/", "requires_dist": [ "certifi" ], "requires_python": ">=3.0", "summary": "A lightweight IRC framework.", "version": "1.4.3" }, "last_serial": 5901927, "releases": { "0.2.10": [ { "comment_text": "", "digests": { "md5": "55499515ec28571c3a3d0902e8e754ff", "sha256": "6f403e7acb2a242420d3943c034500cb81021324b35ecd7ff9f4f36538528f4d" }, "downloads": -1, "filename": "miniirc-0.2.10-py3-none-any.whl", "has_sig": false, "md5_digest": "55499515ec28571c3a3d0902e8e754ff", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 8975, "upload_time": "2018-11-05T22:17:07", "url": "https://files.pythonhosted.org/packages/3d/46/3e3fac8e52f82b115dad69618230d032cedef4701450cab0ee88da8910ab/miniirc-0.2.10-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9e0ec0836c483644a6006c660e1c68e5", "sha256": "07e6930b75777d2eb904ace4d57fd14e4ef8f1c1d0905422245e61d8d673214a" }, "downloads": -1, "filename": "miniirc-0.2.10.tar.gz", "has_sig": false, "md5_digest": "9e0ec0836c483644a6006c660e1c68e5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6092, "upload_time": "2018-11-05T22:17:09", "url": "https://files.pythonhosted.org/packages/55/b8/cfdd906d8e956e23a8408d16bbb7bb7f6f85ba379fd7a7f1afa2d467ff82/miniirc-0.2.10.tar.gz" } ], "0.2.11": [ { "comment_text": "", "digests": { "md5": "028aa42d431c3d70c2121b85a9a48380", "sha256": "e9ab5c914a99c58cb1fc167ef84fc32e4c30349cdc24f179c67d8c0b73429ca1" }, "downloads": -1, "filename": "miniirc-0.2.11-py3-none-any.whl", "has_sig": false, "md5_digest": "028aa42d431c3d70c2121b85a9a48380", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 8974, "upload_time": "2018-11-05T22:21:50", "url": "https://files.pythonhosted.org/packages/af/0a/3f46c0cde6009acc1d1f173825b73dd634ac102bb3f98cc1abbb47f56d4b/miniirc-0.2.11-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "85f47ede60136b6eaf7e7ce77ed7f9fb", "sha256": "7742bd2538d2871bd97d916a9208096741274b18b1d211c1f7cf88859f58da12" }, "downloads": -1, "filename": "miniirc-0.2.11.tar.gz", "has_sig": false, "md5_digest": "85f47ede60136b6eaf7e7ce77ed7f9fb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6091, "upload_time": "2018-11-05T22:21:51", "url": "https://files.pythonhosted.org/packages/57/68/cda6a41990d591f692811a9357cf6971a8d380c5cd6741af7b28455977a5/miniirc-0.2.11.tar.gz" } ], "0.2.12": [ { "comment_text": "", "digests": { "md5": "d993cf93d1e36710206b2ab0061bb53c", "sha256": "5441a1b15a66206995784d0c28ff891a57a9504b454907b5596144f30cd47c4c" }, "downloads": -1, "filename": "miniirc-0.2.12-py3-none-any.whl", "has_sig": false, "md5_digest": "d993cf93d1e36710206b2ab0061bb53c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 7155, "upload_time": "2018-11-05T22:26:32", "url": "https://files.pythonhosted.org/packages/22/dd/d0669137a8176021af4ccba89a08f8e8889191b4d5b056c6495c392b06d9/miniirc-0.2.12-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "514d634d682f12daac5e9d784d21cf7e", "sha256": "79a3200bb27d9f95af38541d29956bc77d1e5108909cd97d65af42bb99a52899" }, "downloads": -1, "filename": "miniirc-0.2.12.tar.gz", "has_sig": false, "md5_digest": "514d634d682f12daac5e9d784d21cf7e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6090, "upload_time": "2018-11-05T22:26:33", "url": "https://files.pythonhosted.org/packages/32/4d/40ae9bb6f39697430333df6c7b2579a311915752a6379a814820ad107942/miniirc-0.2.12.tar.gz" } ], "0.2.6": [ { "comment_text": "", "digests": { "md5": "dc0c83260fcaf4ced3a96780cb6a8783", "sha256": "08556f73542c22e2b94113104a2278e43d5cf569fc71e4cff8b29e0a970e3c98" }, "downloads": -1, "filename": "miniirc-0.2.6-py3-none-any.whl", "has_sig": false, "md5_digest": "dc0c83260fcaf4ced3a96780cb6a8783", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 6852, "upload_time": "2018-10-27T20:20:37", "url": "https://files.pythonhosted.org/packages/5c/2c/0cb991016e87c42458754c5d8db9b3f4c0866cf57a66e053a09d6aa9643f/miniirc-0.2.6-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1847dfbdc4761736f4555c6e0e47464f", "sha256": "58a1662909875745ed32d01fc7bc54df9ca75156499bdee17d6c3906dc899014" }, "downloads": -1, "filename": "miniirc-0.2.6.tar.gz", "has_sig": false, "md5_digest": "1847dfbdc4761736f4555c6e0e47464f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5848, "upload_time": "2018-10-27T20:20:39", "url": "https://files.pythonhosted.org/packages/03/0f/a36eabd5e1310a6631b09b7a83b4907f03b5c4e2e213428847bebf538040/miniirc-0.2.6.tar.gz" } ], "0.2.7": [ { "comment_text": "", "digests": { "md5": "4eebd72c07b2f5fb965a4d957ebb1077", "sha256": "95ee6f48bd33ad8c3e51ddb355f60a1e6829b96bebbbb18378da5a9503fa6d28" }, "downloads": -1, "filename": "miniirc-0.2.7-py3-none-any.whl", "has_sig": false, "md5_digest": "4eebd72c07b2f5fb965a4d957ebb1077", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 7038, "upload_time": "2018-10-28T18:35:02", "url": "https://files.pythonhosted.org/packages/4c/b7/05e2829d15cc961e9d09a56c3a0126e3acfdf54324ef1d3dd23c0a759185/miniirc-0.2.7-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "78e1b239f4ba4f6ef3ee9444c17e9c4d", "sha256": "b8209b09f50252ccd376cf5c2fb62a5e755915625285b49912a4bbba900f7c22" }, "downloads": -1, "filename": "miniirc-0.2.7.tar.gz", "has_sig": false, "md5_digest": "78e1b239f4ba4f6ef3ee9444c17e9c4d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6022, "upload_time": "2018-10-28T18:35:04", "url": "https://files.pythonhosted.org/packages/28/03/0602b154070e564c0c91fced084ad811580e51c36f55ec9af6e74c1311ad/miniirc-0.2.7.tar.gz" } ], "0.2.8": [ { "comment_text": "", "digests": { "md5": "245e7e9a460ef7aa859c03b90824cb27", "sha256": "b4e2b64eaee91400322d52f9327811223ba5ed1db99c4302f653ccbdb65a9d3f" }, "downloads": -1, "filename": "miniirc-0.2.8-py3-none-any.whl", "has_sig": false, "md5_digest": "245e7e9a460ef7aa859c03b90824cb27", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 7124, "upload_time": "2018-10-28T18:44:29", "url": "https://files.pythonhosted.org/packages/4f/55/f2db06c34c0036cdd7a5b24e94a142484952283d1c5d4726a2734cac06d1/miniirc-0.2.8-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "51c34d3a811455dfd956fef4295b57f4", "sha256": "1623636a32219de5860b17c716b434fd05cf4d5f63858239d1991cff7a9e6903" }, "downloads": -1, "filename": "miniirc-0.2.8.tar.gz", "has_sig": false, "md5_digest": "51c34d3a811455dfd956fef4295b57f4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6121, "upload_time": "2018-10-28T18:44:30", "url": "https://files.pythonhosted.org/packages/53/a4/1d0b5374a8db4f10226a072aa3fa4d44206555ce1f7f28b2693ffc9ccfc9/miniirc-0.2.8.tar.gz" } ], "0.2.9": [ { "comment_text": "", "digests": { "md5": "39748c27728a0ef600fbd0d7e54c9d6f", "sha256": "47b34f5438d6fa1d7d7f1c40dc26bd1229334b4fc3eab3c22cadec930949a84f" }, "downloads": -1, "filename": "miniirc-0.2.9-py3-none-any.whl", "has_sig": false, "md5_digest": "39748c27728a0ef600fbd0d7e54c9d6f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 7123, "upload_time": "2018-11-03T19:43:01", "url": "https://files.pythonhosted.org/packages/3e/9e/e84f7f396fcf1dc7ae7536d641b14f55a062716cf4074026a582e96f5667/miniirc-0.2.9-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "440523d0a7c96ba169788b1d53105688", "sha256": "588c87649a4ab460d4a0e8b0a98b0375222bb26b4c177a2f1c96838ada872899" }, "downloads": -1, "filename": "miniirc-0.2.9.tar.gz", "has_sig": false, "md5_digest": "440523d0a7c96ba169788b1d53105688", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6126, "upload_time": "2018-11-03T19:43:03", "url": "https://files.pythonhosted.org/packages/dc/c9/28430926a9ea6fe54a765000e1a2144838d1e083f59236df48ee84fa9a51/miniirc-0.2.9.tar.gz" } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "fcfba0533de88589fc72709183068a74", "sha256": "03fb4d21eb1950327ec7eba54e0c1215701543387c80c3ab17823dab87fa0fab" }, "downloads": -1, "filename": "miniirc-0.3.0-py3-none-any.whl", "has_sig": false, "md5_digest": "fcfba0533de88589fc72709183068a74", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 7652, "upload_time": "2018-11-12T05:15:19", "url": "https://files.pythonhosted.org/packages/47/05/b6f61885cff5c6b2453197abd57c1f3c8fbfced599f7b34fc4a754495bdb/miniirc-0.3.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "363ee1424a1aca918d513368ebd6b5c9", "sha256": "96375915eb7c757272e9feb3bff730ec82e8df229ee23c3739e79dfa87d89d0d" }, "downloads": -1, "filename": "miniirc-0.3.0.tar.gz", "has_sig": false, "md5_digest": "363ee1424a1aca918d513368ebd6b5c9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6726, "upload_time": "2018-11-12T05:15:20", "url": "https://files.pythonhosted.org/packages/47/24/50bcc73f7a166119c7ab6b5db43674b5d91757afda574377af9e010c8b9a/miniirc-0.3.0.tar.gz" } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "1b6d387901f7237d4ab490e68465241d", "sha256": "969db04b76ab1108b8d07e66fd0fea92d2e63b4f07726c35d5289367a11dbfb1" }, "downloads": -1, "filename": "miniirc-0.3.1-py3-none-any.whl", "has_sig": false, "md5_digest": "1b6d387901f7237d4ab490e68465241d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 7654, "upload_time": "2018-11-12T20:47:35", "url": "https://files.pythonhosted.org/packages/16/7b/37f8404b73c05faa65ab43c39001cd67846aca72b4f622b670281be6f21a/miniirc-0.3.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e1acb18e2a87eb56c2e96536db1af400", "sha256": "d01de8d6a8384e1ca5159bdaf8f537fa12bb049fcbd81602a218781d5f7aee84" }, "downloads": -1, "filename": "miniirc-0.3.1.tar.gz", "has_sig": false, "md5_digest": "e1acb18e2a87eb56c2e96536db1af400", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6703, "upload_time": "2018-11-12T20:47:37", "url": "https://files.pythonhosted.org/packages/cf/70/102cb3de424392161655c6767a548d0bd1c5301a312d265384ed6f19418e/miniirc-0.3.1.tar.gz" } ], "0.3.10": [ { "comment_text": "", "digests": { "md5": "f53165785a9a14a44865327c4660682c", "sha256": "586f4c0c8950de49da8136163dbf0693baca90dfe67209e6e6424e1ac1d3b99d" }, "downloads": -1, "filename": "miniirc-0.3.10-py3-none-any.whl", "has_sig": false, "md5_digest": "f53165785a9a14a44865327c4660682c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 9269, "upload_time": "2018-12-09T06:49:22", "url": "https://files.pythonhosted.org/packages/65/ad/42cc7a878c336b3a12d9ad5ff5fff5b4fff392b1c04fb3c5899fe7888495/miniirc-0.3.10-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9a2058a5ca99e7980e6a22b569610570", "sha256": "66fa018ac6ffc03e7ebe011350b64896a42bddbb627d1c729a3faf5d6eaccbc3" }, "downloads": -1, "filename": "miniirc-0.3.10.tar.gz", "has_sig": false, "md5_digest": "9a2058a5ca99e7980e6a22b569610570", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8436, "upload_time": "2018-12-09T06:49:24", "url": "https://files.pythonhosted.org/packages/fb/2b/4d1888b267a033af0963e7f6b8da181c2d6bc744b5688ab603023f45def6/miniirc-0.3.10.tar.gz" } ], "0.3.11": [ { "comment_text": "", "digests": { "md5": "cb11ee1133b38de3d55a26b2184e72ab", "sha256": "6f92f0d6b637944de5dcea1393d2edc2daf8a5bcdea0a7de8c4d220fd67b86b6" }, "downloads": -1, "filename": "miniirc-0.3.11-py3-none-any.whl", "has_sig": false, "md5_digest": "cb11ee1133b38de3d55a26b2184e72ab", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 9405, "upload_time": "2019-01-06T05:03:08", "url": "https://files.pythonhosted.org/packages/14/39/e99dd22a9f01c0919d06c0c495e3baec158ac8d81911a1e8cb699bcbdd38/miniirc-0.3.11-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8ce41a199aa954e3c6e63b2df3af12e5", "sha256": "796c12e67ba590da71fe99e0e6a4612123628ff6ad5d19e694075d015ca2d24b" }, "downloads": -1, "filename": "miniirc-0.3.11.tar.gz", "has_sig": false, "md5_digest": "8ce41a199aa954e3c6e63b2df3af12e5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8579, "upload_time": "2019-01-06T05:03:10", "url": "https://files.pythonhosted.org/packages/b9/85/b87b90c3e8455bfd1b7b2ed214cd96a74fb6e5af6c6c270ac7fce2a9a926/miniirc-0.3.11.tar.gz" } ], "0.3.12": [ { "comment_text": "", "digests": { "md5": "83b6dfd7ffaa35ab890cc48501f276b6", "sha256": "0e10b7951792d81d13b4ce269e50818d971cc1c3c2fdfda366f636f9c9c7b02b" }, "downloads": -1, "filename": "miniirc-0.3.12-py3-none-any.whl", "has_sig": false, "md5_digest": "83b6dfd7ffaa35ab890cc48501f276b6", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 9488, "upload_time": "2019-01-09T23:45:01", "url": "https://files.pythonhosted.org/packages/dc/ab/b71d70754bcacccad2ef0a31765a775dcca5b29153a53794bc94685d397a/miniirc-0.3.12-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5dd0557769039b8d6bad45dbc7c65e58", "sha256": "fd82b56404afdf08f14e441d70277e52154e94ca2cc0e0299371df62ebe7ebe8" }, "downloads": -1, "filename": "miniirc-0.3.12.tar.gz", "has_sig": false, "md5_digest": "5dd0557769039b8d6bad45dbc7c65e58", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8816, "upload_time": "2019-01-09T23:45:02", "url": "https://files.pythonhosted.org/packages/fc/83/6900febefdc0030ac0e9003ee0f9de9663031816b77e4f05ea46bd0e4b45/miniirc-0.3.12.tar.gz" } ], "0.3.2": [ { "comment_text": "", "digests": { "md5": "846e3b7d0fceccffc16caa1f1b210ec0", "sha256": "b4ec6c6fe1578b32f4da71bf033744a612dd60c864d26049493fc31474e3c27a" }, "downloads": -1, "filename": "miniirc-0.3.2-py3-none-any.whl", "has_sig": false, "md5_digest": "846e3b7d0fceccffc16caa1f1b210ec0", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 8313, "upload_time": "2018-11-13T00:12:46", "url": "https://files.pythonhosted.org/packages/74/1e/fec462c45117d633ec78188c53f4d14ee45e48e09233ce99a62194eb280c/miniirc-0.3.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "312d45eb79c2f7406750123408eeba12", "sha256": "3c7e85af077e5ee97e1d78f8b7d18675fc9d2bda55ff2d3b131db5f7b233c323" }, "downloads": -1, "filename": "miniirc-0.3.2.tar.gz", "has_sig": false, "md5_digest": "312d45eb79c2f7406750123408eeba12", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7381, "upload_time": "2018-11-13T00:12:48", "url": "https://files.pythonhosted.org/packages/2e/ab/14389dd8933d63f149e294b22e60627305ce24eebaf2902feb01a678d153/miniirc-0.3.2.tar.gz" } ], "0.3.3": [ { "comment_text": "", "digests": { "md5": "01a4cd91aa9d572e8001be881fa4100d", "sha256": "3ccabec5d093e3a2c0024a36e7e91f180b67e7ef98623299b7f4a35530261b15" }, "downloads": -1, "filename": "miniirc-0.3.3-py3-none-any.whl", "has_sig": false, "md5_digest": "01a4cd91aa9d572e8001be881fa4100d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 8310, "upload_time": "2018-11-13T00:19:41", "url": "https://files.pythonhosted.org/packages/bc/43/302a71e282f794edb52563004f9af1110bda147107a000dc6d4c2df388b6/miniirc-0.3.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "419be7ab67827b7c8f9d2251ce727fd1", "sha256": "e61397534cb3ab19e473f650e9f421b9cfe1876ba031629dbd0c636f420747fa" }, "downloads": -1, "filename": "miniirc-0.3.3.tar.gz", "has_sig": false, "md5_digest": "419be7ab67827b7c8f9d2251ce727fd1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7397, "upload_time": "2018-11-13T00:19:42", "url": "https://files.pythonhosted.org/packages/86/07/f50a0e2850cc2523a60ca9f5c85ac81da6b8bdbcb8e89b758487aa1e2f6e/miniirc-0.3.3.tar.gz" } ], "0.3.4": [ { "comment_text": "", "digests": { "md5": "630e89cde516ce799ac7f553eda24099", "sha256": "a14ef6f2827dfde407b5032bfe5d8e8eb40140570b1f0a058daab8c9f6b54301" }, "downloads": -1, "filename": "miniirc-0.3.4-py3-none-any.whl", "has_sig": false, "md5_digest": "630e89cde516ce799ac7f553eda24099", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 8334, "upload_time": "2018-11-20T18:46:18", "url": "https://files.pythonhosted.org/packages/7f/8b/f6062fca43da9476e4497e545ea75053fc66f998c7a1efd271a69c7ff450/miniirc-0.3.4-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "946af609a29a6d6661efaffd65d6849f", "sha256": "541c39c7bf4bb7994a33158a3bf91a0f7d03d69b6116ca3b4060ae600fca937a" }, "downloads": -1, "filename": "miniirc-0.3.4.tar.gz", "has_sig": false, "md5_digest": "946af609a29a6d6661efaffd65d6849f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7441, "upload_time": "2018-11-20T18:46:20", "url": "https://files.pythonhosted.org/packages/49/21/f36c755640a508a936dde69a35e2b2b673978c71e7f44443657e61a99a58/miniirc-0.3.4.tar.gz" } ], "0.3.5": [ { "comment_text": "", "digests": { "md5": "e32dc36967f382c11dba7f34deb4e83d", "sha256": "a34d1e8229407b87b817950d15381b9d890b2365766343c9cd46857301056744" }, "downloads": -1, "filename": "miniirc-0.3.5-py3-none-any.whl", "has_sig": false, "md5_digest": "e32dc36967f382c11dba7f34deb4e83d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 8344, "upload_time": "2018-11-21T04:47:46", "url": "https://files.pythonhosted.org/packages/29/44/fd29c307bc144c4abcaa100acdb6bc6558602fc962ee4d77ed549c442f18/miniirc-0.3.5-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "23dbf1df6676127b68d74dea452f7da2", "sha256": "66c7f0bff8024681bccd415793fb790143404957cc2dbdd34d01475d0b01816e" }, "downloads": -1, "filename": "miniirc-0.3.5.tar.gz", "has_sig": false, "md5_digest": "23dbf1df6676127b68d74dea452f7da2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7456, "upload_time": "2018-11-21T04:47:48", "url": "https://files.pythonhosted.org/packages/e0/20/550c6b5faa66d93e1d90471c8a39586c0e5ddaf6947a2c5f0ed2fde946cd/miniirc-0.3.5.tar.gz" } ], "0.3.6": [ { "comment_text": "", "digests": { "md5": "b4632f7ccd072b06571d33fcb6d48db9", "sha256": "6481fc0590bbc22585117c4bd3eec478210ba4fa052b2be26eb36d3bf31e3f9d" }, "downloads": -1, "filename": "miniirc-0.3.6-py3-none-any.whl", "has_sig": false, "md5_digest": "b4632f7ccd072b06571d33fcb6d48db9", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 8433, "upload_time": "2018-11-25T19:35:39", "url": "https://files.pythonhosted.org/packages/b6/4e/dd4b957527134e7fd59e418dae989731d6971b29cbb5e20e5d4d5afc41c9/miniirc-0.3.6-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0679b87f97a2978b26e436135c9155db", "sha256": "8b6bf42f75be6b74217e1a3ebc49e1cba73c53059564e72a5ce9a483609265a8" }, "downloads": -1, "filename": "miniirc-0.3.6.tar.gz", "has_sig": false, "md5_digest": "0679b87f97a2978b26e436135c9155db", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7531, "upload_time": "2018-11-25T19:35:41", "url": "https://files.pythonhosted.org/packages/d8/51/ac804441adf1e5744769bed8d9f194b43620e7b09294c3919dc1faf1a608/miniirc-0.3.6.tar.gz" } ], "0.3.7": [ { "comment_text": "", "digests": { "md5": "06617cda0d654f72cf5be1299d469dcb", "sha256": "cbe79e8cd096a677a27217add76a99f7de622ccd227a0829fa51e30ac1762484" }, "downloads": -1, "filename": "miniirc-0.3.7-py3-none-any.whl", "has_sig": false, "md5_digest": "06617cda0d654f72cf5be1299d469dcb", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 8987, "upload_time": "2018-11-28T02:27:05", "url": "https://files.pythonhosted.org/packages/09/98/84948effe97003e687fdad2eaada49b8812e2258897818ca7023c01f8d2b/miniirc-0.3.7-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "dd4546028344693a082d2ec6171d9220", "sha256": "66e7e30b17d2f1a5504af6444a4770fd1cef5e18f8227e20a51285f965930921" }, "downloads": -1, "filename": "miniirc-0.3.7.tar.gz", "has_sig": false, "md5_digest": "dd4546028344693a082d2ec6171d9220", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8127, "upload_time": "2018-11-28T02:27:07", "url": "https://files.pythonhosted.org/packages/fe/d3/ee6e53bd82e2234fc57aaa72e9737e57257ffaae3b1562c8cb63b995718f/miniirc-0.3.7.tar.gz" } ], "0.3.8": [ { "comment_text": "", "digests": { "md5": "5f454a5962b4e0d96ef6aeba575c9db1", "sha256": "9b400f8ed94a5c7dde43850f562412b57f792d54a94316300a4de3c38227d87b" }, "downloads": -1, "filename": "miniirc-0.3.8-py3-none-any.whl", "has_sig": false, "md5_digest": "5f454a5962b4e0d96ef6aeba575c9db1", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 9139, "upload_time": "2018-11-28T02:53:15", "url": "https://files.pythonhosted.org/packages/37/22/51406588d23c1e24007602f05b59fa9e5edec1dcd4bb121f66727a8d4ddb/miniirc-0.3.8-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "cffafe1b27fda14b13d0bef2b48ddb70", "sha256": "8443556a1eeacad22b86fc2abf513fd5e9fd8098be93d2a38ad775698f52ee8d" }, "downloads": -1, "filename": "miniirc-0.3.8.tar.gz", "has_sig": false, "md5_digest": "cffafe1b27fda14b13d0bef2b48ddb70", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8323, "upload_time": "2018-11-28T02:53:17", "url": "https://files.pythonhosted.org/packages/9b/4d/97e762f1725d28313a295b7220a6002954f801f95bb51bcd2790cf7431ae/miniirc-0.3.8.tar.gz" } ], "0.3.9": [ { "comment_text": "", "digests": { "md5": "8fa05ec015796da7c5212f12c2285f1e", "sha256": "4913a6299980dbac7adc9518d4585b26184fcc1cae9e13e0d7ae8aebcf511819" }, "downloads": -1, "filename": "miniirc-0.3.9-py3-none-any.whl", "has_sig": false, "md5_digest": "8fa05ec015796da7c5212f12c2285f1e", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 9171, "upload_time": "2018-11-28T18:44:03", "url": "https://files.pythonhosted.org/packages/6c/00/6d5a1d0a81757a7a79162346480a016b89c2baf17983256a6b1ceebac328/miniirc-0.3.9-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "45b128011cf6996742f855fdc4ff78aa", "sha256": "3175cef142ae9b71993727c89e3e17579e9553a40d78e9dcd8cdbb6394d72df9" }, "downloads": -1, "filename": "miniirc-0.3.9.tar.gz", "has_sig": false, "md5_digest": "45b128011cf6996742f855fdc4ff78aa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8359, "upload_time": "2018-11-28T18:44:04", "url": "https://files.pythonhosted.org/packages/20/6a/0d4e133ee4d88be38ef710f8cfc9b91f5ef1836902fb4828ac14869922ee/miniirc-0.3.9.tar.gz" } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "8be735797103a627172d75e6fd827a5c", "sha256": "f3ddd7fd056bdb44db3df0eb9b5802126ded21c560b51ce56db0e2c50fd6284e" }, "downloads": -1, "filename": "miniirc-1.0.0-py3-none-any.whl", "has_sig": false, "md5_digest": "8be735797103a627172d75e6fd827a5c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 10098, "upload_time": "2019-01-10T01:00:14", "url": "https://files.pythonhosted.org/packages/31/67/67e983e0f32ecb9e61d25643899817570577ec901502394059e8d25f042e/miniirc-1.0.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "29314ef0c46ff650d3834cd3497a48cf", "sha256": "50473cd5bbd3a16799de7dcc517b985944b5017576b44dad50c093634281697e" }, "downloads": -1, "filename": "miniirc-1.0.0.tar.gz", "has_sig": false, "md5_digest": "29314ef0c46ff650d3834cd3497a48cf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11427, "upload_time": "2019-01-10T01:00:16", "url": "https://files.pythonhosted.org/packages/a5/7d/4ae8fed4742e2b1243e253b1f4d10b192bc69f4249eb4edbdea4f4ad1980/miniirc-1.0.0.tar.gz" } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "121be1d81d93cdb79930379a4da2b268", "sha256": "0599a864712c1da3ba78329a9b235cf87e6ed06b2da747cc1976477c6e4ae96e" }, "downloads": -1, "filename": "miniirc-1.0.1-py3-none-any.whl", "has_sig": false, "md5_digest": "121be1d81d93cdb79930379a4da2b268", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 10117, "upload_time": "2019-01-10T23:20:07", "url": "https://files.pythonhosted.org/packages/11/d0/f75173a242b731b877c76a97ec6c4affe8a0da71b109fdb21c0b89bd814d/miniirc-1.0.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "46f944b0f1d026160897a30ac9b932ce", "sha256": "8b388192e7d7658473319032f1ba5ad788b977d8b1b62d80a7eb28199100a2d2" }, "downloads": -1, "filename": "miniirc-1.0.1.tar.gz", "has_sig": false, "md5_digest": "46f944b0f1d026160897a30ac9b932ce", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11450, "upload_time": "2019-01-10T23:20:10", "url": "https://files.pythonhosted.org/packages/84/cd/f24da5905729d072fb5a8faa8be1a642bc601bcde4bf90e3a367023af2b0/miniirc-1.0.1.tar.gz" } ], "1.0.2": [ { "comment_text": "", "digests": { "md5": "aea28c5b481d9c1f3e9f558165238b19", "sha256": "03d7cc6ea3069ef10766863d2c5dd405dc8e0de57ce155625faebada27580e0c" }, "downloads": -1, "filename": "miniirc-1.0.2-py3-none-any.whl", "has_sig": false, "md5_digest": "aea28c5b481d9c1f3e9f558165238b19", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 10183, "upload_time": "2019-01-11T07:37:14", "url": "https://files.pythonhosted.org/packages/8b/d4/df9152a2e6b03157d993225fdcd885926a4ce7b80105429bbce910513e77/miniirc-1.0.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "efa9d36e84fc8ca1da296a42b95ca408", "sha256": "115712261ef1fe39c4ff0d7eb35b4aac62188fa82de6ba2bea303b0d65171103" }, "downloads": -1, "filename": "miniirc-1.0.2.tar.gz", "has_sig": false, "md5_digest": "efa9d36e84fc8ca1da296a42b95ca408", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11601, "upload_time": "2019-01-11T07:37:15", "url": "https://files.pythonhosted.org/packages/4e/3e/af20d709e8aeb401f4514cc434f9b8bfccbe93b98a9999987a5be792df69/miniirc-1.0.2.tar.gz" } ], "1.0.3": [ { "comment_text": "", "digests": { "md5": "30d23c2d587a519b221985b55d6b10d4", "sha256": "d66226767c302c1831723d27eacbdcc68c68111bc5b0a069066308b110289bf1" }, "downloads": -1, "filename": "miniirc-1.0.3-py3-none-any.whl", "has_sig": false, "md5_digest": "30d23c2d587a519b221985b55d6b10d4", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 10266, "upload_time": "2019-01-11T08:12:00", "url": "https://files.pythonhosted.org/packages/e2/6c/0891bd9919b69c57f78af6309a76c77c605212601b36e0469ba0b4f63ffd/miniirc-1.0.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a23f1cb458f72f1036f5f8011fb2a7da", "sha256": "9f6024ece84b8402101c0a3847ebab58ddae6cf3b15405ffb28e79fbb72b48f4" }, "downloads": -1, "filename": "miniirc-1.0.3.tar.gz", "has_sig": false, "md5_digest": "a23f1cb458f72f1036f5f8011fb2a7da", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11752, "upload_time": "2019-01-11T08:12:02", "url": "https://files.pythonhosted.org/packages/94/73/13d3d0b016fc07dd5ee15fd0a4e660d8c8a32c6a19cf3001693f2296d305/miniirc-1.0.3.tar.gz" } ], "1.0.4": [ { "comment_text": "", "digests": { "md5": "4000206a345eaad732443c9b4da7acf0", "sha256": "ce9a206f75941c206d5b1404ca8e40b581dcbc3d618d965156218bef3064299a" }, "downloads": -1, "filename": "miniirc-1.0.4-py3-none-any.whl", "has_sig": false, "md5_digest": "4000206a345eaad732443c9b4da7acf0", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 10277, "upload_time": "2019-01-11T09:00:49", "url": "https://files.pythonhosted.org/packages/69/eb/33f84a424c226a293094cc40def6a57ed21cf8db86243e59879ccade492e/miniirc-1.0.4-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "bc920197d479ecb1a07120303e45046c", "sha256": "d6c814b0efbbc37314c2bad03f9d4bf068332682341d36e6ba49e9faec4f81fa" }, "downloads": -1, "filename": "miniirc-1.0.4.tar.gz", "has_sig": false, "md5_digest": "bc920197d479ecb1a07120303e45046c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11764, "upload_time": "2019-01-11T09:00:51", "url": "https://files.pythonhosted.org/packages/16/90/4289c4c5ad9d4ace5896b47960e65aa336a245488ba8819cf83e81ed7b2c/miniirc-1.0.4.tar.gz" } ], "1.0.5": [ { "comment_text": "", "digests": { "md5": "bcfe7881178b087f673dbd2606a867a4", "sha256": "72629b48f7cef3c384eeaf13240c1a51bc3e759355ccfc7ba944f4febe1b9cc4" }, "downloads": -1, "filename": "miniirc-1.0.5-py3-none-any.whl", "has_sig": false, "md5_digest": "bcfe7881178b087f673dbd2606a867a4", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 10325, "upload_time": "2019-01-12T02:42:57", "url": "https://files.pythonhosted.org/packages/63/db/7114279d5190032ff520cd1f771e287e8b35ed0e80c8d7a51614271aadde/miniirc-1.0.5-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1bdd37106acc5a1381e0c9d1029acd03", "sha256": "e0b8f5b1443e4e377b4d01c408c2beda514d691ff8519f43eb914c6fbc76b03f" }, "downloads": -1, "filename": "miniirc-1.0.5.tar.gz", "has_sig": false, "md5_digest": "1bdd37106acc5a1381e0c9d1029acd03", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11804, "upload_time": "2019-01-12T02:42:59", "url": "https://files.pythonhosted.org/packages/1b/46/69f8442afd2a6f73b40410de702ed300691ffefb9be2e7a63e64d17a8626/miniirc-1.0.5.tar.gz" } ], "1.0.6": [ { "comment_text": "", "digests": { "md5": "7d045fb42deb740d20cae43002216e87", "sha256": "fed8e1a414e8d28ff76c9d53d4008659739aa528704438c3a89ae904b0a30ba9" }, "downloads": -1, "filename": "miniirc-1.0.6-py3-none-any.whl", "has_sig": false, "md5_digest": "7d045fb42deb740d20cae43002216e87", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 10339, "upload_time": "2019-02-19T03:35:41", "url": "https://files.pythonhosted.org/packages/29/ef/414e5cc931e6beca0139cb3d4e7fab9de044e5f7d078b38e6f17b98a4229/miniirc-1.0.6-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f0c2ebec94b827399d132e33eeba803a", "sha256": "edac0c6a1cceb4afc6584820546a86fe46443362cb08a6bcbb7943a58632d4bd" }, "downloads": -1, "filename": "miniirc-1.0.6.tar.gz", "has_sig": false, "md5_digest": "f0c2ebec94b827399d132e33eeba803a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11816, "upload_time": "2019-02-19T03:35:43", "url": "https://files.pythonhosted.org/packages/9a/24/6a5bb5c518a1a73f542c99460dff942f5677fd5b6a7249797b5d90f12b02/miniirc-1.0.6.tar.gz" } ], "1.0.7": [ { "comment_text": "", "digests": { "md5": "3540147541e9f2ed9885878ec834c9b9", "sha256": "f399b39c8a1d5aec9840d629f83ebe28b09a75023faa41c21c7072111b76cbaf" }, "downloads": -1, "filename": "miniirc-1.0.7-py3-none-any.whl", "has_sig": false, "md5_digest": "3540147541e9f2ed9885878ec834c9b9", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 10333, "upload_time": "2019-02-19T21:33:17", "url": "https://files.pythonhosted.org/packages/a0/4a/5d227f1993b3b7f477e66fd435cd1dd4201d8229136518877e76166249c7/miniirc-1.0.7-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0e65365e58e0bbfd1ce660e6c2ca93d3", "sha256": "bef3ffd2a9909a8abdd283ac4ffb66629b73d62eaa51e5618911531abbd40a2b" }, "downloads": -1, "filename": "miniirc-1.0.7.tar.gz", "has_sig": false, "md5_digest": "0e65365e58e0bbfd1ce660e6c2ca93d3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11806, "upload_time": "2019-02-19T21:33:19", "url": "https://files.pythonhosted.org/packages/89/dd/f9b328ce26928c181ebd1f596c9823efe7dfd900176b387d6453653c18ef/miniirc-1.0.7.tar.gz" } ], "1.0.8": [ { "comment_text": "", "digests": { "md5": "0e089df5bf05f1965fd9da8f8776b087", "sha256": "9921b0659d18e9b19a033462a9c31594c35d51944deb46060cf5c584d88c0899" }, "downloads": -1, "filename": "miniirc-1.0.8-py3-none-any.whl", "has_sig": false, "md5_digest": "0e089df5bf05f1965fd9da8f8776b087", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 10333, "upload_time": "2019-02-26T05:29:27", "url": "https://files.pythonhosted.org/packages/1b/e9/8ecfaaedf0cb004f8626379ef402de4d1c9f57814869196e99f3ce07f4a4/miniirc-1.0.8-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "251da1ef395ec18c50ac3aade6be848e", "sha256": "8c6ba5a92726e73262e9a0ad64eba9496515ea3a19171519ce9b2449b5d65fd6" }, "downloads": -1, "filename": "miniirc-1.0.8.tar.gz", "has_sig": false, "md5_digest": "251da1ef395ec18c50ac3aade6be848e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11805, "upload_time": "2019-02-26T05:29:29", "url": "https://files.pythonhosted.org/packages/d1/ce/33443fd0742dad8b294dec9ebfbf13f051285b44c2b5189bddb040ab4fde/miniirc-1.0.8.tar.gz" } ], "1.0.9": [ { "comment_text": "", "digests": { "md5": "bab793c59090b3a8d78df39819ecacee", "sha256": "03439e440c8149bc502778c5618ec4cd90604e72f332e92107303fe10c45d9fd" }, "downloads": -1, "filename": "miniirc-1.0.9-py3-none-any.whl", "has_sig": false, "md5_digest": "bab793c59090b3a8d78df39819ecacee", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 10344, "upload_time": "2019-02-27T07:27:23", "url": "https://files.pythonhosted.org/packages/74/ab/f844b714b4276e0effd9f15dffcd2a8499140d135bacfc6912eae702f54d/miniirc-1.0.9-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c4e19ba27314376ca550619024be8295", "sha256": "79ccd08646f0a9b66b9cdf9fb5deea5793aa8506f74e1faa35f3dde1c2285b9a" }, "downloads": -1, "filename": "miniirc-1.0.9.tar.gz", "has_sig": false, "md5_digest": "c4e19ba27314376ca550619024be8295", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11824, "upload_time": "2019-02-27T07:27:25", "url": "https://files.pythonhosted.org/packages/72/43/baaac5cbf353f7ab21dcf891113ba8c39f236f42dfc2a53402612113d5c8/miniirc-1.0.9.tar.gz" } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "cbe9d11b16fe2092737a854d7639417d", "sha256": "3714bff56f60f9668b689bcc9cbb4441c15d3aa8cc207b0d72bfd46a53919b82" }, "downloads": -1, "filename": "miniirc-1.1.0-py3-none-any.whl", "has_sig": false, "md5_digest": "cbe9d11b16fe2092737a854d7639417d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 10754, "upload_time": "2019-03-19T01:43:54", "url": "https://files.pythonhosted.org/packages/a4/99/1bb41ff579c3cb70ab20e3d786c3d44c226b12bc278401718959864115c6/miniirc-1.1.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b50a1281ab8709b00935a72632a7ca85", "sha256": "02d7b17ecb6a1bb6f586502f9e4458520f8ac7c14d187b422d4601b156d7dc71" }, "downloads": -1, "filename": "miniirc-1.1.0.tar.gz", "has_sig": false, "md5_digest": "b50a1281ab8709b00935a72632a7ca85", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12351, "upload_time": "2019-03-19T01:43:56", "url": "https://files.pythonhosted.org/packages/dd/40/d3e390da404f0c33ed4285b9332bd8db30b79ae725b03e1d29dbd98546f3/miniirc-1.1.0.tar.gz" } ], "1.1.1": [ { "comment_text": "", "digests": { "md5": "ed850c2608d471a16648ffdcb6d18d8a", "sha256": "00412d7bf38aaf40d5515707b4f212b8ade542de6e7b8fc3a2e9b409100884e1" }, "downloads": -1, "filename": "miniirc-1.1.1-py3-none-any.whl", "has_sig": false, "md5_digest": "ed850c2608d471a16648ffdcb6d18d8a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 10765, "upload_time": "2019-03-19T19:31:33", "url": "https://files.pythonhosted.org/packages/10/85/f51f17a4efe1d760b899f785bd1c424802196f9bbd03e8051f59febadf41/miniirc-1.1.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f859faf2c79f71f5bb2ff2978cdb62d4", "sha256": "2c728787350f541a6617f5abce5ccab2b038a922b21b7789ae7c7af8c0448e5d" }, "downloads": -1, "filename": "miniirc-1.1.1.tar.gz", "has_sig": false, "md5_digest": "f859faf2c79f71f5bb2ff2978cdb62d4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12368, "upload_time": "2019-03-19T19:31:34", "url": "https://files.pythonhosted.org/packages/df/53/58282d7a8d5fbaae0a8c6677c0f0babe5d842187a6cdf8289dd2ed7341be/miniirc-1.1.1.tar.gz" } ], "1.1.2": [ { "comment_text": "", "digests": { "md5": "9c978bdd5849cfe20766224deaa40ef7", "sha256": "266a4440d048da40e6ea3f76a20de524f8cd29a323b4ad0761bdd6666080f9e5" }, "downloads": -1, "filename": "miniirc-1.1.2-py3-none-any.whl", "has_sig": false, "md5_digest": "9c978bdd5849cfe20766224deaa40ef7", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 10769, "upload_time": "2019-03-26T04:44:04", "url": "https://files.pythonhosted.org/packages/cd/86/ed5a590eeb53cdbe4abb2d1d913fde39a3eddb3857a2aeae362001cbd4e3/miniirc-1.1.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "443416b8f4faafc83c1e1354a8729ed5", "sha256": "7479bcd8864f89a11642ead36a536c1af87387be6e8e812c841b14e373a5c96b" }, "downloads": -1, "filename": "miniirc-1.1.2.tar.gz", "has_sig": false, "md5_digest": "443416b8f4faafc83c1e1354a8729ed5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12368, "upload_time": "2019-03-26T04:44:06", "url": "https://files.pythonhosted.org/packages/33/f1/f9f117bc64deb2208f9496f3a9cca1e831167c5350d63e903e7a091f2fd6/miniirc-1.1.2.tar.gz" } ], "1.1.3": [ { "comment_text": "", "digests": { "md5": "f028aad1d6fd2db6f488feac58bfb25e", "sha256": "e2aba1b2a78e99f248145cae47d883d43114dd28f23c65e61ffe3d72825533eb" }, "downloads": -1, "filename": "miniirc-1.1.3-py3-none-any.whl", "has_sig": false, "md5_digest": "f028aad1d6fd2db6f488feac58bfb25e", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.0", "size": 11317, "upload_time": "2019-03-27T00:55:35", "url": "https://files.pythonhosted.org/packages/f9/8f/49671500d87de68c5383ad1ed4f0baa11eeb85e8e6b2ade6255c9ae5130a/miniirc-1.1.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0b87680a73d976c0f52d80d95282ef05", "sha256": "2e9d3c58eb78227cb0655d3b0c7429595a340fc9a36d0d9f98f19f7fca96d9b9" }, "downloads": -1, "filename": "miniirc-1.1.3.tar.gz", "has_sig": false, "md5_digest": "0b87680a73d976c0f52d80d95282ef05", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.0", "size": 10665, "upload_time": "2019-03-27T00:55:37", "url": "https://files.pythonhosted.org/packages/07/29/a880b892366a01893be570f264edda4cdb205d10eef1c71d3cca73352aea/miniirc-1.1.3.tar.gz" } ], "1.1.3.post2": [ { "comment_text": "", "digests": { "md5": "0fc732186f1f3a3fed9d558e44342df4", "sha256": "e625fda67503d9155b8bd554a0cab37d40662def7f7165e32315a96c8cfe2142" }, "downloads": -1, "filename": "miniirc-1.1.3.post2-py2-none-any.whl", "has_sig": false, "md5_digest": "0fc732186f1f3a3fed9d558e44342df4", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": "==2.7.*", "size": 7649, "upload_time": "2019-03-27T01:52:20", "url": "https://files.pythonhosted.org/packages/c6/ed/49fa39cf527bb1a4583c47bffae7e5002cc36a39a8810386928b6625ea21/miniirc-1.1.3.post2-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f309f6c8d61f23c11e35acfd5d78739e", "sha256": "2b459392b14eb4be332a1682c5f6219de6e591de53174df9fd8a65216a25aac9" }, "downloads": -1, "filename": "miniirc-1.1.3.post2.tar.gz", "has_sig": false, "md5_digest": "f309f6c8d61f23c11e35acfd5d78739e", "packagetype": "sdist", "python_version": "source", "requires_python": "==2.7.*", "size": 6419, "upload_time": "2019-03-27T01:52:22", "url": "https://files.pythonhosted.org/packages/ab/57/f2a6a29280ac9d41a9e06c666d1768e995d5f0f673e16049beaf2f8ec7e8/miniirc-1.1.3.post2.tar.gz" } ], "1.1.3.post3": [ { "comment_text": "", "digests": { "md5": "a7888fcff036a69135ae0af3535e5ec6", "sha256": "1c873e25754060a5fa1d3dd2453e50bd5c2feb6a8d34e55ff211e32427c00de1" }, "downloads": -1, "filename": "miniirc-1.1.3.post3-py3-none-any.whl", "has_sig": false, "md5_digest": "a7888fcff036a69135ae0af3535e5ec6", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.0", "size": 11356, "upload_time": "2019-03-27T01:52:59", "url": "https://files.pythonhosted.org/packages/90/c9/d8da5740c6ea9264c634399b33497faa1519799ace4c5d1bfe83811550b8/miniirc-1.1.3.post3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "567728616edf859da1b0b04b5991668a", "sha256": "e43d029e1278c545017ab51a26e122e7db07767a7d8cf60d85d25c3e01c1a4e5" }, "downloads": -1, "filename": "miniirc-1.1.3.post3.tar.gz", "has_sig": false, "md5_digest": "567728616edf859da1b0b04b5991668a", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.0", "size": 10637, "upload_time": "2019-03-27T01:53:01", "url": "https://files.pythonhosted.org/packages/51/f0/ad391d01fb504e9767db6f3e12c2075cdfe11b030102ea8bdc2afef6f884/miniirc-1.1.3.post3.tar.gz" } ], "1.1.4": [ { "comment_text": "", "digests": { "md5": "a3e4a548e9bf8da391bc7c36613b8c3e", "sha256": "f50f20fed0ff38fd493302392f5fd3a3275c63aa1dcdae9cb3317c0adf56ab5b" }, "downloads": -1, "filename": "miniirc-1.1.4-py3-none-any.whl", "has_sig": false, "md5_digest": "a3e4a548e9bf8da391bc7c36613b8c3e", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.0", "size": 11422, "upload_time": "2019-03-29T04:13:29", "url": "https://files.pythonhosted.org/packages/62/94/63c0f10f2dcb756f62c92081559106d99523ba70ff2a52d5d5f78f68d86c/miniirc-1.1.4-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7b43221e8868aa65d165f21b06363b55", "sha256": "c712fe9d4e7b75e83c090b1d3b75af8494c37458a102eb9e0d5bd135ff53749c" }, "downloads": -1, "filename": "miniirc-1.1.4.tar.gz", "has_sig": false, "md5_digest": "7b43221e8868aa65d165f21b06363b55", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.0", "size": 13689, "upload_time": "2019-03-29T04:13:32", "url": "https://files.pythonhosted.org/packages/ca/2d/a320ce91a88a29eca297f9647b08443c1338cac161e033151724cfcfeca0/miniirc-1.1.4.tar.gz" } ], "1.2.3": [ { "comment_text": "", "digests": { "md5": "c50b8634910b9715f051cffdb48e90db", "sha256": "f71bb5eb54000d4fbf395850ac90a357c1998c4b04414d4438bc97ae09d7cf2f" }, "downloads": -1, "filename": "miniirc-1.2.3-py3-none-any.whl", "has_sig": false, "md5_digest": "c50b8634910b9715f051cffdb48e90db", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.0", "size": 11756, "upload_time": "2019-04-06T00:09:26", "url": "https://files.pythonhosted.org/packages/2b/bf/1be0ef08a81cac3316b3a82e723da7ace34a452b2380932c35ae34ea9533/miniirc-1.2.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "12a48928050463fc9c52d94809f13f22", "sha256": "1cdcd0084634db20d8c064a88be53d55a23dc306bad3607101b8d795bca811ad" }, "downloads": -1, "filename": "miniirc-1.2.3.tar.gz", "has_sig": false, "md5_digest": "12a48928050463fc9c52d94809f13f22", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.0", "size": 14126, "upload_time": "2019-04-06T00:09:28", "url": "https://files.pythonhosted.org/packages/2f/5c/2c108574c23a119111a71f744726a103900309d7e6c2dbbe501596e2d974/miniirc-1.2.3.tar.gz" } ], "1.2.4": [ { "comment_text": "", "digests": { "md5": "498002754bb7d2d27ec61996a2b9a223", "sha256": "8b79ba75d7ba57eb6fa3d9e5a4f23e3820247fa654226496aeec5a35c3594a36" }, "downloads": -1, "filename": "miniirc-1.2.4-py3-none-any.whl", "has_sig": false, "md5_digest": "498002754bb7d2d27ec61996a2b9a223", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.0", "size": 15836, "upload_time": "2019-04-06T20:00:43", "url": "https://files.pythonhosted.org/packages/f2/fe/e9e5933d00c2d4ac34c80bedd310300dad3c5dcbf36a370b86b2f79f200b/miniirc-1.2.4-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6d99966908bbf7c8d5c17e8783a0425b", "sha256": "a566d426c6cfb557a6e32f7c902bc694eb84f487573967424386185283b36878" }, "downloads": -1, "filename": "miniirc-1.2.4.tar.gz", "has_sig": false, "md5_digest": "6d99966908bbf7c8d5c17e8783a0425b", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.0", "size": 11228, "upload_time": "2019-04-06T20:00:45", "url": "https://files.pythonhosted.org/packages/b7/1e/8b070d9e53f689724d0c4264e87638a09b87df1949c0bd3f54353b5ba227/miniirc-1.2.4.tar.gz" } ], "1.2.4.post1": [ { "comment_text": "", "digests": { "md5": "f974ba337500e43a9544160ea063be2c", "sha256": "a40184fe49c9dabe6c8323c33623d0bceec463c14d5b9795419aa8242387cafd" }, "downloads": -1, "filename": "miniirc-1.2.4.post1-py3-none-any.whl", "has_sig": false, "md5_digest": "f974ba337500e43a9544160ea063be2c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.0", "size": 11829, "upload_time": "2019-04-06T20:21:02", "url": "https://files.pythonhosted.org/packages/e8/47/7838e33a88137b723c5b92989eeb8b1fc913c91160ba156827c5fd08a779/miniirc-1.2.4.post1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d669f9a819817913df2f6fda206502f8", "sha256": "efc9caa4630b659ac606cac4383b577e199f4752aee536a3fd83e0a21218ea98" }, "downloads": -1, "filename": "miniirc-1.2.4.post1.tar.gz", "has_sig": false, "md5_digest": "d669f9a819817913df2f6fda206502f8", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.0", "size": 11241, "upload_time": "2019-04-06T20:21:04", "url": "https://files.pythonhosted.org/packages/ce/4f/4cbfaac1938279f1f03251d22aae19ef10cb56e355bc342a25a935e5cd8a/miniirc-1.2.4.post1.tar.gz" } ], "1.3.0": [ { "comment_text": "", "digests": { "md5": "55e7ced2d8f88bf7fc3c3d992814e157", "sha256": "6d7d9b044abb01c07c31b30bddb68939893a80df4f2ab7687cd459b9f7ca561c" }, "downloads": -1, "filename": "miniirc-1.3.0-py3-none-any.whl", "has_sig": false, "md5_digest": "55e7ced2d8f88bf7fc3c3d992814e157", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.0", "size": 12451, "upload_time": "2019-04-28T23:31:47", "url": "https://files.pythonhosted.org/packages/aa/d6/c46952de5d878a1897fffcbfc4e9050f376209d62c77136b632f705567af/miniirc-1.3.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f9be177e29568d58f7e63ee797b969da", "sha256": "ef5e32f19d7063c14a6bec65896701791f44cd826341cf74aef9b89835aac7f4" }, "downloads": -1, "filename": "miniirc-1.3.0.tar.gz", "has_sig": false, "md5_digest": "f9be177e29568d58f7e63ee797b969da", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.0", "size": 15386, "upload_time": "2019-04-28T23:31:51", "url": "https://files.pythonhosted.org/packages/3f/5b/1db18871810276a1b0f8cd13dd5afc2ed889a462ebcd9b7154a76e50aa15/miniirc-1.3.0.tar.gz" } ], "1.3.1": [ { "comment_text": "", "digests": { "md5": "a594490b544f80bacaba03ed975377b7", "sha256": "5233470c9850ae76a139dffc57d1570d9d03b7532653d3bbee0c282c0de7e309" }, "downloads": -1, "filename": "miniirc-1.3.1-py3-none-any.whl", "has_sig": false, "md5_digest": "a594490b544f80bacaba03ed975377b7", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.0", "size": 12497, "upload_time": "2019-04-29T02:13:18", "url": "https://files.pythonhosted.org/packages/81/bd/1618d7c997180861170eb2dafca4b456ed5b560aa663107d563e58796468/miniirc-1.3.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "951a84553500020c5176b5fd82183ef1", "sha256": "a61c1996c90f86c406aaf8986baa0d7450cf83315638e4c9c8b10c0cf845d200" }, "downloads": -1, "filename": "miniirc-1.3.1.tar.gz", "has_sig": false, "md5_digest": "951a84553500020c5176b5fd82183ef1", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.0", "size": 15483, "upload_time": "2019-04-29T02:13:22", "url": "https://files.pythonhosted.org/packages/7b/ab/1173b63289cf492ccf053dcbc386dec78cb2d8cb0aebf9b73c802b72898d/miniirc-1.3.1.tar.gz" } ], "1.3.2": [ { "comment_text": "", "digests": { "md5": "fec4c03019bc637e2adab34d50552ba3", "sha256": "49eaacc529ffa91be5c05d4820146dfa8c419806e6efb2ae18b4e15adc5dc0c5" }, "downloads": -1, "filename": "miniirc-1.3.2-py3-none-any.whl", "has_sig": false, "md5_digest": "fec4c03019bc637e2adab34d50552ba3", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.0", "size": 12515, "upload_time": "2019-04-29T02:58:08", "url": "https://files.pythonhosted.org/packages/a5/5b/ac74f8a5b3b7cc6d592aa715090b097de153821b0c7118f036b2e1e8c83d/miniirc-1.3.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a3ffec86962ada5897a367fa1f5a332c", "sha256": "b9255984fa14a6d1dfff7eebfc2fa6fd5a61c9f83b6dea4dbd806554b6bdf898" }, "downloads": -1, "filename": "miniirc-1.3.2.tar.gz", "has_sig": false, "md5_digest": "a3ffec86962ada5897a367fa1f5a332c", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.0", "size": 15497, "upload_time": "2019-04-29T02:58:11", "url": "https://files.pythonhosted.org/packages/5c/42/eef793b98df40a7096b1cc43b6977a1a66d681c06a13c9fb6e074521a69f/miniirc-1.3.2.tar.gz" } ], "1.3.3": [ { "comment_text": "", "digests": { "md5": "10713f5171b83cd58b3264d7101a0cbf", "sha256": "016c9ede4eed4e9f8a5181bfcd0fe50e2e525276ffe5f5c6cec8b8cb875b2a29" }, "downloads": -1, "filename": "miniirc-1.3.3-py3-none-any.whl", "has_sig": false, "md5_digest": "10713f5171b83cd58b3264d7101a0cbf", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.0", "size": 12528, "upload_time": "2019-05-20T05:06:24", "url": "https://files.pythonhosted.org/packages/75/ee/aa3970830f25e7beacb26c70d4facfa98f434f289ed8aa031bfae87be76c/miniirc-1.3.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "649f62b8615b89dd1bbc61ed6c65cd8f", "sha256": "23f76a59503ef9bae066c4e5fc2f435947020a47ee48df5f02830dbc831a3dc0" }, "downloads": -1, "filename": "miniirc-1.3.3.tar.gz", "has_sig": false, "md5_digest": "649f62b8615b89dd1bbc61ed6c65cd8f", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.0", "size": 15514, "upload_time": "2019-05-20T05:06:27", "url": "https://files.pythonhosted.org/packages/a8/44/edb249ac3a6f568d23fa92d18fa04260532b2ebd0565bcf38c587e9c2fab/miniirc-1.3.3.tar.gz" } ], "1.4.0": [ { "comment_text": "", "digests": { "md5": "ecb22c7c282b1d9d52ab0236038b2543", "sha256": "67a3f98433c8398839108969c8394402757876bebcba91bd134a0be50ccc3c75" }, "downloads": -1, "filename": "miniirc-1.4.0-py3-none-any.whl", "has_sig": false, "md5_digest": "ecb22c7c282b1d9d52ab0236038b2543", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.0", "size": 12995, "upload_time": "2019-06-18T09:26:16", "url": "https://files.pythonhosted.org/packages/59/02/f84b9dd7e8ae382122da68141563b3a28503bbfe226c606cf786a6ebf8ce/miniirc-1.4.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "061cb71466a979f30dc18499090674ef", "sha256": "145e5e9db23189a683d11061aa3805c558b3833fd02ca4a9e06f86aab1aaefa2" }, "downloads": -1, "filename": "miniirc-1.4.0.tar.gz", "has_sig": false, "md5_digest": "061cb71466a979f30dc18499090674ef", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.0", "size": 16373, "upload_time": "2019-06-18T09:26:18", "url": "https://files.pythonhosted.org/packages/59/e8/2e7b71572cb0856f6978763f11ae7a046e269ebd93ac840fe848bdc3025e/miniirc-1.4.0.tar.gz" } ], "1.4.1": [ { "comment_text": "", "digests": { "md5": "1f5b96e9d55e89e762fa306589261664", "sha256": "415f8e446f3050c4fab0abb38ed971e1669ff2dee8b7024d51b57647d885bd40" }, "downloads": -1, "filename": "miniirc-1.4.1-py3-none-any.whl", "has_sig": false, "md5_digest": "1f5b96e9d55e89e762fa306589261664", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.0", "size": 13413, "upload_time": "2019-07-16T22:45:50", "url": "https://files.pythonhosted.org/packages/ab/8b/fa851f56c00328dd19ea8d6f1822928be152d66d6c8a25c2a446bbfe1a05/miniirc-1.4.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "584b525a5b48fc6cde29fd9d692d0574", "sha256": "9c907ad570d8d9a784352b4d5ca7be3bbb72e8ff1a56ae68f44d3a6ee0a05ac5" }, "downloads": -1, "filename": "miniirc-1.4.1.tar.gz", "has_sig": false, "md5_digest": "584b525a5b48fc6cde29fd9d692d0574", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.0", "size": 17273, "upload_time": "2019-07-16T22:45:52", "url": "https://files.pythonhosted.org/packages/c8/72/801daf1eaf6ec71c28f3671545fb6fb6e77015e635d141ed7647904add10/miniirc-1.4.1.tar.gz" } ], "1.4.2": [ { "comment_text": "", "digests": { "md5": "192c51a7871f86ea9a184b86409bd99f", "sha256": "69aeff2eb67e0152bd6b395bc07d1ef08d8bc2deaacc1b40d75f7d0b041de4a8" }, "downloads": -1, "filename": "miniirc-1.4.2-py3-none-any.whl", "has_sig": false, "md5_digest": "192c51a7871f86ea9a184b86409bd99f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.0", "size": 14003, "upload_time": "2019-08-20T06:07:17", "url": "https://files.pythonhosted.org/packages/07/22/c269a21b3708b83686250fe52bb64ee23f1840007d727ea05a7146842057/miniirc-1.4.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "93df7dcc6fecdf243bf5e2f8f145c5d7", "sha256": "b26d5c7123b0b51fe45ea81f1c07fb6b5dc77c82faa10f477d0d54ca8870e211" }, "downloads": -1, "filename": "miniirc-1.4.2.tar.gz", "has_sig": false, "md5_digest": "93df7dcc6fecdf243bf5e2f8f145c5d7", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.0", "size": 18372, "upload_time": "2019-08-16T21:58:51", "url": "https://files.pythonhosted.org/packages/8b/d3/4e1f52eb21c663bf434f42b66a0c8b60136531ef42031766327c28dafa1e/miniirc-1.4.2.tar.gz" } ], "1.4.3": [ { "comment_text": "", "digests": { "md5": "12855bd0e3ee08b876c75ad9df0ef860", "sha256": "4d6171bc884c8477a11e9465b6e1956dc49983d0b09809354318555cd2d19a07" }, "downloads": -1, "filename": "miniirc-1.4.3-py3-none-any.whl", "has_sig": false, "md5_digest": "12855bd0e3ee08b876c75ad9df0ef860", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.0", "size": 14279, "upload_time": "2019-09-29T07:26:10", "url": "https://files.pythonhosted.org/packages/34/a2/72d89416975b313100bd808263879c8d32c1dba63897212b729639fdf901/miniirc-1.4.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "81e04a3bc26b184bdc05d0db457dea06", "sha256": "76376322b01bc57735f3cfb5db83a363398d22ff0baea9c7565e7018d867901a" }, "downloads": -1, "filename": "miniirc-1.4.3.tar.gz", "has_sig": false, "md5_digest": "81e04a3bc26b184bdc05d0db457dea06", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.0", "size": 18791, "upload_time": "2019-09-29T07:26:13", "url": "https://files.pythonhosted.org/packages/68/0c/d76ab08ef251f8d0952916434eac901e5d2219da395bf0cbc584d56b4d5f/miniirc-1.4.3.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "12855bd0e3ee08b876c75ad9df0ef860", "sha256": "4d6171bc884c8477a11e9465b6e1956dc49983d0b09809354318555cd2d19a07" }, "downloads": -1, "filename": "miniirc-1.4.3-py3-none-any.whl", "has_sig": false, "md5_digest": "12855bd0e3ee08b876c75ad9df0ef860", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.0", "size": 14279, "upload_time": "2019-09-29T07:26:10", "url": "https://files.pythonhosted.org/packages/34/a2/72d89416975b313100bd808263879c8d32c1dba63897212b729639fdf901/miniirc-1.4.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "81e04a3bc26b184bdc05d0db457dea06", "sha256": "76376322b01bc57735f3cfb5db83a363398d22ff0baea9c7565e7018d867901a" }, "downloads": -1, "filename": "miniirc-1.4.3.tar.gz", "has_sig": false, "md5_digest": "81e04a3bc26b184bdc05d0db457dea06", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.0", "size": 18791, "upload_time": "2019-09-29T07:26:13", "url": "https://files.pythonhosted.org/packages/68/0c/d76ab08ef251f8d0952916434eac901e5d2219da395bf0cbc584d56b4d5f/miniirc-1.4.3.tar.gz" } ] }