{ "info": { "author": "sharkbound", "author_email": "", "bugtrack_url": null, "classifiers": [], "description": "# if you have any questions concerning the bot, you can contact me in my discord server: https://discord.gg/PXrKVHp OR [r/pythontwitchbot](https://www.reddit.com/r/pythontwitchbot/) on reddit\n\nif you would like to send a few dollars my way you can do so\nhere: [![Donate](https://img.shields.io/badge/Donate-PayPal-green.svg)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=9ZVUE7CR24738)\n\nthis bot is also on PYPI: https://pypi.org/project/PythonTwitchBotFramework/\n\ninstall from pip: `pip install PythonTwitchBotFramework`\n\n# PythonTwitchBotFramework\n\nfully async twitchbot framework/library compatible with python 3.6+\n\n### how to stop the bot\n\nto stop the bot running, do any of these commands:\n\n`!shutdown` `!stop` or `!s` in the twitch chat of the channel its in, this command tries to properly shutdown all the\ntasks the bot is currently running and gives time to stop/cancel\n\nthese commands requires the caller have permission to execute them\n\n# Quick Links\n\n* [Quick Start](#quick-start)\n* [Overriding Events](#overriding-events)\n* [Overriding Events On Mods](#overriding-events-on-mods)\n* [Adding Commands](#adding-commands)\n* [SubCommands](#subcommands)\n* [DummyCommands](#dummycommands)\n* [Permissions](#permissions)\n * [Using Chat Commands](#managing-permissions-using-chat-commands)\n * [Editing The Config](#managing-permission-by-editing-the-configs)\n* [Reloading Permissions](#reloading-permissions)\n* [Command Server](#command-server)\n* [Command Console](#command-console)\n* [Database Support](#database-support)\n* [Command Whitelist](#command-whitelist)\n* [Twitch PubSub Client](#twitch-pubsub-client)\n\n# basic info\n\nThis is a fully async twitch bot framework complete with:\n\n* builtin command system using decorators\n* overridable events (message received, whisper received, ect)\n* full permission system that is individual for each channel\n* message timers\n* quotes\n* custom commands\n* builtin economy\n\nthere is also mod system builtin to the bot, there is a collection of pre-made mods\nhere: [MODS](https://github.com/sharkbound/twitch_bot_mods)\n\n# Quick Start\n\nfor a reference for builtin command look at the\nwiki [HERE](https://github.com/sharkbound/PythonTwitchBotFramework/wiki/Builtin_Command_Reference)\n\nthe minimum code to get the bot running is this:\n\n```python\nfrom twitchbot import BaseBot\n\nif __name__ == '__main__':\n BaseBot().run()\n```\n\nthis will start the bot.\n\nif you have a folder with your own custom commands you can load the .py files in it with:\n\n```python\nfrom twitchbot import BaseBot\n\nif __name__ == '__main__':\n BaseBot().run()\n```\n\n# Overriding Events\n\nthe bots events are overridable via the following 2 ways:\n\n## using decorators:\n\n```python\nfrom twitchbot import event_handler, Event, Message\n\n\n@event_handler(Event.on_privmsg_received)\nasync def on_privmsg_received(msg: Message):\n print(f'{msg.author} sent message {msg.content} to channel {msg.channel_name}')\n```\n\n## subclassing BaseBot\n\n```python\nfrom twitchbot import BaseBot, Message\n\n\nclass MyCustomTwitchBot(BaseBot):\n async def on_privmsg_received(self, msg: Message):\n print(f'{msg.author} sent message {msg.content} to channel {msg.channel_name}')\n```\n\nthen you would use MyCustomTwitchBot instead of BaseBot:\n\n```python\nMyCustomTwitchBot().run()\n```\n\n## Overriding Events On Mods\n\nVisit [***the mods wiki page***](https://github.com/sharkbound/PythonTwitchBotFramework/wiki/Mods#index)\non this repo's wiki to view how to do it via Mods\n\n* all overridable events are:\n\n#### when using the decorator event override way, `self` is not included, ex: `(self, msg: Message)` becomes: `(msg: Message)`\n\n```python\nfrom twitchbot import Event\n\nEvent.on_connected: (self)\nEvent.on_permission_check: (self, msg\n : Message, cmd: Command) -> bool # return False to deny permission to execute the cmd\nEvent.on_after_command_execute: (self, msg: Message, cmd: Command)\nEvent.on_before_command_execute: (self, msg: Message, cmd: Command) -> bool # return False to cancel command\nEvent.on_bits_donated: (self, msg: Message, bits: int)\nEvent.on_channel_raided: (self, channel: Channel, raider: str, viewer_count: int)\nEvent.on_channel_joined: (self, channel: Channel)\nEvent.on_channel_subscription: (self, subscriber: str, channel: Channel, msg: Message)\nEvent.on_privmsg_received: (self, msg: Message)\nEvent.on_privmsg_sent: (self, msg: str, channel: str, sender: str)\nEvent.on_whisper_received: (self, msg: Message)\nEvent.on_whisper_sent: (self, msg: str, receiver: str, sender: str)\nEvent.on_raw_message: (self, msg: Message)\nEvent.on_user_join: (self, user: str, channel: Channel)\nEvent.on_user_part: (self, user: str, channel: Channel)\nEvent.on_mod_reloaded: (self, mod: Mod)\nEvent.on_channel_points_redemption: (self, msg: Message, reward: str)\nEvent.on_bot_timed_out_from_channel: (self, msg: Message, channel: Channel, seconds: int)\nEvent.on_bot_banned_from_channel: (self, msg: Message, channel: Channel)\nEvent.on_poll_started: (self, channel: Channel, poll: PollData)\nEvent.on_poll_ended: (self, channel: Channel, poll: PollData)\nEvent.on_pubsub_received: (self, raw: 'PubSubData')\nEvent.on_pubsub_custom_channel_point_reward: (self, raw: 'PubSubData', data: 'PubSubPointRedemption')\nEvent.on_pubsub_bits: (self, raw: 'PubSubData', data: 'PubSubBits')\nEvent.on_pubsub_moderation_action: (self, raw: 'PubSubData', data: 'PubSubModerationAction')\nEvent.on_pubsub_subscription: (self, raw: 'PubSubData', data: 'PubSubSubscription')\nEvent.on_pubsub_twitch_poll_update: (self, raw: 'PubSubData', poll: 'PubSubPollData')\nEvent.on_pubsub_user_follow: (self, raw: 'PubSubData', data: 'PubSubFollow')\nEvent.on_bot_shutdown: (self)\nEvent.on_after_database_init(self) # used for triggering database operations after the bot starts\n```\n\nif this is the first time running the bot it will generate a folder named `configs`.\n\ninside is `config.json` which you put the authentication into\n\nas the bot is used it will also generate channel permission files in the `configs` folder\n\n# Adding Commands\n\nto register your own commands use the Command decorator:\n\n* using decorators\n\n```python\nfrom twitchbot import Command\n\n\n@Command('COMMAND_NAME')\nasync def cmd_function(msg, *args):\n await msg.reply('i was called!')\n```\n\n* you can also limit the commands to be whisper or channel chat only\n (default is channel chat only)\n\n```python\nfrom twitchbot import Command, CommandContext\n\n\n# other options are CommandContext.BOTH and CommandContext.WHISPER\n@Command('COMMAND_NAME', context=CommandContext.CHANNEL) # this is the default command context\nasync def cmd_function(msg, *args):\n await msg.reply('i was called!')\n```\n\n* you can also specify if a permission is required to be able to call the command (if no permission is specified anyone\n can call the command):\n\n```python\nfrom twitchbot import Command\n\n\n@Command('COMMAND_NAME', permission='PERMISSION_NAME')\nasync def cmd_function(msg, *args):\n await msg.reply('i was called!')\n```\n\n* you can also specify a help/syntax for the command for the help chat command to give into on it:\n\n```python\nfrom twitchbot import Command, Message\n\n\n@Command('COMMAND_NAME', help='this command does a very important thing!', syntax='')\nasync def cmd_function(msg: Message, *args):\n await msg.reply('i was called!')\n```\n\nso when you do `!help COMMAND_NAME`\n\nit will this in chat:\n\n```\nhelp for \"!command_name\", \nsyntax: \"\", \nhelp: \"this command does a very important thing!\"\n```\n\n* you can add aliases for a command (other command names that refer to the same command):\n\n```python\nfrom twitchbot import Command, Message\n\n\n@Command('COMMAND_NAME',\n help='this command does a very important thing!',\n syntax='',\n aliases=['COMMAND_NAME_2', 'COMMAND_NAME_3'])\nasync def cmd_function(msg: Message, *args):\n await msg.reply('i was called!')\n```\n\n`COMMAND_NAME_2` and `COMMAND_NAME_2` both refer to `COMMAND_NAME` and all three execute the same command\n\n# SubCommands\n\nthe SubCommand class makes it easier to implement different actions based on a parameters passed to a command.\n\nits the same as normal command except thats its not a global command\n\nexample: `!say` could be its own command, then it could have the sub-commands `!say myname` or `!say motd`.\n\nyou can implements this using something like this:\n\n```python\nfrom twitchbot import Command\n\n\n@Command('say')\nasync def cmd_say(msg, *args):\n # args is empty\n if not args:\n await msg.reply(\"you didn't give me any arguments :(\")\n return\n\n arg = args[0].lower()\n if arg == 'myname':\n await msg.reply(f'hello {msg.mention}!')\n\n elif arg == 'motd':\n await msg.reply('the message of the day is: python is awesome')\n\n else:\n await msg.reply(' '.join(args))\n\n\n```\n\nthat works, but i would be done in a nicer way using the `SubCommand` class:\n\n```python\nfrom twitchbot import Command, SubCommand\n\n\n@Command('say')\nasync def cmd_say(msg, *args):\n await msg.reply(' '.join(args))\n\n\n# we pass the parent command as the first parameter \n@SubCommand(cmd_say, 'myname')\nasync def cmd_say_myname(msg, *args):\n await msg.reply(f'hello {msg.mention}!')\n\n\n@SubCommand(cmd_say, 'motd')\nasync def cmd_say_motd(msg, *args):\n await msg.reply('the message of the day is: python is awesome')\n```\n\nboth ways do the same thing, what you proffer to use is up to you, but it does make it easier to manage for larger\ncommands to use SubCommand class\n\n# DummyCommands\n\nthis class is basically a command that does nothing when executed, its mainly use is to be used as base command for\nsub-command-only commands\n\nit has all the same options as a regular Command\n\nwhen a dummy command is executed it looks for sub-commands with a matching name as the first argument passed to it\n\nif no command is found then it will say in chat the available sub-commands\n\nbut if a command is found it executes that command\n\nsay you want a command to greet someone, but you always want to pass the language, you can do this:\n\n```python\nfrom twitchbot import DummyCommand, SubCommand\n\n# cmd_greet does nothing itself when called\ncmd_greet = DummyCommand('greet')\n\n\n@SubCommand(cmd_greet, 'english')\nasync def cmd_greet_english(msg, *args):\n await msg.reply(f'hello {msg.mention}!')\n\n\n@SubCommand(cmd_greet, 'spanish')\nasync def cmd_greet_spanish(msg, *args):\n await msg.reply(f'hola {msg.mention}!')\n```\n\ndoing just `!greet` will make the bot say:\n\n```text\ncommand options: {english, spanish}\n```\n\ndoing `!greet english` will make the bot say this:\n\n```text\nhello @johndoe!\n```\n\ndoing `!greet spanish` will make the bot say this:\n\n```text\nhola @johndoe!\n```\n\n# Config\n\nthe default config values are:\n\n```json\n{\n \"nick\": \"nick\",\n \"oauth\": \"oauth:\",\n \"client_id\": \"CLIENT_ID\",\n \"prefix\": \"!\",\n \"default_balance\": 200,\n \"loyalty_interval\": 60,\n \"loyalty_amount\": 2,\n \"owner\": \"BOT_OWNER_NAME\",\n \"channels\": [\n \"channel\"\n ],\n \"mods_folder\": \"mods\",\n \"commands_folder\": \"commands\",\n \"command_server_enabled\": true,\n \"command_server_port\": 1337,\n \"command_server_host\": \"localhost\",\n \"disable_whispers\": false,\n \"use_command_whitelist\": false,\n \"send_message_on_command_whitelist_deny\": true,\n \"command_whitelist\": [\n \"help\",\n \"commands\",\n \"reloadcmdwhitelist\",\n \"reloadmod\",\n \"reloadperms\",\n \"disablemod\",\n \"enablemod\",\n \"disablecmdglobal\",\n \"disablecmd\",\n \"enablecmdglobal\",\n \"enablecmd\",\n \"addcmd\",\n \"delcmd\",\n \"updatecmd\",\n \"cmd\"\n ]\n}\n```\n\n`oauth` is the twitch oauth used to login\n\n`client_id` is the client_id used to get info like channel title, ect ( this is not required but twitch API info will\nnot be available without it )\n\n`nick` is the twitch accounts nickname\n\n`prefix` is the command prefix the bot will use for commands that dont use custom prefixes\n\n`default_balance `is the default balance for new users that dont already have a economy balance\n\n`owner` is the bot's owner\n\n`channels` in the twitch channels the bot will join\n\n`loyalty_interval` the interval for which the viewers will given currency for watching the stream, gives amount\nspecified by `loyalty_amount`\n\n`loyalty_amount` the amount of currency to give viewers every `loyalty_interval`\n\n`command_server_enabled` specifies if the command server should be enabled (see [Command Server](#command-server) for\nmore info)\n\n`command_server_port` the port for the command server\n\n`command_server_host` the host name (address) for the command server\n\n`disable_whispers` is this value is set to `true` all whispers will be converted to regular channel messages\n\n`use_command_whitelist` enabled or disables the command whitelist (see [Command Whitelist](#command-whitelist))\n\n`send_message_on_command_whitelist_deny` should the bot tell users when you try to use a non-whitelisted command?\n\n`command_whitelist` json array of commands whitelisted without their prefix (only applicable\nif [Command Whitelist](#command-whitelist) is enabled)\n\n# Permissions\n\nthe bot comes default with permission support\n\nthere are two ways to manage permissions,\n\n1. using chat commands\n2. editing JSON permission files\n\n## managing permissions using chat commands\n\nto add a permission group: `!addgroup `, ex: `!addgroup donators`\n\nto add a member to a group: `!addmember `, ex:\n`!addmember donators johndoe`\n\nto add a permission to a group: `!addperm `, ex:\n`!addperm donators slap`\n\nto remove a group: `!delgroup `, ex: `!delgroup donators`\n\nto remove a member from a group: `!delmember `, ex:\n`!delmember donators johndoe`\n\nto remove a permission from a group: `!delperm `, ex:\n`!delperm donators slap`\n\n### tip: revoking permission for a group (aka negating permissions)\n\nto revoke a permission for a group, add the same permission but with a - in front of it\n\nex: you can to prevent group B from using permission `feed` from group A.\n\nSimply add its negated version to group B: `-feed`, this PREVENTS group B from having the permission `feed` from group A\n\n## managing permission by editing the configs\n\nfind the `configs` folder the bot generated (will be in same directory as the script that run the bot)\n\ninside you will find `config.json` with the bot config values required for authentication with twitch and such\n\nif the bot has joined any channels then you will see file names that look like `CHANNELNAME_perms.json`\n\nfor this example i will use a `johndoe`\n\nso if you open `johndoe_perms.json` you will see this if you have not changed anything in it:\n\n```json\n{\n \"admin\": {\n \"name\": \"admin\",\n \"permissions\": [\n \"*\"\n ],\n \"members\": [\n \"johndoe\"\n ]\n }\n}\n```\n\n`name` is the name of the permission group\n\n`permissions` is the list of permissions the group has\n(\"*\" is the \"god\" permission, granting access to all bot commands)\n\n`members` is the members of the group\n\nto add more permission groups by editing the config you can just copy/paste the default one\n(be sure to remove the \"god\" permission if you dont them having access to all bot commands)\n\nso after copy/pasting the default group it will look like this\n(dont forget to separate the groups using `,`):\n\n```json\n{\n \"admin\": {\n \"name\": \"admin\",\n \"permissions\": [\n \"*\"\n ],\n \"members\": [\n \"johndoe\"\n ]\n },\n \"donator\": {\n \"name\": \"donator\",\n \"permissions\": [\n \"slap\"\n ],\n \"members\": [\n \"johndoe\"\n ]\n }\n}\n```\n\n# Reloading Permissions\n\nif the bot is running be sure to do `!reloadperms` to load the changes to the permission file\n\n# Command Server\n\nThe command server is a small Socket Server the bot host that lets the Command Console be able to make the bot send\nmessages given to it through a console. (see [Command Console](#command-console))\n\nThe server can be enabled or disabled through the config (see [Config](#config)), the server's port and host are\nspecified by the config file\n\n# Command Console\n\nIf the [Command Server](#command-server) is disabled in the [config](#config) the Command Console cannot be used\n\nThe Command Console is used to make the bot send chat messages and commands\n\nTo launch the Command Console make sure the bot is running, and the [Command Server](#command-server) is enabled in\nthe [Config](#config),\n\nafter verifying these are done, simply do `python command_console.py` to open the console, upon opening it you will be\nprompted to select a twitch channel that the bot is currently connected to.\n\nafter choose the channel the prompt changes to `(CHANNEL_HERE):` and you are now able to send chat messages / commands\nto the choosen channel by typing your message and pressing enter\n\n# Database Support\n\nto enabled database support\n\n* open `configs/database_config.json` (if its missing run the bot and close it, this should\n generate `database_config.json`)\n* set `enabled` to `true`\n* fill in `address`, `port`, `username`, `password`, and `database` (you will need to edit `driver`/`database_format` if\n you use something other than mysql or sqlite)\n* install the mysql library (if needed) FOR MYSQL INSTALL: `pip install --upgrade --user mysql-connector-python`, or any\n other database supported by sqlalchemy, see the\n sqlalchemy [engines](https://docs.sqlalchemy.org/en/13/core/engines.html). like for example POSTGRES:\n `pip install --upgrade psycopg2`\n* rerun the bot\n\n# Command Whitelist\n\nCommand whitelist is a optional feature that only allows certain commands to be used (specified in the config)\n\nit is disabled by default, but can be enabled by setting `use_command_whitelist` to `true` in `configs/config.json`\n\nCommand Whitelist limits what commands are enabled / usable on the bot\n\nif a command that is not whitelisted is ran, it will tell the command caller that it is not whitelisted\nif `send_message_on_command_whitelist_deny` is set to `true`, otherwise it will silently NOT RUN the command\n\nwhitelisted commands can be edited with the `command_whitelist` json-array in `configs/config.json`\n\nto edit the command whitelist, you can add or remove elements from the `command_whitelist` json-array, do not include\nthe command's prefix, AKA `!command` becomes `command` in `command_whitelist`\n\n### To reload the whitelist, restart the bot, or do `!reloadcmdwhitelist` in your the twitch chat (requires having `manage_commands` permission)\n\n# Twitch PubSub Client\n\n## what is pubsub?\n\npubsub is the way twitch sends certain events to subscribers to the topic it originates from\n\nall topics are listed under the `PubSubTopics`\nenum [found here](https://github.com/sharkbound/PythonTwitchBotFramework/blob/master/twitchbot/pubsub/topics.py)\n\n## Requirements\n\n### Step 1: creating a developer application\n\nto create a twitch developer application [generate one here](https://dev.twitch.tv/console/apps), this requires the\naccount have two-factor enabled\n\n1. visit [https://dev.twitch.tv/console/apps](https://dev.twitch.tv/console/apps)\n1. click `+ Register new application`\n1. for redirect uri set it as `https://twitchapps.com/tmi/`, then click `add`\n1. for the purpose of the application, select `Chat Bot`\n1. for name, you can do anything, as long as it does not contain `twitch` in it\n1. finally, create the application\n\n## Step 2: generating a new irc oauth access token with the new client_id\n\nthis step is needed because twitch requires that oauth tokens used in API calls be generated the client_id sent in the\napi request\n\nafter you create the application click it and copy its client id, then paste it into the bot's config.json file located\nat `configs/config.json` for the field `client_id`, like so:\n\n```json\n{\n \"client_id\": \"CLIENT_ID_HERE\"\n}\n```\n\nnow you need to generate a oauth for the bot's primary irc oauth that matches the client_id, there is a utility i\nmade [HERE](https://github.com/sharkbound/PythonTwitchBotFramework/blob/master/util/token_utils.py) to help with token\nauthorization URL generation\n\nusing that utility, add this code to the bottom of the util script .py file, you would generate the URL like so:\n\n```python\nprint(generate_irc_oauth('CLIENT_ID_HERE', 'REDIRECT_URI_HERE'))\n```\n\nOR just replace the values in this auth url:\n\n```\nhttps://id.twitch.tv/oauth2/authorize?response_type=token&client_id=&redirect_uri=&scope=chat:read+chat:edit+channel:moderate+whispers:read+whispers:edit+channel_editor\n```\n\nopen a browser window that is logged into your bot account and visit the values-replaced authorization URL\n\nafter you authorize it, copy the oauth access token and paste it into the bot's config for the value of `oauth`, ex:\n\n```json\n{\n \"oauth\": \"oauth:\"\n}\n```\n\nthis ensures that API calls still work.\n\n## Step 3: creating the pubsub oauth access token\n\nthis oauth token is responsible for actually allowing the bot to access oauth topics on a specific channel\n\nthe list of scopes needed for different topics can be found [HERE](https://dev.twitch.tv/docs/pubsub#topics), each topic\nhas its own scope it needs, all the scope permissions as strings for my util script can be found here:\n[https://github.com/sharkbound/PythonTwitchBotFramework/blob/master/util/token_utils.py#L4](https://github.com/sharkbound/PythonTwitchBotFramework/blob/master/util/token_utils.py#L4)\n\n(if you dont want to use the util script just use this url and add the needed\ninfo: `https://id.twitch.tv/oauth2/authorize?response_type=token&client_id={client_id}&redirect_uri={redirect}&scope={scopes}`\n, scopes are separated with a + in the url)\n\n(the following will use my util script, this also assumes you have downloaded/copied the token utility script as well)\n\nto create the pubsub token, first decide on WHAT topics it needs to listen to, i will use `PubSubTopics.channel_points`\nwith this example\n\nusing the utility script, you can call `generate_auth_url` to generate the authorization URL for you\n\n```python\nprint(generate_auth_url('CLIENT_ID_HERE', 'REDIRECT_URI_HERE', Scopes.PUBSUB_CHANNEL_POINTS))\n```\n\n### Required OAuth Scopes for PubSub topics\n\n```\n|____________________________|______________________________|\n| TOPIC | REQUIRED OAUTH SCOPE |\n|____________________________|______________________________|\nfollowers -> channel_editor\npolls -> channel_editor\nbits -> bits:read\nbits badge notification -> bits:read\nchannel points -> channel:read:redemptions\ncommunity channel points -> (not sure, seems to be included in the irc oauth)\nchannel subscriptions -> channel_subscriptions\nchat (aka moderation actions) -> channel:moderate\nwhispers -> whispers:read\nchannel subscriptions -> channel_subscriptions\n```\n\nthe `[PubSubTopics.channel_points]` is the list of scopes to add to the authorization request url\n\nafter the URL is printed, copy it and visit/send the url to owner of the channel that you want pubsub access to\n\nin the case of it being your own channel its much more simple, since you just need to visit it on your main account and\ncopy the oauth access code\n\n## Using the pubsub oauth\n\n1. go to the bot's folder/directory on the computer running\n1. look for the `mods` folder\n1. create `pubsub_subscribe.py` in the `mods` directory\n1. paste the following template in it:\n\n```python\nfrom twitchbot import PubSubTopics, Mod, get_pubsub\n\n\nclass PubSubSubscriberMod(Mod):\n async def on_connected(self):\n await get_pubsub().listen_to_channel('CHANNEL_HERE', [PubSubTopics.channel_points],\n access_token='PUBSUB_OAUTH_HERE')\n\n # only needed in most cases for verifying a connection\n # this can be removed once verified\n async def on_pubsub_received(self, raw: 'PubSubData'):\n # this should print any errors received from twitch\n print(raw.raw_data)\n```\n\nafter a successful pubsub connection is established, you can override the appropriate event (some pubsub topics dont\nhave a event yet, so use on_pubsub_received for those)\n\nfollowing the above example we will override the `Event.on_pubsub_custom_channel_point_reward` event\n\n```python\nfrom twitchbot import PubSubTopics, Mod, get_pubsub\n\n\nclass PubSubSubscriberMod(Mod):\n async def on_connected(self):\n await get_pubsub().listen_to_channel('CHANNEL_HERE', [PubSubTopics.channel_points],\n access_token='PUBSUB_OAUTH_HERE')\n\n # only needed in most cases for verifying a connection\n # this can be removed once verified\n async def on_pubsub_received(self, raw: 'PubSubData'):\n # this should print any errors received from twitch\n print(raw.raw_data)\n\n # twitch only sends non-default channel point rewards over pubsub \n async def on_pubsub_custom_channel_point_reward(self, raw: 'PubSubData', data: 'PubSubPointRedemption'):\n print(f'{data.user_display_name} has redeemed {data.reward_title}')\n```\n\nthat pretty much summarized how to use pubsub, if you have any more questions, or need help, do visit my discord server\nor subreddit (found at top of this readme)\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/sharkbound/PythonTwitchBotFramework", "keywords": "", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "PythonTwitchBotFramework", "package_url": "https://pypi.org/project/PythonTwitchBotFramework/", "platform": null, "project_url": "https://pypi.org/project/PythonTwitchBotFramework/", "project_urls": { "Homepage": "https://github.com/sharkbound/PythonTwitchBotFramework" }, "release_url": "https://pypi.org/project/PythonTwitchBotFramework/2.4.4/", "requires_dist": [ "aiohttp", "sqlalchemy", "websockets", "dataclasses ; python_version < \"3.7\"" ], "requires_python": ">=3.6", "summary": "asynchronous twitch-bot framework made in pure python", "version": "2.4.4", "yanked": false, "yanked_reason": null }, "last_serial": 13834822, "releases": { "1.0.1": [ { "comment_text": "", "digests": { "md5": "8776abe094676f61f5b2c653a7da94e6", "sha256": "b632da3644934a7bc023bd2d0e557578d6915c78a3b5bf82387b3eb1ee589cce" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.0.1-py3-none-any.whl", "has_sig": false, "md5_digest": "8776abe094676f61f5b2c653a7da94e6", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 40119, "upload_time": "2019-03-31T02:38:24", "upload_time_iso_8601": "2019-03-31T02:38:24.729164Z", "url": "https://files.pythonhosted.org/packages/38/38/482a844621b9fe3d7c9bd83dd3c43b9ef0736161be7d0a9d35e2692ac7f6/PythonTwitchBotFramework-1.0.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ed701058cde8d5a4efb54a3561330acf", "sha256": "77120cdb7d9f38aa86b6aaa6b82c8a932cdc25d5f3e204bc8d56207f50d8e9b7" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.0.1.tar.gz", "has_sig": false, "md5_digest": "ed701058cde8d5a4efb54a3561330acf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27691, "upload_time": "2019-03-31T02:38:26", "upload_time_iso_8601": "2019-03-31T02:38:26.919385Z", "url": "https://files.pythonhosted.org/packages/7e/23/4da5196582c3f432e844d1e43b7a8f6f17ca3b82de914707c3dfe22d78af/PythonTwitchBotFramework-1.0.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.2": [ { "comment_text": "", "digests": { "md5": "629896ace045a778c23ed5c0078c9754", "sha256": "a49d1447fb9192912cab658e819d591f6f1cfdf34cf6bcc5d73e6ebded11164d" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.0.2-py3-none-any.whl", "has_sig": false, "md5_digest": "629896ace045a778c23ed5c0078c9754", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 40706, "upload_time": "2019-04-09T19:43:49", "upload_time_iso_8601": "2019-04-09T19:43:49.777746Z", "url": "https://files.pythonhosted.org/packages/cd/40/8e57681f04c6f4a648cc60bfa87ca29052b72bd92d027014825967be6084/PythonTwitchBotFramework-1.0.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2395706a35b398de23269de006b482ac", "sha256": "bf2cf245e6f356afdf7a71611e6fc0f02200cd81ea665a82a7a50f0c842f3783" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.0.2.tar.gz", "has_sig": false, "md5_digest": "2395706a35b398de23269de006b482ac", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28279, "upload_time": "2019-04-09T19:43:51", "upload_time_iso_8601": "2019-04-09T19:43:51.212052Z", "url": "https://files.pythonhosted.org/packages/01/40/a5dc68d7caf382efa2a6a7bc59df100744c91a0a890a3582f38483c15f36/PythonTwitchBotFramework-1.0.2.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.3": [ { "comment_text": "", "digests": { "md5": "c937fae9110274b50f2da85d8806a084", "sha256": "a92b18a1c0198fea403d897683133ab9d59098921be448502bade57ceaa824a6" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.0.3-py3-none-any.whl", "has_sig": false, "md5_digest": "c937fae9110274b50f2da85d8806a084", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 40981, "upload_time": "2019-04-23T21:18:13", "upload_time_iso_8601": "2019-04-23T21:18:13.191751Z", "url": "https://files.pythonhosted.org/packages/38/6a/ff8cc41c8f0ee0c8f8f68ec537579b4dd38059698f643349875fd487fa23/PythonTwitchBotFramework-1.0.3-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "519b39f5faecf31189e480cb78608336", "sha256": "6c34b60e94625e89880327706d0fc74b39638847c4b513ec770e681250d262b3" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.0.3.tar.gz", "has_sig": false, "md5_digest": "519b39f5faecf31189e480cb78608336", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28569, "upload_time": "2019-04-23T21:18:15", "upload_time_iso_8601": "2019-04-23T21:18:15.301124Z", "url": "https://files.pythonhosted.org/packages/cd/b3/9121dc47ba19d3c260479c090e3336b96247477356141f2e5966185d97f9/PythonTwitchBotFramework-1.0.3.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.4": [ { "comment_text": "", "digests": { "md5": "10af513c8fea55281d6cf9d81bb6bd3b", "sha256": "46f9863adbc7eae2adf31702df429a30d40e75517653dfedf2901bbbec7d716f" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.0.4-py3-none-any.whl", "has_sig": false, "md5_digest": "10af513c8fea55281d6cf9d81bb6bd3b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 43152, "upload_time": "2019-05-27T04:47:28", "upload_time_iso_8601": "2019-05-27T04:47:28.041165Z", "url": "https://files.pythonhosted.org/packages/8d/eb/53d29502a98f5ef8e0a2c14bebd834f645711ca68665174a72a39b8c2d2a/PythonTwitchBotFramework-1.0.4-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e27b0d140a2545906de540030cc59afd", "sha256": "be708a9ce86e8fad7e1613ece1ba7efc2d2b227d64dc3ac5988b67dd3f696488" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.0.4.tar.gz", "has_sig": false, "md5_digest": "e27b0d140a2545906de540030cc59afd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 30139, "upload_time": "2019-05-27T04:47:29", "upload_time_iso_8601": "2019-05-27T04:47:29.812221Z", "url": "https://files.pythonhosted.org/packages/41/9b/206ee2611d48c3ae6c48b5ca234cbffee1434eecc607810b64ed42d1ee52/PythonTwitchBotFramework-1.0.4.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.5": [ { "comment_text": "", "digests": { "md5": "f2e4429b8e9608d854cf522f334a0bff", "sha256": "77c62b2e934687eb4983ee303e0911ec8432ec43a6978d60b9c39a97fce2c1a4" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.0.5-py3-none-any.whl", "has_sig": false, "md5_digest": "f2e4429b8e9608d854cf522f334a0bff", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 43888, "upload_time": "2019-05-28T04:18:00", "upload_time_iso_8601": "2019-05-28T04:18:00.121687Z", "url": "https://files.pythonhosted.org/packages/0f/6c/97154a5da3765f8bac6549fa0d0d846ae943f08d149846cda985049071c4/PythonTwitchBotFramework-1.0.5-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "418bc7a03b2a1345190f0a63daabd6ca", "sha256": "50defe6ed2394a1097261d8a9ae50caf08f5b053995cb7ec95deeb2c83aba94f" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.0.5.tar.gz", "has_sig": false, "md5_digest": "418bc7a03b2a1345190f0a63daabd6ca", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 30694, "upload_time": "2019-05-28T04:18:02", "upload_time_iso_8601": "2019-05-28T04:18:02.094472Z", "url": "https://files.pythonhosted.org/packages/23/13/95df13e865ca129b7502eef5c4098fb12743486be0fb1c425b492b2516a8/PythonTwitchBotFramework-1.0.5.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.6": [ { "comment_text": "", "digests": { "md5": "b9ad3e1fa6166e315f129f80b52e0453", "sha256": "a5f9bbac1a29904f6db43a88486ac2c29288392f3bf40df299aeb2415f540db3" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.0.6-py3-none-any.whl", "has_sig": false, "md5_digest": "b9ad3e1fa6166e315f129f80b52e0453", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 57585, "upload_time": "2019-05-29T22:36:27", "upload_time_iso_8601": "2019-05-29T22:36:27.688504Z", "url": "https://files.pythonhosted.org/packages/05/30/cbaa70366072ecbc3f4482c9680bd1c235363c3872c4e99f4e69d1faa89a/PythonTwitchBotFramework-1.0.6-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2d1d9d04d867477c2375253765385bb2", "sha256": "21892a21153cbbf080d664a5f6e994fdcd82e4c321539b8af3536c69ffa651c7" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.0.6.tar.gz", "has_sig": false, "md5_digest": "2d1d9d04d867477c2375253765385bb2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 38710, "upload_time": "2019-05-29T22:36:29", "upload_time_iso_8601": "2019-05-29T22:36:29.486202Z", "url": "https://files.pythonhosted.org/packages/d7/ee/e2e201f7edb840eb9622b57c3f7ad91159e105c3cee3eea49405f58a36d2/PythonTwitchBotFramework-1.0.6.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.7": [ { "comment_text": "", "digests": { "md5": "216c621c666da90bfddfe4535e89dcd4", "sha256": "b0e683fff200f63742e73541d03072f3314f7424a24ff3d358fdde79dd9bed8f" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.0.7-py3-none-any.whl", "has_sig": false, "md5_digest": "216c621c666da90bfddfe4535e89dcd4", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 58848, "upload_time": "2019-05-30T04:09:35", "upload_time_iso_8601": "2019-05-30T04:09:35.658544Z", "url": "https://files.pythonhosted.org/packages/d5/42/c4847edbdaf0fb76e5acb8693fc755cce92cce6e314ec0efb9b99bab077c/PythonTwitchBotFramework-1.0.7-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "452bb68ca8e867b23360c88bb94faab2", "sha256": "8d341a584e1af7b2da89986a249350a4529238498897b9eca56e660543adbc3b" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.0.7.tar.gz", "has_sig": false, "md5_digest": "452bb68ca8e867b23360c88bb94faab2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 39528, "upload_time": "2019-05-30T04:09:37", "upload_time_iso_8601": "2019-05-30T04:09:37.437658Z", "url": "https://files.pythonhosted.org/packages/45/08/d0ba130ef7e038bab8878a10d363d4ed478f30b07205c58d5dbf0d617938/PythonTwitchBotFramework-1.0.7.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.8": [ { "comment_text": "", "digests": { "md5": "bbdbef3e8c76b256711f05d7aed04e29", "sha256": "2a62a6ebe6933f6210d9fe47e848c52ba0b06339025a91b01957f52be182b922" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.0.8-py3-none-any.whl", "has_sig": false, "md5_digest": "bbdbef3e8c76b256711f05d7aed04e29", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 59459, "upload_time": "2019-06-01T00:12:05", "upload_time_iso_8601": "2019-06-01T00:12:05.164197Z", "url": "https://files.pythonhosted.org/packages/2e/a6/6b8572d7e480c00bf6cfd92a74a56e3b834c36472ef22625a1aeeae57d5e/PythonTwitchBotFramework-1.0.8-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1556f93c6678451d9137461c45171717", "sha256": "b625293c9d16ea46217c8322791851686e6b0abf7ffee039ea0b737fe63f9a2f" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.0.8.tar.gz", "has_sig": false, "md5_digest": "1556f93c6678451d9137461c45171717", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 40157, "upload_time": "2019-06-01T00:12:07", "upload_time_iso_8601": "2019-06-01T00:12:07.086717Z", "url": "https://files.pythonhosted.org/packages/18/89/54e5e1bfd5999d63edfa939aabd7ff173b8ed76ec13a9a67cbb9523d4c34/PythonTwitchBotFramework-1.0.8.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.9": [ { "comment_text": "", "digests": { "md5": "50f5c2d11b603cd7e621f4236ed70249", "sha256": "8d695c7832b893f85ba18381da4959c12a85edbe1e735c74125c561ed1015ccd" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.0.9-py3-none-any.whl", "has_sig": false, "md5_digest": "50f5c2d11b603cd7e621f4236ed70249", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 60111, "upload_time": "2019-06-24T23:00:01", "upload_time_iso_8601": "2019-06-24T23:00:01.502996Z", "url": "https://files.pythonhosted.org/packages/8a/cc/e45a13ca5c8f8fcebedca527f634d6021c0ffc1cfebce49bdded7b2fd47b/PythonTwitchBotFramework-1.0.9-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ca4725c841ac98b6d9217b2cb59fa10a", "sha256": "115605cbd753bad94f7e63121a017386dac4abbec79882eb4ac0579ca56d6a88" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.0.9.tar.gz", "has_sig": false, "md5_digest": "ca4725c841ac98b6d9217b2cb59fa10a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 40913, "upload_time": "2019-06-24T23:00:03", "upload_time_iso_8601": "2019-06-24T23:00:03.456291Z", "url": "https://files.pythonhosted.org/packages/a6/1c/482425316396a709312298f5adaef10d7beb7f625227818923ea8371c8da/PythonTwitchBotFramework-1.0.9.tar.gz", "yanked": false, "yanked_reason": null } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "621d833ba11e016ba328f1454fda8908", "sha256": "a059ea528df39fe65e3ce3c9c21fde1674bf4bf26fa16602f130cf11c7436892" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.1.0-py3-none-any.whl", "has_sig": false, "md5_digest": "621d833ba11e016ba328f1454fda8908", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 60109, "upload_time": "2019-06-24T23:03:28", "upload_time_iso_8601": "2019-06-24T23:03:28.522231Z", "url": "https://files.pythonhosted.org/packages/c0/4e/1154b23d990e00edaa878aa7f309988300055bf2fdc74116641862586f67/PythonTwitchBotFramework-1.1.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9253b1fb9266eabc94d02b1b0b14a4ca", "sha256": "ffab7d6ee751573d815084f49f20278bb8a67e843c772d01ce459ec748c4a3f9" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.1.0.tar.gz", "has_sig": false, "md5_digest": "9253b1fb9266eabc94d02b1b0b14a4ca", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 40922, "upload_time": "2019-06-24T23:03:30", "upload_time_iso_8601": "2019-06-24T23:03:30.330361Z", "url": "https://files.pythonhosted.org/packages/f6/2b/bfa2463107b940def9fec990c63fc34f435f1c2774ad2e217665a17ae8a7/PythonTwitchBotFramework-1.1.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.1.1": [ { "comment_text": "", "digests": { "md5": "51826900f67804d98f3081766a90def1", "sha256": "735e02d706ec2e039bc59a230c68bfe1b6f139407fcdd10e3ad9beee3a303b2c" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.1.1-py3-none-any.whl", "has_sig": false, "md5_digest": "51826900f67804d98f3081766a90def1", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 60179, "upload_time": "2019-06-26T01:31:30", "upload_time_iso_8601": "2019-06-26T01:31:30.827021Z", "url": "https://files.pythonhosted.org/packages/85/93/49e56359a79e0f3c589afec808612d8a6fcca0304e77b4384bc1f5eefde6/PythonTwitchBotFramework-1.1.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ff48af8e48af30ccbbe5713ab43ed6bf", "sha256": "7d11570e5c40290a881c2a04f6d9642b00587fa3c7b8801215db273c725ab43d" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.1.1.tar.gz", "has_sig": false, "md5_digest": "ff48af8e48af30ccbbe5713ab43ed6bf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 40980, "upload_time": "2019-06-26T01:31:32", "upload_time_iso_8601": "2019-06-26T01:31:32.727417Z", "url": "https://files.pythonhosted.org/packages/25/19/da76341045b85c95490e2a77efb7fbd6cbf8e06cad1fdbc6d0a6042829f0/PythonTwitchBotFramework-1.1.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.1.2": [ { "comment_text": "", "digests": { "md5": "4ca9b1d95a9537ba006235d6e4c854e7", "sha256": "1eff2e40298b2bba20715c96bad3118ee6180eec258d8cb9bb6668ce5a0b9d40" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.1.2-py3-none-any.whl", "has_sig": false, "md5_digest": "4ca9b1d95a9537ba006235d6e4c854e7", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 60771, "upload_time": "2019-07-03T18:45:15", "upload_time_iso_8601": "2019-07-03T18:45:15.490510Z", "url": "https://files.pythonhosted.org/packages/a3/63/f64adf4683fe62ef86d089f64e5f9d8ec7ac0e4f9eb92dc5df39b1e87a8b/PythonTwitchBotFramework-1.1.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "49dc5c7abfe0c39cb8f54a1fe3fb0079", "sha256": "f267131b3bb242e023e0e081e978451f926e1f3bb78b4c09fd90a1d1131d2746" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.1.2.tar.gz", "has_sig": false, "md5_digest": "49dc5c7abfe0c39cb8f54a1fe3fb0079", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 41548, "upload_time": "2019-07-03T18:45:17", "upload_time_iso_8601": "2019-07-03T18:45:17.438414Z", "url": "https://files.pythonhosted.org/packages/54/1f/f9dea0a0a9661282584b4766aa4028568e85ad4b6c05ecdfb6f421a76397/PythonTwitchBotFramework-1.1.2.tar.gz", "yanked": false, "yanked_reason": null } ], "1.1.3": [ { "comment_text": "", "digests": { "md5": "21038ffe75ec2176012ee1aa66ade10d", "sha256": "b1f4894c2bc2a72d294391a61fc7481a3ea77dce70063bcb8da1e169d76ff459" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.1.3-py3-none-any.whl", "has_sig": false, "md5_digest": "21038ffe75ec2176012ee1aa66ade10d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 60782, "upload_time": "2019-07-03T20:39:19", "upload_time_iso_8601": "2019-07-03T20:39:19.826144Z", "url": "https://files.pythonhosted.org/packages/76/bd/04b4613219867994e07797e8eb79667f9c610f5bc4dbbecaa54540244ccc/PythonTwitchBotFramework-1.1.3-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7d4f549d02248e76d8b27a61e621f708", "sha256": "e1f49e7206076c88983abe5eb955742b063f715cd6f7c481355c07937f956cac" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.1.3.tar.gz", "has_sig": false, "md5_digest": "7d4f549d02248e76d8b27a61e621f708", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 41550, "upload_time": "2019-07-03T20:39:21", "upload_time_iso_8601": "2019-07-03T20:39:21.564450Z", "url": "https://files.pythonhosted.org/packages/44/20/722e004a6b2d4e44020bd02e5cc3447c6ebb58849de09330d24dbc9ac2f5/PythonTwitchBotFramework-1.1.3.tar.gz", "yanked": false, "yanked_reason": null } ], "1.1.4": [ { "comment_text": "", "digests": { "md5": "6564a5f58c751634375a9fa8a81ca6f6", "sha256": "8b1ddd99540d9c383ac80eafa18994f28ea509b8408220ceee346ecc3e4a4901" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.1.4-py3-none-any.whl", "has_sig": false, "md5_digest": "6564a5f58c751634375a9fa8a81ca6f6", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 61031, "upload_time": "2019-07-04T02:01:36", "upload_time_iso_8601": "2019-07-04T02:01:36.950347Z", "url": "https://files.pythonhosted.org/packages/e6/c6/c380636e970f36b47387324d3150d96b1416d58d9663a9a59a1472f413d9/PythonTwitchBotFramework-1.1.4-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "82e9b04e09ea09c3e8a0859a69dc3580", "sha256": "03b1141937a8642a496a6c161cef155c0166f97b17c4240656aecd8a387b63e5" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.1.4.tar.gz", "has_sig": false, "md5_digest": "82e9b04e09ea09c3e8a0859a69dc3580", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 41786, "upload_time": "2019-07-04T02:01:38", "upload_time_iso_8601": "2019-07-04T02:01:38.842787Z", "url": "https://files.pythonhosted.org/packages/88/e3/0496dc043c85228468aed9c06f007c177bce4dcb78b9d82e10f6130ded3a/PythonTwitchBotFramework-1.1.4.tar.gz", "yanked": false, "yanked_reason": null } ], "1.10": [ { "comment_text": "", "digests": { "md5": "2ef2409cd82e579c128a0d48305fdf20", "sha256": "1c2f5eb750a3b2cbe1aa5cec89f19080de1b7f5f4461af66a486643a8460463e" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.10-py3-none-any.whl", "has_sig": false, "md5_digest": "2ef2409cd82e579c128a0d48305fdf20", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 71142, "upload_time": "2020-03-03T20:17:30", "upload_time_iso_8601": "2020-03-03T20:17:30.431429Z", "url": "https://files.pythonhosted.org/packages/53/be/71a62806c33b3907159d5bf45f3cf57418c38aad5bd82762d2312bdcdf72/PythonTwitchBotFramework-1.10-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "945fb916ec6a004be050cad847dca161", "sha256": "844b50b54be482c87e171a0c9760ec38a45953bb91cc07a9125989455cb8ba04" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.10.tar.gz", "has_sig": false, "md5_digest": "945fb916ec6a004be050cad847dca161", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 52868, "upload_time": "2020-03-03T20:17:32", "upload_time_iso_8601": "2020-03-03T20:17:32.355530Z", "url": "https://files.pythonhosted.org/packages/6e/b7/6d385e9aed1d1340ebca973c2086a4d451da1676eaec971788a4fb57c7ff/PythonTwitchBotFramework-1.10.tar.gz", "yanked": false, "yanked_reason": null } ], "1.10.1": [ { "comment_text": "", "digests": { "md5": "d1d86547d765288fff5e574d4bc5c795", "sha256": "2fea019a59aa9ae6ae5675dc6f1a26e50320911243a0774dc44a91215a094d83" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.10.1-py3-none-any.whl", "has_sig": false, "md5_digest": "d1d86547d765288fff5e574d4bc5c795", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 71450, "upload_time": "2020-03-06T05:50:50", "upload_time_iso_8601": "2020-03-06T05:50:50.085064Z", "url": "https://files.pythonhosted.org/packages/8e/05/9caf104a9f8eea0739f58abfaf173b3c398080e1aa8235f48b8e21258a60/PythonTwitchBotFramework-1.10.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0e9eda74b723adca6c707fa542ee2c34", "sha256": "d6267f61e4c37c02ba48def0ded23ede257683ff6591999719f286857b2f84fa" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.10.1.tar.gz", "has_sig": false, "md5_digest": "0e9eda74b723adca6c707fa542ee2c34", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 53138, "upload_time": "2020-03-06T05:50:51", "upload_time_iso_8601": "2020-03-06T05:50:51.973142Z", "url": "https://files.pythonhosted.org/packages/b2/22/acaf4e703654f27d2fe9ffbcde60421fcdd2e7904b77f51847f63db90cf8/PythonTwitchBotFramework-1.10.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.10.2": [ { "comment_text": "", "digests": { "md5": "365eabf6ebb2d6fd5783da8398dcb329", "sha256": "08075da4e49f45dd175917ccbf12bbc783cacfb9a24a1bd42d9f8d0b914dc286" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.10.2-py3-none-any.whl", "has_sig": false, "md5_digest": "365eabf6ebb2d6fd5783da8398dcb329", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 72377, "upload_time": "2020-03-06T17:33:03", "upload_time_iso_8601": "2020-03-06T17:33:03.016543Z", "url": "https://files.pythonhosted.org/packages/3f/d1/8cdcd1d8abbd3e2afd7e8751217fff241657b7ba76d39e902401d9c200ab/PythonTwitchBotFramework-1.10.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ecd21614728dffa5e0c804e99b12b1f7", "sha256": "a2b4dfcf8b97400ed5d3fe3a4e3eab50f52fcc9587c9a3d98517fadf0ae40fb4" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.10.2.tar.gz", "has_sig": false, "md5_digest": "ecd21614728dffa5e0c804e99b12b1f7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 53793, "upload_time": "2020-03-06T17:33:04", "upload_time_iso_8601": "2020-03-06T17:33:04.874402Z", "url": "https://files.pythonhosted.org/packages/35/b8/75f765f229fe42001b3f8d7b8b1297afc841c1112c5beb03413b77c68b69/PythonTwitchBotFramework-1.10.2.tar.gz", "yanked": false, "yanked_reason": null } ], "1.11.0": [ { "comment_text": "", "digests": { "md5": "7eb46e5cdb8cbb73459e7cd562129d85", "sha256": "645e51fb32a3835aa7845fc73214cb4b5cd36044827c1540f13c38fa75e0287f" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.11.0-py3-none-any.whl", "has_sig": false, "md5_digest": "7eb46e5cdb8cbb73459e7cd562129d85", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 73626, "upload_time": "2020-04-13T01:50:37", "upload_time_iso_8601": "2020-04-13T01:50:37.262275Z", "url": "https://files.pythonhosted.org/packages/48/b9/eb076cdbf1cb4b61c4a920f7736e9ded3f65fef73abdee06fd9fca957f03/PythonTwitchBotFramework-1.11.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "de9fc0b545e6c87ad802cd8fe6ee6806", "sha256": "ca2040f0f8673607965d7312ef780f8e00d56cf038a081cbda74eaafb78e4265" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.11.0.tar.gz", "has_sig": false, "md5_digest": "de9fc0b545e6c87ad802cd8fe6ee6806", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 55881, "upload_time": "2020-04-13T01:50:38", "upload_time_iso_8601": "2020-04-13T01:50:38.923946Z", "url": "https://files.pythonhosted.org/packages/eb/7e/35e90acdd612b679496745b155593ce0bf1ccd4f2471cdeed22c8a4ba818/PythonTwitchBotFramework-1.11.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.11.1": [ { "comment_text": "", "digests": { "md5": "32709a33bb797943c5c7a9984a8a8877", "sha256": "086b8f4d1e2703e84a7f1e87cf1d53ef526ec66b5a3d5c523ca1dc87f304add3" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.11.1-py3-none-any.whl", "has_sig": false, "md5_digest": "32709a33bb797943c5c7a9984a8a8877", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 73783, "upload_time": "2020-05-08T03:33:40", "upload_time_iso_8601": "2020-05-08T03:33:40.065086Z", "url": "https://files.pythonhosted.org/packages/a8/ec/30aa7305e40647406341bef0553ec022d4e0e63545a1d9c2ad89f59698a7/PythonTwitchBotFramework-1.11.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "65909e5ec505ac7cf141d58d004da811", "sha256": "b114fe64b537abfc2a4429b773aceaea35dcef56937519baf039373bd415c65d" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.11.1.tar.gz", "has_sig": false, "md5_digest": "65909e5ec505ac7cf141d58d004da811", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 56069, "upload_time": "2020-05-08T03:33:41", "upload_time_iso_8601": "2020-05-08T03:33:41.678746Z", "url": "https://files.pythonhosted.org/packages/e0/29/2fee4c2fe6f8ef5beb3cb343bc5045e1841869521fc5179348520a67f5c5/PythonTwitchBotFramework-1.11.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.11.10": [ { "comment_text": "", "digests": { "md5": "1c9ea1a40d450c829b79508f7daec068", "sha256": "9d59a827e3654210170d2f91e8433df785e8ad591fc1ff4c9fbf75519f56b98a" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.11.10-py3-none-any.whl", "has_sig": false, "md5_digest": "1c9ea1a40d450c829b79508f7daec068", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 74302, "upload_time": "2020-05-21T13:28:57", "upload_time_iso_8601": "2020-05-21T13:28:57.092511Z", "url": "https://files.pythonhosted.org/packages/98/70/e693e7ab128ca8818a3e7f1b9db7332f8805ecfa8eec7fd8711edd014fd8/PythonTwitchBotFramework-1.11.10-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "dff9855501b04661b8d1f0388c0f0501", "sha256": "0717a58fcc9dde204ea7a2b5f45093d57cc58560abe3ba74d8f79e4951854c4a" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.11.10.tar.gz", "has_sig": false, "md5_digest": "dff9855501b04661b8d1f0388c0f0501", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 56768, "upload_time": "2020-05-21T13:28:58", "upload_time_iso_8601": "2020-05-21T13:28:58.847946Z", "url": "https://files.pythonhosted.org/packages/c3/39/6c277a0fd655449d11becba73e3ea7f6b3f0e188b7ceefd74dea757c3140/PythonTwitchBotFramework-1.11.10.tar.gz", "yanked": false, "yanked_reason": null } ], "1.11.11": [ { "comment_text": "", "digests": { "md5": "56ad8af5521f0d3b02ab2524a0a17d2b", "sha256": "d901ca4b83ce67a009e5e43cfec13da22018596585cccb617ef4ba8a9f1152f3" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.11.11-py3-none-any.whl", "has_sig": false, "md5_digest": "56ad8af5521f0d3b02ab2524a0a17d2b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 74409, "upload_time": "2020-05-25T02:37:38", "upload_time_iso_8601": "2020-05-25T02:37:38.160251Z", "url": "https://files.pythonhosted.org/packages/5b/2b/b965ed32732191075178a625b1a8a2d950ac7f15203c402901556e838edf/PythonTwitchBotFramework-1.11.11-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2ae5ca252e7e3928a6c6c21757f0a166", "sha256": "668aad0e5aabee28923c582d9b63d24221a19b237bbdd0676e255472cde6fbf8" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.11.11.tar.gz", "has_sig": false, "md5_digest": "2ae5ca252e7e3928a6c6c21757f0a166", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 57325, "upload_time": "2020-05-25T02:37:39", "upload_time_iso_8601": "2020-05-25T02:37:39.701039Z", "url": "https://files.pythonhosted.org/packages/88/46/0fe0a0c6289f1ccf069d265b582993795dfe90e0dae76174923cd5ef2650/PythonTwitchBotFramework-1.11.11.tar.gz", "yanked": false, "yanked_reason": null } ], "1.11.2": [ { "comment_text": "", "digests": { "md5": "836542733ad45bf72049489813411d78", "sha256": "72092aa6ef88f2a085aea28c8bcf884959e6cc442dcf208bbbd31b2cd81feae4" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.11.2-py3-none-any.whl", "has_sig": false, "md5_digest": "836542733ad45bf72049489813411d78", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 73798, "upload_time": "2020-05-08T03:57:10", "upload_time_iso_8601": "2020-05-08T03:57:10.159496Z", "url": "https://files.pythonhosted.org/packages/5e/12/b5cfca49cade33fc5ea556a65003f3ded040c6a776c30e5acceaf3a2e5b8/PythonTwitchBotFramework-1.11.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "208a44c4e251145b7061a75af2688282", "sha256": "3c53224ba4366a928a1cee7fd008455de5f090debdef7096a7f2572b3af1a143" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.11.2.tar.gz", "has_sig": false, "md5_digest": "208a44c4e251145b7061a75af2688282", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 56015, "upload_time": "2020-05-08T03:57:11", "upload_time_iso_8601": "2020-05-08T03:57:11.821662Z", "url": "https://files.pythonhosted.org/packages/4c/2b/c2f44453e8558fc5ff170d3a8574241582d7eea2991b42e221dcd36a3f2f/PythonTwitchBotFramework-1.11.2.tar.gz", "yanked": false, "yanked_reason": null } ], "1.11.3": [ { "comment_text": "", "digests": { "md5": "c81caaaa0547a06fe37fb515641cf8bd", "sha256": "45904f3c876ad5d0d712a5ab292f0407a91bbe7ccea22c539f884f10ed6c72bb" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.11.3-py3-none-any.whl", "has_sig": false, "md5_digest": "c81caaaa0547a06fe37fb515641cf8bd", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 73811, "upload_time": "2020-05-10T02:45:38", "upload_time_iso_8601": "2020-05-10T02:45:38.810302Z", "url": "https://files.pythonhosted.org/packages/2e/55/e2722ca08485e1cfa670e0f94dcef43370c99640a4c5727fc23364a5c47f/PythonTwitchBotFramework-1.11.3-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3a8181d4c2854bd9dff38ed65cf200e1", "sha256": "1aab2f76356d21b433d6c94c445e618cc729260d69c233ebee97e83398c816ab" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.11.3.tar.gz", "has_sig": false, "md5_digest": "3a8181d4c2854bd9dff38ed65cf200e1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 56175, "upload_time": "2020-05-10T02:45:40", "upload_time_iso_8601": "2020-05-10T02:45:40.634646Z", "url": "https://files.pythonhosted.org/packages/34/b5/d5e119fd7031653488af2379fec02c997cd4cf982af392aee9de770a3c9c/PythonTwitchBotFramework-1.11.3.tar.gz", "yanked": false, "yanked_reason": null } ], "1.11.4": [ { "comment_text": "", "digests": { "md5": "ee1affe4380b6ea21ef559ec61b8c6eb", "sha256": "78345fc2492bf5587c7a645e929c4d823ab11cd0108e433757f9dc711a773ec5" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.11.4-py3-none-any.whl", "has_sig": false, "md5_digest": "ee1affe4380b6ea21ef559ec61b8c6eb", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 73800, "upload_time": "2020-05-10T03:54:12", "upload_time_iso_8601": "2020-05-10T03:54:12.836534Z", "url": "https://files.pythonhosted.org/packages/75/1f/b77890314fc77b06d1b86ea39bc55adb2037293951c993925b9efe3b7eb4/PythonTwitchBotFramework-1.11.4-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b98088b162ad9fa793cee6904470d95a", "sha256": "f8d907c12a15a92404d9389053d0adfd54d8cd266bcfb2da3666ef4ac86507f7" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.11.4.tar.gz", "has_sig": false, "md5_digest": "b98088b162ad9fa793cee6904470d95a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 56075, "upload_time": "2020-05-10T03:54:14", "upload_time_iso_8601": "2020-05-10T03:54:14.186603Z", "url": "https://files.pythonhosted.org/packages/4a/44/5b5963aeae1f4a064f5370e1be65c28aa8903cdca52090586656712a4f0e/PythonTwitchBotFramework-1.11.4.tar.gz", "yanked": false, "yanked_reason": null } ], "1.11.5": [ { "comment_text": "", "digests": { "md5": "328c61f05ff51494ec951ee7bf5abf8f", "sha256": "022071a5b916fa28e80706f2e8e0cc411f9f5d5326b630d45f9d71d93822e370" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.11.5-py3-none-any.whl", "has_sig": false, "md5_digest": "328c61f05ff51494ec951ee7bf5abf8f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 73934, "upload_time": "2020-05-18T04:18:49", "upload_time_iso_8601": "2020-05-18T04:18:49.541483Z", "url": "https://files.pythonhosted.org/packages/db/e8/de3e071800e3c6e6ee2a73c98030515b1d3221a8c79b687f48c245c196db/PythonTwitchBotFramework-1.11.5-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "535e46e228ff6a654888d7a3ac43dd4e", "sha256": "60fd57ea6e1619550283c6348bf30b1981b5eddbe12099663d5d31ea707a8c0e" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.11.5.tar.gz", "has_sig": false, "md5_digest": "535e46e228ff6a654888d7a3ac43dd4e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 56265, "upload_time": "2020-05-18T04:18:51", "upload_time_iso_8601": "2020-05-18T04:18:51.105211Z", "url": "https://files.pythonhosted.org/packages/53/7b/eae83670b6c9cefc73e0688385eb719c02104c10a9b28fc18fa192141cb9/PythonTwitchBotFramework-1.11.5.tar.gz", "yanked": false, "yanked_reason": null } ], "1.11.6": [ { "comment_text": "", "digests": { "md5": "9b8393e8fd4451933194e5863f79a46c", "sha256": "9ad76bcd406b062805fba958c0cec80ec794d06225f46746a623d24690a83843" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.11.6-py3-none-any.whl", "has_sig": false, "md5_digest": "9b8393e8fd4451933194e5863f79a46c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 74029, "upload_time": "2020-05-19T04:38:40", "upload_time_iso_8601": "2020-05-19T04:38:40.953075Z", "url": "https://files.pythonhosted.org/packages/76/e6/2e4a1a60c9766a4e46f22f60f7c6558415c6c3285e7ca6ff0e42a99a92c1/PythonTwitchBotFramework-1.11.6-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a4238aa4286e83241e7e37713b843238", "sha256": "e1a741fcd3ddafd8e7a3403265fa65bb81febd4513c39d9485dea4a4750ef22f" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.11.6.tar.gz", "has_sig": false, "md5_digest": "a4238aa4286e83241e7e37713b843238", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 56390, "upload_time": "2020-05-19T04:38:42", "upload_time_iso_8601": "2020-05-19T04:38:42.244178Z", "url": "https://files.pythonhosted.org/packages/e2/91/838db9c25c634ebd795b63d37ef86da8feeb84b3961adb548f4a937066f3/PythonTwitchBotFramework-1.11.6.tar.gz", "yanked": false, "yanked_reason": null } ], "1.11.7": [ { "comment_text": "", "digests": { "md5": "467c3abc0547b7c46a0abf907376990c", "sha256": "872057739945ce7c4d9a0ec629923d37e4ca06ec2c3a91395869f424a06b2103" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.11.7-py3-none-any.whl", "has_sig": false, "md5_digest": "467c3abc0547b7c46a0abf907376990c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 74037, "upload_time": "2020-05-19T05:13:52", "upload_time_iso_8601": "2020-05-19T05:13:52.992477Z", "url": "https://files.pythonhosted.org/packages/d1/28/bb08fd2904ff28b95653d0f7cdd869a1ff23fd190f250ae291401863d955/PythonTwitchBotFramework-1.11.7-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f4f4434439a4015706a30ef912bb6c4f", "sha256": "6a477184bd14244fd440a51b178579666704a4402e6bd0074059fbfe018df078" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.11.7.tar.gz", "has_sig": false, "md5_digest": "f4f4434439a4015706a30ef912bb6c4f", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 56388, "upload_time": "2020-05-19T05:13:54", "upload_time_iso_8601": "2020-05-19T05:13:54.188547Z", "url": "https://files.pythonhosted.org/packages/58/2d/af4c6c74013e13911fe766411ec3a02d8f7b08086be8a89afe91b15bba9d/PythonTwitchBotFramework-1.11.7.tar.gz", "yanked": false, "yanked_reason": null } ], "1.11.7.1": [ { "comment_text": "", "digests": { "md5": "be71bd251d962bcf6524884d6fbdeefa", "sha256": "4d0f3c6eb1983f11ca9492c69f2c238074a05170c00b46a87b8720b48be905f4" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.11.7.1-py3-none-any.whl", "has_sig": false, "md5_digest": "be71bd251d962bcf6524884d6fbdeefa", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 74064, "upload_time": "2020-05-19T19:47:29", "upload_time_iso_8601": "2020-05-19T19:47:29.105433Z", "url": "https://files.pythonhosted.org/packages/88/23/3dadbec7d72f9b1b8bfb4b42ee8a7630ef941e5fea08b9ff3fa190505edb/PythonTwitchBotFramework-1.11.7.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "386ba3ce316b69162fff24511b165fb2", "sha256": "da19f0d48fcfee47104489e79e169472dafe85afc3e5070401b90dbacc877fef" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.11.7.1.tar.gz", "has_sig": false, "md5_digest": "386ba3ce316b69162fff24511b165fb2", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 56399, "upload_time": "2020-05-19T19:47:31", "upload_time_iso_8601": "2020-05-19T19:47:31.584752Z", "url": "https://files.pythonhosted.org/packages/2d/2b/cbd8847904137e1dae8b3763cb88fdc7580ed6c447cc2fa4f5f388c09e0f/PythonTwitchBotFramework-1.11.7.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.11.8": [ { "comment_text": "", "digests": { "md5": "00c3179864fd1580bd1c362485fc047f", "sha256": "1a64a8f708da6df659dddbd88f9bc279c5f90c0dcac7acfd37592d7010d07c60" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.11.8-py3-none-any.whl", "has_sig": false, "md5_digest": "00c3179864fd1580bd1c362485fc047f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 74037, "upload_time": "2020-05-19T19:51:19", "upload_time_iso_8601": "2020-05-19T19:51:19.531741Z", "url": "https://files.pythonhosted.org/packages/01/40/96f31aab95c060700f9d44856a823dc73ee70667e8d4dedb575ae6d065e0/PythonTwitchBotFramework-1.11.8-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5a0dcae79a490e0449f6396fdbaf5641", "sha256": "9e5d8a87e2235afadac8980a4197e2a33c261630d3c736cdaf98bc32f1e30632" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.11.8.tar.gz", "has_sig": false, "md5_digest": "5a0dcae79a490e0449f6396fdbaf5641", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 56374, "upload_time": "2020-05-19T19:51:21", "upload_time_iso_8601": "2020-05-19T19:51:21.196255Z", "url": "https://files.pythonhosted.org/packages/0f/b0/7aab0a9ba52cbba9b6106a54a28784f06db1226c2f32a7e090416cde2f21/PythonTwitchBotFramework-1.11.8.tar.gz", "yanked": false, "yanked_reason": null } ], "1.11.9": [ { "comment_text": "", "digests": { "md5": "458b72bd4de53501928673344506e431", "sha256": "3af9899c6cfc9e9750a189b994e68acb6921d404381fa9e20750171b330b5a34" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.11.9-py3-none-any.whl", "has_sig": false, "md5_digest": "458b72bd4de53501928673344506e431", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 74290, "upload_time": "2020-05-19T23:32:43", "upload_time_iso_8601": "2020-05-19T23:32:43.932300Z", "url": "https://files.pythonhosted.org/packages/6a/f4/c90944726686d3fc98f4e68a696d86a091b479cdf272436b8bb39eed0639/PythonTwitchBotFramework-1.11.9-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0beeee0ece887d3ea8b3195ccc53f1e6", "sha256": "ccfefe2a23f3999147789828f28eec41f44498c35c952f4e3acfaf4a2e55954e" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.11.9.tar.gz", "has_sig": false, "md5_digest": "0beeee0ece887d3ea8b3195ccc53f1e6", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 56559, "upload_time": "2020-05-19T23:32:45", "upload_time_iso_8601": "2020-05-19T23:32:45.614846Z", "url": "https://files.pythonhosted.org/packages/26/3c/b8a6116a80cd75a2a1a31f247bf2ab5e399d9454fca97ea23080370e8760/PythonTwitchBotFramework-1.11.9.tar.gz", "yanked": false, "yanked_reason": null } ], "1.12.0": [ { "comment_text": "", "digests": { "md5": "28adccc7778dd904a92c75dd3377d128", "sha256": "fffeaedb1715040aa33de5947b0b8038a1d5f45e769ac60ef16827e23348e7ab" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.12.0-py3-none-any.whl", "has_sig": false, "md5_digest": "28adccc7778dd904a92c75dd3377d128", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 79020, "upload_time": "2020-06-21T04:43:50", "upload_time_iso_8601": "2020-06-21T04:43:50.802793Z", "url": "https://files.pythonhosted.org/packages/b4/8b/c4d495e42759adb62998166329d084a4226fbd2c2b5540fe8b0ce509c49d/PythonTwitchBotFramework-1.12.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0feac4cbaaf2217769219a6f3b0bee1f", "sha256": "0cb7d7c6cc7c93378b3b0d77d3b10008274e9dc9cb378c7e66df373fa353df9b" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.12.0.tar.gz", "has_sig": false, "md5_digest": "0feac4cbaaf2217769219a6f3b0bee1f", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 61099, "upload_time": "2020-06-21T04:43:52", "upload_time_iso_8601": "2020-06-21T04:43:52.193360Z", "url": "https://files.pythonhosted.org/packages/0c/0b/74ffd345cbbaecf6c40b976667c128ad852a6087d902dc8aa1346a9a6edb/PythonTwitchBotFramework-1.12.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.12.1": [ { "comment_text": "", "digests": { "md5": "647fc1959ebf7dc31a09c39398c4af26", "sha256": "d2c10ffbd3410d39ce24beb44c40e9277e2d785667d6cae0633ddce46f05ff4a" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.12.1-py3-none-any.whl", "has_sig": false, "md5_digest": "647fc1959ebf7dc31a09c39398c4af26", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 79838, "upload_time": "2020-06-24T01:45:32", "upload_time_iso_8601": "2020-06-24T01:45:32.384331Z", "url": "https://files.pythonhosted.org/packages/85/9e/1bb095a38ca345d8d219b34ed8fe2152e14b4eb9d2ade2e089d65bd9a523/PythonTwitchBotFramework-1.12.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "91ec38711c1007e318f56400c4748af6", "sha256": "416b2abeba50686aeff3421b60099de543ad36d01d72316b7bb7fb1e02addab1" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.12.1.tar.gz", "has_sig": false, "md5_digest": "91ec38711c1007e318f56400c4748af6", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 61860, "upload_time": "2020-06-24T01:45:33", "upload_time_iso_8601": "2020-06-24T01:45:33.963252Z", "url": "https://files.pythonhosted.org/packages/d1/48/274d6e1710a3357941fdeffea8f6619a1990e9abd977df19d5226e354a0d/PythonTwitchBotFramework-1.12.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.12.2": [ { "comment_text": "", "digests": { "md5": "c2ecc976f34d2ccc039a41eac2d9c047", "sha256": "af45b81929e07f32c26026d45c232db498b99f61ed7f5c983826ba000fd09ff1" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.12.2-py3-none-any.whl", "has_sig": false, "md5_digest": "c2ecc976f34d2ccc039a41eac2d9c047", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 79831, "upload_time": "2020-07-10T04:34:30", "upload_time_iso_8601": "2020-07-10T04:34:30.775494Z", "url": "https://files.pythonhosted.org/packages/d9/a4/6d75df338d5cde1bca21204a6706eed0e6f0828a8f068a274ac4b0f6e6d0/PythonTwitchBotFramework-1.12.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "86371d21d67e4d80d8de7cfd5546a6b6", "sha256": "ff87b1bd922c0831398b6a77a661e60343320f271cd28111cfefe0014c3e0f25" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.12.2.tar.gz", "has_sig": false, "md5_digest": "86371d21d67e4d80d8de7cfd5546a6b6", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 61831, "upload_time": "2020-07-10T04:34:32", "upload_time_iso_8601": "2020-07-10T04:34:32.139585Z", "url": "https://files.pythonhosted.org/packages/d6/67/9ab7eae70b8f5e4970a14063a61608b85501703c418b60555badcfcb2c65/PythonTwitchBotFramework-1.12.2.tar.gz", "yanked": false, "yanked_reason": null } ], "1.12.3": [ { "comment_text": "", "digests": { "md5": "aa5e7f08c61fe4af35d8e3ee518feb1f", "sha256": "cc48fcb03c5553a2c8d6fce79534066b4cfec7e646b135385115d1cf22053687" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.12.3-py3-none-any.whl", "has_sig": false, "md5_digest": "aa5e7f08c61fe4af35d8e3ee518feb1f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 80265, "upload_time": "2020-07-10T21:38:04", "upload_time_iso_8601": "2020-07-10T21:38:04.409154Z", "url": "https://files.pythonhosted.org/packages/25/65/454e29654d10ac840cd8ce921e60d95545654033b809e0c7e6549432d62f/PythonTwitchBotFramework-1.12.3-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6f813d4de5e5f3de853dd202fc25c5bc", "sha256": "5997a5ecff023b10d87ca2bef72f01cd3692f4e12d7e3c5a85a24d80d663c7e2" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.12.3.tar.gz", "has_sig": false, "md5_digest": "6f813d4de5e5f3de853dd202fc25c5bc", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 62282, "upload_time": "2020-07-10T21:38:06", "upload_time_iso_8601": "2020-07-10T21:38:06.286284Z", "url": "https://files.pythonhosted.org/packages/6b/85/7de7926d62c87a4cce84b5ba1035ea7c5412364d7765440256e11be7b3f8/PythonTwitchBotFramework-1.12.3.tar.gz", "yanked": false, "yanked_reason": null } ], "1.12.4": [ { "comment_text": "", "digests": { "md5": "90e98838c7c6d0015560aaa83e75ae46", "sha256": "8b464019e8159aa351c0a8f129a9b7c3edd15158866ca808c322c0edbf5db058" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.12.4-py3-none-any.whl", "has_sig": false, "md5_digest": "90e98838c7c6d0015560aaa83e75ae46", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 80257, "upload_time": "2020-07-10T23:32:21", "upload_time_iso_8601": "2020-07-10T23:32:21.564473Z", "url": "https://files.pythonhosted.org/packages/40/2f/5faf158e43c05ae9a783d88da47a10c1d6bf39c1eeacad6730006fbe49d9/PythonTwitchBotFramework-1.12.4-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "044c14c8c689e23055bff8af4cbbf5fa", "sha256": "e275cae4f858798b465f3b914eecf346fdc4adfd36e82023ed21e9a437b194dd" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.12.4.tar.gz", "has_sig": false, "md5_digest": "044c14c8c689e23055bff8af4cbbf5fa", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 62297, "upload_time": "2020-07-10T23:32:23", "upload_time_iso_8601": "2020-07-10T23:32:23.109879Z", "url": "https://files.pythonhosted.org/packages/42/15/a15b7d2185baff2ff91310c25c36ebdb7ae82771a51135e3c1001e2c4549/PythonTwitchBotFramework-1.12.4.tar.gz", "yanked": false, "yanked_reason": null } ], "1.12.5": [ { "comment_text": "", "digests": { "md5": "ab7bb0d85ce16f9617a13747b49f1507", "sha256": "0b86536ca6dc3db76159f587beed52d472fde9599c868b411badaa3630d9b9c5" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.12.5-py3-none-any.whl", "has_sig": false, "md5_digest": "ab7bb0d85ce16f9617a13747b49f1507", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 80249, "upload_time": "2020-07-11T02:07:25", "upload_time_iso_8601": "2020-07-11T02:07:25.105056Z", "url": "https://files.pythonhosted.org/packages/81/95/83074b18d8f6b12de10939c5a0805b646fd52b82bef42d5b644439caec1a/PythonTwitchBotFramework-1.12.5-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bac9272cf77a6a98d437d1acfabb234a", "sha256": "bc758513a5ecefa2837aee42ba5f56b8d4b9cea936cc266cd035d9051fe88a02" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.12.5.tar.gz", "has_sig": false, "md5_digest": "bac9272cf77a6a98d437d1acfabb234a", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 62299, "upload_time": "2020-07-11T02:07:26", "upload_time_iso_8601": "2020-07-11T02:07:26.667578Z", "url": "https://files.pythonhosted.org/packages/e5/64/8eb7c68307b3118bc457062b573a6f8f394ca6e80e6306cddd6d39d77cfe/PythonTwitchBotFramework-1.12.5.tar.gz", "yanked": false, "yanked_reason": null } ], "1.13.0": [ { "comment_text": "", "digests": { "md5": "c7e429fc7776f73661016f828af19da4", "sha256": "a9a0dc1a5711cabcfbbeccc9a50d86ad9a3e4b835e2a4ccb31aaf70a58c7eeb2" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.13.0-py3-none-any.whl", "has_sig": false, "md5_digest": "c7e429fc7776f73661016f828af19da4", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 83660, "upload_time": "2020-07-24T22:11:19", "upload_time_iso_8601": "2020-07-24T22:11:19.347242Z", "url": "https://files.pythonhosted.org/packages/f0/15/621c03a94d0e7fbb192e95c09ff5445eec382b1ed856795f688a8322ecc7/PythonTwitchBotFramework-1.13.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "888469d7d2e65bdb8cc2806d8787b965", "sha256": "1e1b41908da432f54e8afe2064de144f3b66af4e42fc972d58ce3447757c31f4" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.13.0.tar.gz", "has_sig": false, "md5_digest": "888469d7d2e65bdb8cc2806d8787b965", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 64501, "upload_time": "2020-07-24T22:11:20", "upload_time_iso_8601": "2020-07-24T22:11:20.987129Z", "url": "https://files.pythonhosted.org/packages/3b/d9/6d01cff8172a4ef6793b388b0b254584c402a0a7dc65853c3d7775de56e5/PythonTwitchBotFramework-1.13.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.13.1": [ { "comment_text": "", "digests": { "md5": "158e7278e562a8ac92a2cbc5e4fee8de", "sha256": "69fd5a52d0355d79374e146fb4ba6e04ead237548b7810d949b41efa8196e66d" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.13.1-py3-none-any.whl", "has_sig": false, "md5_digest": "158e7278e562a8ac92a2cbc5e4fee8de", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 83665, "upload_time": "2020-07-27T00:09:55", "upload_time_iso_8601": "2020-07-27T00:09:55.592930Z", "url": "https://files.pythonhosted.org/packages/b1/b9/60ff65c9d98d76d03fdc5b0d00ed2175407ccad32c22a68d678b59293e0b/PythonTwitchBotFramework-1.13.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c72939e5d667242fcfa5b9f61f1fd9fd", "sha256": "d2f584c7e1499ab5a269d3d9c8f395b67a2d54e9801fd6df8a2032fe476f67f1" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.13.1.tar.gz", "has_sig": false, "md5_digest": "c72939e5d667242fcfa5b9f61f1fd9fd", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 64515, "upload_time": "2020-07-27T00:09:56", "upload_time_iso_8601": "2020-07-27T00:09:56.888448Z", "url": "https://files.pythonhosted.org/packages/27/4d/874fb1b5e6b42153232332ffa3e0e178f8ec48ba54aaa15c57c0f24335e0/PythonTwitchBotFramework-1.13.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.13.2": [ { "comment_text": "", "digests": { "md5": "c95f5a755a23482f872e18a8e66ee58d", "sha256": "033cda28102edce38d1a29829eb4b622221d5f95a4f4f9d2ba5fea222e2d3768" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.13.2-py3-none-any.whl", "has_sig": false, "md5_digest": "c95f5a755a23482f872e18a8e66ee58d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 83820, "upload_time": "2020-07-27T04:44:38", "upload_time_iso_8601": "2020-07-27T04:44:38.951275Z", "url": "https://files.pythonhosted.org/packages/52/18/e81d769caf209af73adef4fc2d76944f726c83eced1538e02c99dbec6aa9/PythonTwitchBotFramework-1.13.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "375ce5ffe8fd41e2ceb83a64ec4cd470", "sha256": "a0c378f9c82555047a5b89ae4b9bfeb06a244213cb4d85c041b42bf5b7280206" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.13.2.tar.gz", "has_sig": false, "md5_digest": "375ce5ffe8fd41e2ceb83a64ec4cd470", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 64640, "upload_time": "2020-07-27T04:44:40", "upload_time_iso_8601": "2020-07-27T04:44:40.485454Z", "url": "https://files.pythonhosted.org/packages/0b/93/f09db09d7b78d40e459fa608d5ac5ae40605bb2e02242a823cd753b53ecc/PythonTwitchBotFramework-1.13.2.tar.gz", "yanked": false, "yanked_reason": null } ], "1.13.3": [ { "comment_text": "", "digests": { "md5": "b43d58efac51d8930d32d62b8797e2a3", "sha256": "79f8b9d2ceb62adfde0e45385903317c2d7481114249c082f653e47f89777770" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.13.3-py3-none-any.whl", "has_sig": false, "md5_digest": "b43d58efac51d8930d32d62b8797e2a3", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 85581, "upload_time": "2020-07-28T01:35:40", "upload_time_iso_8601": "2020-07-28T01:35:40.707099Z", "url": "https://files.pythonhosted.org/packages/eb/6e/5064f068ff47bc2c566d3c7a171c8f27a742e17cde6de0a4f73cf2cb6d00/PythonTwitchBotFramework-1.13.3-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a3a36537f59fb6a00cef1b33203fec4b", "sha256": "bbce5bd303320ce4bbcd6bc9a636ac2827719c30a38b035f46a7363bb4bdf582" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.13.3.tar.gz", "has_sig": false, "md5_digest": "a3a36537f59fb6a00cef1b33203fec4b", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 65817, "upload_time": "2020-07-28T01:35:42", "upload_time_iso_8601": "2020-07-28T01:35:42.089461Z", "url": "https://files.pythonhosted.org/packages/8f/04/b9fa039220463d0e7ecd3f8bc8d918069d5789fa710b020e1c294a275922/PythonTwitchBotFramework-1.13.3.tar.gz", "yanked": false, "yanked_reason": null } ], "1.13.4": [ { "comment_text": "", "digests": { "md5": "37384c1ac564a85ac1ac67c52aef4c54", "sha256": "5de9207f9b6b88c9858edbb74e36a4129fcd98c37cfbee4ed1756e757fd2a8d1" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.13.4-py3-none-any.whl", "has_sig": false, "md5_digest": "37384c1ac564a85ac1ac67c52aef4c54", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 85924, "upload_time": "2020-07-28T02:43:42", "upload_time_iso_8601": "2020-07-28T02:43:42.275007Z", "url": "https://files.pythonhosted.org/packages/9b/11/aa61b706d6878a1bdb51ccc13d221857c48e6f9e17dda7059f55580010da/PythonTwitchBotFramework-1.13.4-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "40f501e70be4bb26b37402c1dd62a36a", "sha256": "ce0f0b73ac2e9f760db6261adbe1a4445ed0da4c8dcfefc064d32b13350fcc65" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.13.4.tar.gz", "has_sig": false, "md5_digest": "40f501e70be4bb26b37402c1dd62a36a", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 66150, "upload_time": "2020-07-28T02:43:43", "upload_time_iso_8601": "2020-07-28T02:43:43.490772Z", "url": "https://files.pythonhosted.org/packages/f6/19/4b4d5d6ed69acf0bff90ee20b1d10482f33f2d143e3bd8b2c3a818dee9f8/PythonTwitchBotFramework-1.13.4.tar.gz", "yanked": false, "yanked_reason": null } ], "1.13.5": [ { "comment_text": "", "digests": { "md5": "9eb5ae5b2a868ca0df3ae91586662da4", "sha256": "aff23e780f990ffc6cb7c759629bedf7cdf93746941d2c9deabbf67a5080c889" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.13.5-py3-none-any.whl", "has_sig": false, "md5_digest": "9eb5ae5b2a868ca0df3ae91586662da4", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 86050, "upload_time": "2020-07-28T16:27:31", "upload_time_iso_8601": "2020-07-28T16:27:31.536586Z", "url": "https://files.pythonhosted.org/packages/66/3b/cdc1d43fc2b474543d05903f206d34d53b2d6a4d589d89b08af265330001/PythonTwitchBotFramework-1.13.5-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "681e90c6746ff61dd719aa6414975c40", "sha256": "7406db1a45e5cf2f637fc4d06b449874219350bf0fcb42810e8b801d946349fd" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.13.5.tar.gz", "has_sig": false, "md5_digest": "681e90c6746ff61dd719aa6414975c40", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 66320, "upload_time": "2020-07-28T16:27:32", "upload_time_iso_8601": "2020-07-28T16:27:32.994788Z", "url": "https://files.pythonhosted.org/packages/cc/bf/4e6072e8e02080b4b4b6ade290174300e5aa54129947c69adfa82cdc17f5/PythonTwitchBotFramework-1.13.5.tar.gz", "yanked": false, "yanked_reason": null } ], "1.13.6": [ { "comment_text": "", "digests": { "md5": "d5cac6a695275fb69f06455f584a91dc", "sha256": "dde35580dd2becd873e207bcc97003ed87cde94eda8d8efb76b8f58f425d229b" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.13.6-py3-none-any.whl", "has_sig": false, "md5_digest": "d5cac6a695275fb69f06455f584a91dc", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 86850, "upload_time": "2020-07-29T20:20:59", "upload_time_iso_8601": "2020-07-29T20:20:59.014294Z", "url": "https://files.pythonhosted.org/packages/59/47/06aea05523edd858b72bdf9231dbda0b1032ddedfc38f49263837fa0aacb/PythonTwitchBotFramework-1.13.6-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "941ecfd3076a37320cee8942e0d805c4", "sha256": "d351042b394393cd317c8e52debe20dd192d872d1e474f2341310c84b953639d" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.13.6.tar.gz", "has_sig": false, "md5_digest": "941ecfd3076a37320cee8942e0d805c4", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 66829, "upload_time": "2020-07-29T20:21:00", "upload_time_iso_8601": "2020-07-29T20:21:00.628339Z", "url": "https://files.pythonhosted.org/packages/5b/d3/769e0e0203f0a5ff588d5d6c8b9aaedefd0dee7e86a294ee14c162691f72/PythonTwitchBotFramework-1.13.6.tar.gz", "yanked": false, "yanked_reason": null } ], "1.14.0": [ { "comment_text": "", "digests": { "md5": "7d0414f5055c3f4eb0ace0e4292d4763", "sha256": "b18d85ffbd78d122c82a72904d20165372a8d72a8b1de46ca139ae502236dde7" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.14.0-py3-none-any.whl", "has_sig": false, "md5_digest": "7d0414f5055c3f4eb0ace0e4292d4763", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 87617, "upload_time": "2020-07-30T03:09:44", "upload_time_iso_8601": "2020-07-30T03:09:44.402440Z", "url": "https://files.pythonhosted.org/packages/d1/01/84264d6bedb0445b2015bef663e4bf02095f4aca5e38a0eae247ca28fe50/PythonTwitchBotFramework-1.14.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a234302fccf6b7af26af581f490db8d4", "sha256": "da60a9e972b5a694fdc22237bd1021fff3c932499e14a0706b7e1e6c83b55a4c" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.14.0.tar.gz", "has_sig": false, "md5_digest": "a234302fccf6b7af26af581f490db8d4", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 67256, "upload_time": "2020-07-30T03:09:46", "upload_time_iso_8601": "2020-07-30T03:09:46.244458Z", "url": "https://files.pythonhosted.org/packages/f6/de/f19c3215221c262f94989574740265e464ee57c17914ea991e1fcfad37f9/PythonTwitchBotFramework-1.14.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.14.2": [ { "comment_text": "", "digests": { "md5": "d16af484f3dfea31adf37ad27381c4e2", "sha256": "c573fbe46152624a5c3ff8c64f7f84aac2b81e2f7c0c580e5d84d7349ceaef36" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.14.2-py3-none-any.whl", "has_sig": false, "md5_digest": "d16af484f3dfea31adf37ad27381c4e2", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 89223, "upload_time": "2020-07-31T02:29:32", "upload_time_iso_8601": "2020-07-31T02:29:32.211612Z", "url": "https://files.pythonhosted.org/packages/0a/90/abd301996353b842f2ad310af471b0330b1896da9c0e222a9ca536958542/PythonTwitchBotFramework-1.14.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "03d51cdfc67a741230e6b8a25ccbac8c", "sha256": "573bf78fbd454f6b1c4fc60907c4eb23d26ab6184ee2f7564fefb48195404dfd" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.14.2.tar.gz", "has_sig": false, "md5_digest": "03d51cdfc67a741230e6b8a25ccbac8c", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 68232, "upload_time": "2020-07-31T02:29:33", "upload_time_iso_8601": "2020-07-31T02:29:33.587051Z", "url": "https://files.pythonhosted.org/packages/a0/99/8250c783fc5e0fd95d46679d4fb7ca7df8dc65c985a00c800e0e1dee60b3/PythonTwitchBotFramework-1.14.2.tar.gz", "yanked": false, "yanked_reason": null } ], "1.15.0": [ { "comment_text": "", "digests": { "md5": "fce21ae5b5cbbe6057bdefadd05b13ef", "sha256": "3afa3e1a709a4d2b8957c0f8cd9bd24bc3e7986c1097330356f1edc424ed4358" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.15.0-py3-none-any.whl", "has_sig": false, "md5_digest": "fce21ae5b5cbbe6057bdefadd05b13ef", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 89917, "upload_time": "2020-08-04T22:25:59", "upload_time_iso_8601": "2020-08-04T22:25:59.818261Z", "url": "https://files.pythonhosted.org/packages/25/be/9ba87829d959d11d56819bb01b09bc52dde5a5a4aa1c76600bbc7602bb53/PythonTwitchBotFramework-1.15.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3ed6d055b7a3f2084ddcde74df78a903", "sha256": "64c8cbcbc623b402ccb8cbbd543c91c948eeea26d22141f6d9a0149bb78e75ad" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.15.0.tar.gz", "has_sig": false, "md5_digest": "3ed6d055b7a3f2084ddcde74df78a903", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 69043, "upload_time": "2020-08-04T22:26:01", "upload_time_iso_8601": "2020-08-04T22:26:01.710779Z", "url": "https://files.pythonhosted.org/packages/bc/07/7722e086e15bca017bdb2e031b37ea07a34463bfee1cf0fc5b9ddf6de457/PythonTwitchBotFramework-1.15.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.15.1": [ { "comment_text": "", "digests": { "md5": "605a97f4c17e17ae17b8f2b0bd33b1f3", "sha256": "ad0e2ed359ff236adbbee3ea65d3d85903745fdcd4dfca584386a64f4cf7e480" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.15.1-py3-none-any.whl", "has_sig": false, "md5_digest": "605a97f4c17e17ae17b8f2b0bd33b1f3", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 89916, "upload_time": "2020-08-04T22:26:30", "upload_time_iso_8601": "2020-08-04T22:26:30.130930Z", "url": "https://files.pythonhosted.org/packages/b1/a7/f8fc18b8060962f79b90fcc6acfc0d3a4a5cdd416381a610db7466698a1e/PythonTwitchBotFramework-1.15.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0da6fe976070102d3b1a972610a73b98", "sha256": "79572e773312a7b2473361c470e738b54ace32914591e40de657e7fc3532679d" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.15.1.tar.gz", "has_sig": false, "md5_digest": "0da6fe976070102d3b1a972610a73b98", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 69038, "upload_time": "2020-08-04T22:26:31", "upload_time_iso_8601": "2020-08-04T22:26:31.781498Z", "url": "https://files.pythonhosted.org/packages/38/a8/16a8ecac21281d566c570eea3d08e876ec9570cebb5870f8eb4e462b1cf1/PythonTwitchBotFramework-1.15.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.15.10": [ { "comment_text": "", "digests": { "md5": "bf684672ed9500fdda365c49a87ee362", "sha256": "1b47caa37b76b7ea2557fe9ca2c1b84c08c08c008db524b59f57836569d01402" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.15.10-py3-none-any.whl", "has_sig": false, "md5_digest": "bf684672ed9500fdda365c49a87ee362", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 91433, "upload_time": "2020-08-31T22:01:48", "upload_time_iso_8601": "2020-08-31T22:01:48.275157Z", "url": "https://files.pythonhosted.org/packages/e3/cd/d178aeb93ae37ee73ab290c68552ee1d8bb42e8cd584c42028300561eb01/PythonTwitchBotFramework-1.15.10-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0adedd00cdcb58055242ad6b380111cd", "sha256": "8d6cd1811fad5852d020f741a3e45b571f5cd46c9cf08e6a8a6e523143c3d373" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.15.10.tar.gz", "has_sig": false, "md5_digest": "0adedd00cdcb58055242ad6b380111cd", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 70207, "upload_time": "2020-08-31T22:01:50", "upload_time_iso_8601": "2020-08-31T22:01:50.401714Z", "url": "https://files.pythonhosted.org/packages/30/2c/367113223dbaef9f540b81215e2ea6d7ba9685fe22ab9c5bb5311f4b6d6d/PythonTwitchBotFramework-1.15.10.tar.gz", "yanked": false, "yanked_reason": null } ], "1.15.11": [ { "comment_text": "", "digests": { "md5": "85af1158910967ee5ecc8c5199d9996a", "sha256": "585d22c57c5f941cf572ad8dd38d35b7f26ddd6d5758f8c777f174e7ba36990f" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.15.11-py3-none-any.whl", "has_sig": false, "md5_digest": "85af1158910967ee5ecc8c5199d9996a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 91832, "upload_time": "2020-09-03T18:46:23", "upload_time_iso_8601": "2020-09-03T18:46:23.780176Z", "url": "https://files.pythonhosted.org/packages/02/7f/9c473b76bb37ff50e35f7f1c9e8f9122ce51c1543cef9d89551fe91d54d2/PythonTwitchBotFramework-1.15.11-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "23a4c51919ede3308ae9edb05afdd6d5", "sha256": "27424d80171bf9676d349eba7380beaf6352e6ecefa4feeb337edc55043faad6" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.15.11.tar.gz", "has_sig": false, "md5_digest": "23a4c51919ede3308ae9edb05afdd6d5", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 70549, "upload_time": "2020-09-03T18:46:25", "upload_time_iso_8601": "2020-09-03T18:46:25.475807Z", "url": "https://files.pythonhosted.org/packages/e5/cc/45deaa98f704cb893a13cf793cf35640ed0123aa215172a9cc64bb8a9ae2/PythonTwitchBotFramework-1.15.11.tar.gz", "yanked": false, "yanked_reason": null } ], "1.15.2": [ { "comment_text": "", "digests": { "md5": "e324325ecf8b29bbb7d00ba0749f1983", "sha256": "abda8394e05ceee4ad324d526db66d5489eb25fb3f4a1cb15a52d4b750633e51" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.15.2-py3-none-any.whl", "has_sig": false, "md5_digest": "e324325ecf8b29bbb7d00ba0749f1983", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 89926, "upload_time": "2020-08-05T16:25:43", "upload_time_iso_8601": "2020-08-05T16:25:43.005282Z", "url": "https://files.pythonhosted.org/packages/52/54/d1774f2fe3172b1178546bc3b45a000b3a8f1a62460ca00cc18b4c02d099/PythonTwitchBotFramework-1.15.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f9c124db56ed27108cfd005c90d03abf", "sha256": "b88d8ffbe6634a9c8e6d90c4fc3472cde402b96eb2531377df10c0b628069999" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.15.2.tar.gz", "has_sig": false, "md5_digest": "f9c124db56ed27108cfd005c90d03abf", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 69047, "upload_time": "2020-08-05T16:25:44", "upload_time_iso_8601": "2020-08-05T16:25:44.850824Z", "url": "https://files.pythonhosted.org/packages/48/a8/c72de39a2bd9e5168839ad239ba2f4e164361ec91bf46f96c582311049a3/PythonTwitchBotFramework-1.15.2.tar.gz", "yanked": false, "yanked_reason": null } ], "1.15.4": [ { "comment_text": "", "digests": { "md5": "b9b41a3460d513799ab373fd8022f451", "sha256": "7507e0bab2cd3e6e71bc3663be550c392440f84846304065e4475b96d5b4ad7d" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.15.4-py3-none-any.whl", "has_sig": false, "md5_digest": "b9b41a3460d513799ab373fd8022f451", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 90271, "upload_time": "2020-08-07T21:25:14", "upload_time_iso_8601": "2020-08-07T21:25:14.089452Z", "url": "https://files.pythonhosted.org/packages/55/30/e8043ad4ff04cddd40550fd8d18ba3dac0f82151800fee155873684ec571/PythonTwitchBotFramework-1.15.4-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5914a256c54dddcc530d194e159629f4", "sha256": "4631811dd10c7f2bf98a083dde523dec5ced013c21d754bc69da9fe890699507" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.15.4.tar.gz", "has_sig": false, "md5_digest": "5914a256c54dddcc530d194e159629f4", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 69395, "upload_time": "2020-08-07T21:25:15", "upload_time_iso_8601": "2020-08-07T21:25:15.618728Z", "url": "https://files.pythonhosted.org/packages/06/75/840b482053ec73377bef03d8d609d31543f827c623f6e40e66d9d8e3450d/PythonTwitchBotFramework-1.15.4.tar.gz", "yanked": false, "yanked_reason": null } ], "1.15.5": [ { "comment_text": "", "digests": { "md5": "dd861e191dc4bf5b33a2f498900f31cf", "sha256": "80af5df06449ac881d959bf463cd1079d7bdfe1090434b2297cdfd66679d71bb" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.15.5-py3-none-any.whl", "has_sig": false, "md5_digest": "dd861e191dc4bf5b33a2f498900f31cf", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 90744, "upload_time": "2020-08-09T23:53:02", "upload_time_iso_8601": "2020-08-09T23:53:02.895385Z", "url": "https://files.pythonhosted.org/packages/cb/5c/cacff8276d6bd4d77f59f9f9e5c338c16c4e00d0a101be8016ce31e49497/PythonTwitchBotFramework-1.15.5-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "52b82d0d939e2754c6f92974494339e3", "sha256": "6f263a4495fbbe013231ea6dec09efc5add8c59a35ee2791758fabfcf91d5468" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.15.5.tar.gz", "has_sig": false, "md5_digest": "52b82d0d939e2754c6f92974494339e3", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 69758, "upload_time": "2020-08-09T23:53:04", "upload_time_iso_8601": "2020-08-09T23:53:04.470918Z", "url": "https://files.pythonhosted.org/packages/29/5f/1ce1385b041e1412cd7f3eae3ab7fce69c9541477f8cbe471428d9f86fea/PythonTwitchBotFramework-1.15.5.tar.gz", "yanked": false, "yanked_reason": null } ], "1.15.6": [ { "comment_text": "", "digests": { "md5": "9e8199a7f5f0a5875bc3a395deaf2113", "sha256": "235c3f846cc868fefa2e61765ce1563d6a7b5a7032d712e0726c8a5864944349" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.15.6-py3-none-any.whl", "has_sig": false, "md5_digest": "9e8199a7f5f0a5875bc3a395deaf2113", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 91389, "upload_time": "2020-08-10T18:57:18", "upload_time_iso_8601": "2020-08-10T18:57:18.730388Z", "url": "https://files.pythonhosted.org/packages/63/a7/4461e1019df19372cd6dad0353fa18b4cdacd168ca498f1285446938a002/PythonTwitchBotFramework-1.15.6-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "986c9da2278ee59fc4a71b394f894e93", "sha256": "673a1e978d63587b1196f7d13b4acde8f49d5624586470fe0e8d074ec085b0d1" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.15.6.tar.gz", "has_sig": false, "md5_digest": "986c9da2278ee59fc4a71b394f894e93", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 70121, "upload_time": "2020-08-10T18:57:21", "upload_time_iso_8601": "2020-08-10T18:57:21.041450Z", "url": "https://files.pythonhosted.org/packages/74/e0/3f9c2d56e24d63a866b1fa6f51c63277713a0a007eab9748706c55da42b3/PythonTwitchBotFramework-1.15.6.tar.gz", "yanked": false, "yanked_reason": null } ], "1.15.7": [ { "comment_text": "", "digests": { "md5": "6dab0c8f7c215fa07ca1cc959189d2db", "sha256": "17aa6bc2c548d12cf5b18a75a72cbc0855956f39e391d20cef1390440b40b10f" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.15.7-py3-none-any.whl", "has_sig": false, "md5_digest": "6dab0c8f7c215fa07ca1cc959189d2db", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 91396, "upload_time": "2020-08-10T19:08:52", "upload_time_iso_8601": "2020-08-10T19:08:52.111786Z", "url": "https://files.pythonhosted.org/packages/e4/eb/6ff51454cbb0c650a443eb08aa89aa727968f306cb35abb4104666dd84b5/PythonTwitchBotFramework-1.15.7-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "451e5b42e9dbec31dd75df009fdc9c47", "sha256": "a98c70311933c095fcc0544fa802508a881d0862154b8d77d7c4399f95aa02c3" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.15.7.tar.gz", "has_sig": false, "md5_digest": "451e5b42e9dbec31dd75df009fdc9c47", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 70096, "upload_time": "2020-08-10T19:08:54", "upload_time_iso_8601": "2020-08-10T19:08:54.071327Z", "url": "https://files.pythonhosted.org/packages/db/39/b8eb67640bb5dfd2e57a23325f1af70da952e63adb55b23f1170bb36e18d/PythonTwitchBotFramework-1.15.7.tar.gz", "yanked": false, "yanked_reason": null } ], "1.15.8": [ { "comment_text": "", "digests": { "md5": "70f11d1a91bc16d41300099feef141bf", "sha256": "8179a3275694d0f9687dfe199eff04084e4d6dc397c7462a8620ec8c3adf2d66" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.15.8-py3-none-any.whl", "has_sig": false, "md5_digest": "70f11d1a91bc16d41300099feef141bf", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 91397, "upload_time": "2020-08-30T03:16:38", "upload_time_iso_8601": "2020-08-30T03:16:38.988556Z", "url": "https://files.pythonhosted.org/packages/22/73/aa575c0a184403693cd904f62aab7d417b4323d03e67d669374bbb880510/PythonTwitchBotFramework-1.15.8-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "43cb8facb83e255d9b31096fd8f3e67f", "sha256": "98c6b122feb979a59836f7e08d7f8594838ab2ec73c88e54a921b178c783452e" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.15.8.tar.gz", "has_sig": false, "md5_digest": "43cb8facb83e255d9b31096fd8f3e67f", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 70183, "upload_time": "2020-08-30T03:16:40", "upload_time_iso_8601": "2020-08-30T03:16:40.733573Z", "url": "https://files.pythonhosted.org/packages/8f/9f/3ad88d26fefe2aeddb14a299aa8efe77d0a960e34ac641fe7844b9f08b18/PythonTwitchBotFramework-1.15.8.tar.gz", "yanked": false, "yanked_reason": null } ], "1.15.9": [ { "comment_text": "", "digests": { "md5": "08e0e1aaa98c9dc01b3d843e5b042ed4", "sha256": "eef4367e4f470a4be711c3e6a51e86dc411045abe9932d43af1f18923a505786" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.15.9-py3-none-any.whl", "has_sig": false, "md5_digest": "08e0e1aaa98c9dc01b3d843e5b042ed4", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 91431, "upload_time": "2020-08-30T05:05:44", "upload_time_iso_8601": "2020-08-30T05:05:44.578812Z", "url": "https://files.pythonhosted.org/packages/91/07/59794635dbb396f5b05866529db539841004ee9d054698d1c9aa8210e861/PythonTwitchBotFramework-1.15.9-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9545ef9bbb6d70cc8be74997ccdeedfe", "sha256": "c177db1d7054a19dfd9c77a112f0907735b29eac7259b7d0299ffefd0ca4cf8a" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.15.9.tar.gz", "has_sig": false, "md5_digest": "9545ef9bbb6d70cc8be74997ccdeedfe", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 70156, "upload_time": "2020-08-30T05:05:46", "upload_time_iso_8601": "2020-08-30T05:05:46.162736Z", "url": "https://files.pythonhosted.org/packages/07/2c/e132eab36aaa5fa25529c61428e2cfa94882dcc304cae8c607d6844a4d75/PythonTwitchBotFramework-1.15.9.tar.gz", "yanked": false, "yanked_reason": null } ], "1.16.0": [ { "comment_text": "", "digests": { "md5": "e11d87d0ebbde8ccfe9b942d276929b1", "sha256": "48e49ac56c6607f95d9e0a0d07949061d6e5271e3b09ddd8b283673dacd763bf" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.16.0-py3-none-any.whl", "has_sig": false, "md5_digest": "e11d87d0ebbde8ccfe9b942d276929b1", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 91870, "upload_time": "2020-09-11T02:30:57", "upload_time_iso_8601": "2020-09-11T02:30:57.470313Z", "url": "https://files.pythonhosted.org/packages/51/6a/b513f4b6df0fa5319fb6673d60a3b3c8655471db7a37ad15913ef355dc1d/PythonTwitchBotFramework-1.16.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "743d42c040ffcc75499d48393b240c03", "sha256": "63d4d1270d58fe50389349b4b2a0ce251abe3bdc823668287679d404a9033c0d" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.16.0.tar.gz", "has_sig": false, "md5_digest": "743d42c040ffcc75499d48393b240c03", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 71004, "upload_time": "2020-09-11T02:31:01", "upload_time_iso_8601": "2020-09-11T02:31:01.841778Z", "url": "https://files.pythonhosted.org/packages/39/ff/109d7a44459c0802eb8f000ff254b7379a5fd69e66ba95d52fd93836a39f/PythonTwitchBotFramework-1.16.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.16.1": [ { "comment_text": "", "digests": { "md5": "b8e6e647e770fe68db3c8d91676b80fe", "sha256": "2d0bd0cf5cdc961df4b329f4a7fab654521e24330bfe26d3d55b445eca280ff3" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.16.1-py3-none-any.whl", "has_sig": false, "md5_digest": "b8e6e647e770fe68db3c8d91676b80fe", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 91869, "upload_time": "2020-09-17T16:54:37", "upload_time_iso_8601": "2020-09-17T16:54:37.896774Z", "url": "https://files.pythonhosted.org/packages/c4/a1/a53f17d06f204b7f2d95e9d74befd618a672f667edfda4b5a0d671ee659f/PythonTwitchBotFramework-1.16.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c8ff319af889089d5ffc48e00edea654", "sha256": "566c7f61806bfd6b15105fe9c031a2cc5a0584221a41c6c155896f4388062f23" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.16.1.tar.gz", "has_sig": false, "md5_digest": "c8ff319af889089d5ffc48e00edea654", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 71035, "upload_time": "2020-09-17T16:54:39", "upload_time_iso_8601": "2020-09-17T16:54:39.558322Z", "url": "https://files.pythonhosted.org/packages/a1/e0/cf77cd19b80a10edbe82d912ca87e75f9d24e3a984c7a1a5c74887e7a25d/PythonTwitchBotFramework-1.16.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.16.10": [ { "comment_text": "", "digests": { "md5": "d5645030f45aa095d232685e28125f78", "sha256": "91a472ee77e8d9cc5f217531c12d453316cf27496e143de2ce8804719a25a0a4" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.16.10-py3-none-any.whl", "has_sig": false, "md5_digest": "d5645030f45aa095d232685e28125f78", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 94262, "upload_time": "2020-11-07T23:33:25", "upload_time_iso_8601": "2020-11-07T23:33:25.597752Z", "url": "https://files.pythonhosted.org/packages/3c/b9/a122ae0b12ecdcb422525dc15a34f17dee1f6dd9d89bab811b92c6452fea/PythonTwitchBotFramework-1.16.10-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "174e1357f4ee82f520ed7b8c5f22759a", "sha256": "8331e0a0d3798a453fc4fce54b5e4f138b0e7f5aaca0529c606f982e42c54131" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.16.10.tar.gz", "has_sig": false, "md5_digest": "174e1357f4ee82f520ed7b8c5f22759a", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 82851, "upload_time": "2020-11-07T23:33:27", "upload_time_iso_8601": "2020-11-07T23:33:27.215773Z", "url": "https://files.pythonhosted.org/packages/2c/f4/b3f520a35bf655c96e8a23e58ff3ec5b5c213c4b88c74342d8bf16d941ec/PythonTwitchBotFramework-1.16.10.tar.gz", "yanked": false, "yanked_reason": null } ], "1.16.12": [ { "comment_text": "", "digests": { "md5": "1680535c6250cc3238e898d706da533d", "sha256": "ce2ae6e70eb3724e9c6e8468dc9187abbd51acf4a418d9ce885569a31965d7c9" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.16.12-py3-none-any.whl", "has_sig": false, "md5_digest": "1680535c6250cc3238e898d706da533d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 94305, "upload_time": "2020-12-03T01:49:39", "upload_time_iso_8601": "2020-12-03T01:49:39.909318Z", "url": "https://files.pythonhosted.org/packages/b4/4a/4882fd32068b0291afd9bb07a2178744d29e8b7228b6cdc1597fd2027ac4/PythonTwitchBotFramework-1.16.12-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "69304e30f42dcd05ab75a11cc79805eb", "sha256": "5868518777a730872d0eb3721a2bd482ee239ed996adeff61fd1656f8cdc192c" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.16.12.tar.gz", "has_sig": false, "md5_digest": "69304e30f42dcd05ab75a11cc79805eb", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 82899, "upload_time": "2020-12-03T01:49:41", "upload_time_iso_8601": "2020-12-03T01:49:41.536116Z", "url": "https://files.pythonhosted.org/packages/c0/f2/f69c7e582164ec60bb4f23aa79e74ea77d78f8d44f683cae988f1c58d7c7/PythonTwitchBotFramework-1.16.12.tar.gz", "yanked": false, "yanked_reason": null } ], "1.16.13": [ { "comment_text": "", "digests": { "md5": "9a7ebb6d0490110cbdaf7cf6b9ba009e", "sha256": "9d03532bbdede70da48af63e24711fcaaa3258aae1d002bfba0455eee1164ea7" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.16.13-py3-none-any.whl", "has_sig": false, "md5_digest": "9a7ebb6d0490110cbdaf7cf6b9ba009e", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 94769, "upload_time": "2020-12-03T02:42:41", "upload_time_iso_8601": "2020-12-03T02:42:41.807642Z", "url": "https://files.pythonhosted.org/packages/7a/f9/9c30ae8a8c4d88a23de4be0a8c94620a933c343165c9ffc87a6ab16099b9/PythonTwitchBotFramework-1.16.13-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0ff35742753a943f1ac6e7897b2a9ce4", "sha256": "d0d8901a3550b282bd1a0b979a14d8092463c289cb2b5b9f55b4781062970a57" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.16.13.tar.gz", "has_sig": false, "md5_digest": "0ff35742753a943f1ac6e7897b2a9ce4", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 83019, "upload_time": "2020-12-03T02:42:43", "upload_time_iso_8601": "2020-12-03T02:42:43.382691Z", "url": "https://files.pythonhosted.org/packages/73/24/400ed62f678c986cce74a3f2bba0959dae505a99b63acb48d24f63ce7a31/PythonTwitchBotFramework-1.16.13.tar.gz", "yanked": false, "yanked_reason": null } ], "1.16.2": [ { "comment_text": "", "digests": { "md5": "d255f373d1c860917ada3cf5f8f82c74", "sha256": "aa418a8d20d7bfa803cc14fb98fd3b15f0de4d2f94b0a74ea2938bc453638fb5" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.16.2-py3-none-any.whl", "has_sig": false, "md5_digest": "d255f373d1c860917ada3cf5f8f82c74", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 91923, "upload_time": "2020-09-20T00:22:37", "upload_time_iso_8601": "2020-09-20T00:22:37.040842Z", "url": "https://files.pythonhosted.org/packages/39/08/b834319e180fdee156a94c0988e9b27bbec7616e935fd3dfeadb85abbe39/PythonTwitchBotFramework-1.16.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4793d29527c26765edf2761439d75e5f", "sha256": "7bfd3867841824c4bbc7beb8bb950624f1142c840e025c5032c99c8a8f8143c5" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.16.2.tar.gz", "has_sig": false, "md5_digest": "4793d29527c26765edf2761439d75e5f", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 71053, "upload_time": "2020-09-20T00:22:38", "upload_time_iso_8601": "2020-09-20T00:22:38.809854Z", "url": "https://files.pythonhosted.org/packages/5f/5b/750f207d19108e1bbde95efec41e487cc0d7494644245d1213a3c884e19c/PythonTwitchBotFramework-1.16.2.tar.gz", "yanked": false, "yanked_reason": null } ], "1.16.3": [ { "comment_text": "", "digests": { "md5": "19939103ffa0443fd1d7942b35c5cd58", "sha256": "e07c9c27ee322a9fc3ca9cbd9bd957619ba2d4a08d83be28e70b1628e950a870" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.16.3-py3-none-any.whl", "has_sig": false, "md5_digest": "19939103ffa0443fd1d7942b35c5cd58", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 91996, "upload_time": "2020-09-22T04:57:43", "upload_time_iso_8601": "2020-09-22T04:57:43.418598Z", "url": "https://files.pythonhosted.org/packages/27/78/3cbbcc966686c16514e256db6a7d033030f2d1740a9a7d365dc8eebcb552/PythonTwitchBotFramework-1.16.3-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "417476f71b01a2c740ca955f22377bc1", "sha256": "b55bce6c55b7521050501a7181920e0b1db1a18a16b524e82792fd2dbd4f6668" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.16.3.tar.gz", "has_sig": false, "md5_digest": "417476f71b01a2c740ca955f22377bc1", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 70869, "upload_time": "2020-09-22T04:57:45", "upload_time_iso_8601": "2020-09-22T04:57:45.336782Z", "url": "https://files.pythonhosted.org/packages/5e/19/cd0db2cf16b7921f441ed68ddced20df6ed671a4cbac91d804d0be216045/PythonTwitchBotFramework-1.16.3.tar.gz", "yanked": false, "yanked_reason": null } ], "1.16.4": [ { "comment_text": "", "digests": { "md5": "fab27bb8e830b024f1b09a3abfb6374c", "sha256": "a625c113f4585932908c3a2f1d49989b7841b29f7ed3fad30c9f4b7b5a9b96e3" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.16.4-py3-none-any.whl", "has_sig": false, "md5_digest": "fab27bb8e830b024f1b09a3abfb6374c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 92227, "upload_time": "2020-10-01T20:42:35", "upload_time_iso_8601": "2020-10-01T20:42:35.364314Z", "url": "https://files.pythonhosted.org/packages/48/a2/8c9bdcb565595f59c9601fb0d79a2d76d95138e3cca9230205e20c4ceb1f/PythonTwitchBotFramework-1.16.4-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ceb51aedfb0560fe449ce6da59970545", "sha256": "183dd0df8c6998498095e929de0c3fe0286bf1c06790ee881d2e3ea3327af5ae" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.16.4.tar.gz", "has_sig": false, "md5_digest": "ceb51aedfb0560fe449ce6da59970545", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 71072, "upload_time": "2020-10-01T20:42:37", "upload_time_iso_8601": "2020-10-01T20:42:37.186779Z", "url": "https://files.pythonhosted.org/packages/7a/a8/2975b385e3547c211abdecada298d6badebf782b4ae435410b923e14da9c/PythonTwitchBotFramework-1.16.4.tar.gz", "yanked": false, "yanked_reason": null } ], "1.16.5": [ { "comment_text": "", "digests": { "md5": "85a597c045be8ff4487642fbf37414d7", "sha256": "52cbcf8206b2fe198a40bee52e2db54d1bc8929e64390a8dbd73b61b1f98de7e" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.16.5-py3-none-any.whl", "has_sig": false, "md5_digest": "85a597c045be8ff4487642fbf37414d7", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 92228, "upload_time": "2020-10-11T02:51:22", "upload_time_iso_8601": "2020-10-11T02:51:22.381006Z", "url": "https://files.pythonhosted.org/packages/81/d3/66959c35492ef8c8a06f12564160461f1709b5e2b71d010123017af98064/PythonTwitchBotFramework-1.16.5-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e10e0b420a7244000752e811d73be12e", "sha256": "a1c12172c8f69dd2f9f28d9f786e143dd5b4497a2771a97fac1f06f7aa9a6bf5" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.16.5.tar.gz", "has_sig": false, "md5_digest": "e10e0b420a7244000752e811d73be12e", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 71116, "upload_time": "2020-10-11T02:51:23", "upload_time_iso_8601": "2020-10-11T02:51:23.974487Z", "url": "https://files.pythonhosted.org/packages/21/bf/98193a13b04e975646dad9939c194f8364e7425332f61569cadab0bb15ef/PythonTwitchBotFramework-1.16.5.tar.gz", "yanked": false, "yanked_reason": null } ], "1.16.6": [ { "comment_text": "", "digests": { "md5": "ce8a4e1439ed0ede528a3dc360f7bed0", "sha256": "3828b633ae31bc1d1e9cb371105d509fdbc28d7e3d72ba74ef88000ef9685a63" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.16.6-py3-none-any.whl", "has_sig": false, "md5_digest": "ce8a4e1439ed0ede528a3dc360f7bed0", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 94059, "upload_time": "2020-10-27T03:14:49", "upload_time_iso_8601": "2020-10-27T03:14:49.217489Z", "url": "https://files.pythonhosted.org/packages/66/cd/3aa19ea8465c21fb837278a9ec7b6a618bc4dbdb68b8e3b76deb3416420d/PythonTwitchBotFramework-1.16.6-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f5d1463b4c0b803e6b0ccdcc994bb87a", "sha256": "5606e599039e8cbb48987b406e18adf4fcfe71dc7a52e3147d9e29581d144c14" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.16.6.tar.gz", "has_sig": false, "md5_digest": "f5d1463b4c0b803e6b0ccdcc994bb87a", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 82953, "upload_time": "2020-10-27T03:14:50", "upload_time_iso_8601": "2020-10-27T03:14:50.930233Z", "url": "https://files.pythonhosted.org/packages/e6/27/3a719ba8c8a480936058839253454d9ece78e170899e6e8f086da542b61f/PythonTwitchBotFramework-1.16.6.tar.gz", "yanked": false, "yanked_reason": null } ], "1.16.7": [ { "comment_text": "", "digests": { "md5": "f0fd65a5c46e7f8317172cf179056046", "sha256": "9942da05a81fdd7f553ab24b0cf2f74ad9dc1cb4c682c2e1c21fe72bdd5b81a6" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.16.7-py3-none-any.whl", "has_sig": false, "md5_digest": "f0fd65a5c46e7f8317172cf179056046", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 94190, "upload_time": "2020-10-27T04:02:58", "upload_time_iso_8601": "2020-10-27T04:02:58.670519Z", "url": "https://files.pythonhosted.org/packages/25/90/72bf42f29e83d7fb702194c0d48a3afba68c4efce518c0e5bb5a4143f7e7/PythonTwitchBotFramework-1.16.7-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c7d8a535712cfc60447c82e57a7f576f", "sha256": "262426a46d9b94726f30840e077be6c697c4be062b9d379f9f6e4ee32573375f" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.16.7.tar.gz", "has_sig": false, "md5_digest": "c7d8a535712cfc60447c82e57a7f576f", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 82691, "upload_time": "2020-10-27T04:03:00", "upload_time_iso_8601": "2020-10-27T04:03:00.411154Z", "url": "https://files.pythonhosted.org/packages/cd/a7/657ee38de971c57f5ec44bdc1f47a54f6aac15d2b2e3ff287764366eb9bf/PythonTwitchBotFramework-1.16.7.tar.gz", "yanked": false, "yanked_reason": null } ], "1.16.8": [ { "comment_text": "", "digests": { "md5": "297e236628b3db9bd41486a00194efc8", "sha256": "cdaf4f5271b08d812ba890aafd8109a41674b104eddfda896f39de0804b1a105" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.16.8-py3-none-any.whl", "has_sig": false, "md5_digest": "297e236628b3db9bd41486a00194efc8", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 94203, "upload_time": "2020-10-30T15:34:39", "upload_time_iso_8601": "2020-10-30T15:34:39.241862Z", "url": "https://files.pythonhosted.org/packages/81/88/120ee694346db8fab6b1e972a0187fc060018d1d8d628490d92675d86ffb/PythonTwitchBotFramework-1.16.8-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ad12350d8e933e4104a85cb822f6943f", "sha256": "5dd2465024319b5f862731f41cba7b7afc7a7c1b8ac9d40fa5ce50d6ebf9195d" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.16.8.tar.gz", "has_sig": false, "md5_digest": "ad12350d8e933e4104a85cb822f6943f", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 82784, "upload_time": "2020-10-30T15:34:41", "upload_time_iso_8601": "2020-10-30T15:34:41.295547Z", "url": "https://files.pythonhosted.org/packages/10/19/34e6f9bb25439ab5515ab0c793d36484aebae2f44e7427569b02001d405f/PythonTwitchBotFramework-1.16.8.tar.gz", "yanked": false, "yanked_reason": null } ], "1.16.9": [ { "comment_text": "", "digests": { "md5": "df4d9d71dc784b68808a2a412b47793f", "sha256": "1bda52036c4f9a3ee1e003a016fa2173cc570b7c74808a1185a1725b2efa4cf7" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.16.9-py3-none-any.whl", "has_sig": false, "md5_digest": "df4d9d71dc784b68808a2a412b47793f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 94246, "upload_time": "2020-11-01T11:55:10", "upload_time_iso_8601": "2020-11-01T11:55:10.553584Z", "url": "https://files.pythonhosted.org/packages/6e/b4/2be5b8c3f81f3af7f1360073f357184a88e9ef56fbcbd1fe1ae1511e3e2c/PythonTwitchBotFramework-1.16.9-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a477b376e5af82e99cd1c8d138543bc1", "sha256": "0218fe7d68fb0187a21cf6d0081e82b71cc38526cdb31bb7fcc3b2b19c6970ee" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.16.9.tar.gz", "has_sig": false, "md5_digest": "a477b376e5af82e99cd1c8d138543bc1", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 82837, "upload_time": "2020-11-01T11:55:12", "upload_time_iso_8601": "2020-11-01T11:55:12.197308Z", "url": "https://files.pythonhosted.org/packages/d6/f8/060f381787fccb3e2ef725073d3302eed4e9fedab050ef96c42206a398fc/PythonTwitchBotFramework-1.16.9.tar.gz", "yanked": false, "yanked_reason": null } ], "1.17.0": [ { "comment_text": "", "digests": { "md5": "8e4c4ccff72f35013f2a12496b42c242", "sha256": "10e72c083af01d04cca017a25d447dfb54159b77fcda48e89c4d9c4b442459a8" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.17.0-py3-none-any.whl", "has_sig": false, "md5_digest": "8e4c4ccff72f35013f2a12496b42c242", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 94955, "upload_time": "2020-12-03T04:29:32", "upload_time_iso_8601": "2020-12-03T04:29:32.971929Z", "url": "https://files.pythonhosted.org/packages/b3/31/89bd1cfd4da5f87f5eb3a050838d4ece9b175d86e75441f4e6c8c6ab95f7/PythonTwitchBotFramework-1.17.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5eebc64c1cd4b235e5d2197a3dfa5efe", "sha256": "e42858fec7d61eb02f34e9eefdcbba725a12202cb5e5fa412e542e9e82f0d499" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.17.0.tar.gz", "has_sig": false, "md5_digest": "5eebc64c1cd4b235e5d2197a3dfa5efe", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 83237, "upload_time": "2020-12-03T04:29:34", "upload_time_iso_8601": "2020-12-03T04:29:34.943849Z", "url": "https://files.pythonhosted.org/packages/00/6d/9b1238a2dce60a517eebaf97d40d04fce78af78c0b504a1ac618a043e467/PythonTwitchBotFramework-1.17.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.17.1": [ { "comment_text": "", "digests": { "md5": "337379e416be014e7557bf273c5942fa", "sha256": "f95f7d60c2cf515e6142fcbcc202299dbd3c495ccb439d2dc7652bf890942cba" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.17.1-py3-none-any.whl", "has_sig": false, "md5_digest": "337379e416be014e7557bf273c5942fa", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 94956, "upload_time": "2020-12-03T16:45:05", "upload_time_iso_8601": "2020-12-03T16:45:05.658857Z", "url": "https://files.pythonhosted.org/packages/8c/b8/6dacfcb6aa0e29a3604338178258f1064f409b3fef1fb577396ed3ad2d55/PythonTwitchBotFramework-1.17.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c5a6d7a8d18466c79d3fc87dc3fb3120", "sha256": "f5e2b0aa4a6e8fbac13b5edaba3d31918cc72f4c86009dd67b4aad514d46c00f" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.17.1.tar.gz", "has_sig": false, "md5_digest": "c5a6d7a8d18466c79d3fc87dc3fb3120", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 83206, "upload_time": "2020-12-03T16:45:07", "upload_time_iso_8601": "2020-12-03T16:45:07.627716Z", "url": "https://files.pythonhosted.org/packages/f3/c0/b98edd5f139baa182e8768959d4b871f8da1f6b7585ff340ef9543af8d6e/PythonTwitchBotFramework-1.17.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.17.2": [ { "comment_text": "", "digests": { "md5": "ddbba0a88f98b4450fd14cbb0c181dd6", "sha256": "142437d365e40b20f2fd353446c12c7df816f5747199da3c9f0930f9a290cd7b" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.17.2-py3-none-any.whl", "has_sig": false, "md5_digest": "ddbba0a88f98b4450fd14cbb0c181dd6", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 94982, "upload_time": "2020-12-03T19:07:04", "upload_time_iso_8601": "2020-12-03T19:07:04.990968Z", "url": "https://files.pythonhosted.org/packages/ac/7c/2a34b3fddcf44bb4a98c699a32f742df7163088a617d63e4c207bd7497ff/PythonTwitchBotFramework-1.17.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "59432eb2fb0e2b29224086307bb56f76", "sha256": "ca57c7139b4b87e46d572f2e973db69e6300e0f336810187cc6f76d7a1dcdbe3" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.17.2.tar.gz", "has_sig": false, "md5_digest": "59432eb2fb0e2b29224086307bb56f76", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 83230, "upload_time": "2020-12-03T19:07:06", "upload_time_iso_8601": "2020-12-03T19:07:06.537737Z", "url": "https://files.pythonhosted.org/packages/40/3b/b4d7fb954542a7846ea22d63b6cab564aa26ef29241d5e2fbb7e1f5f4906/PythonTwitchBotFramework-1.17.2.tar.gz", "yanked": false, "yanked_reason": null } ], "1.17.3": [ { "comment_text": "", "digests": { "md5": "b457445dcf8a06b31c8329f2b917a8d6", "sha256": "2400d743cf4f4cc61b9f66a06fdab96200707601898559bccc7451f9541db9f6" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.17.3-py3-none-any.whl", "has_sig": false, "md5_digest": "b457445dcf8a06b31c8329f2b917a8d6", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 95060, "upload_time": "2020-12-03T21:11:10", "upload_time_iso_8601": "2020-12-03T21:11:10.476998Z", "url": "https://files.pythonhosted.org/packages/26/18/dff9c607dedab1176263c781b4c9b5a21e25e959613c3e560fdc919146d4/PythonTwitchBotFramework-1.17.3-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d2aa42090824576266f922059c122f55", "sha256": "5d11d335b7a0fe0d76966256a6c82e4f58cb1833d57a19c015628fcd613267c8" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.17.3.tar.gz", "has_sig": false, "md5_digest": "d2aa42090824576266f922059c122f55", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 83310, "upload_time": "2020-12-03T21:11:12", "upload_time_iso_8601": "2020-12-03T21:11:12.305738Z", "url": "https://files.pythonhosted.org/packages/ee/5b/53ea4c62f0f76ed5af91bf03fee5ed04e5f34b44753a0db7979747437acc/PythonTwitchBotFramework-1.17.3.tar.gz", "yanked": false, "yanked_reason": null } ], "1.17.4": [ { "comment_text": "", "digests": { "md5": "4c58ed1e985bb47e8edf721c3b03a236", "sha256": "bb352f663687b87396ae27af0304125c93a7596ede10e22c400acaf326c59177" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.17.4-py3-none-any.whl", "has_sig": false, "md5_digest": "4c58ed1e985bb47e8edf721c3b03a236", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 95152, "upload_time": "2020-12-04T00:15:51", "upload_time_iso_8601": "2020-12-04T00:15:51.146492Z", "url": "https://files.pythonhosted.org/packages/b7/e1/55aaded535bfa3433895b5bb8f2f3b3c8a1b152006141ad34bfd0798d564/PythonTwitchBotFramework-1.17.4-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "058b27fcf33b7419e45e172cbd775e8b", "sha256": "245d0dad75ec9e4ea7486d3b706fde2ceff592819005a4becf231be16ad12e84" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.17.4.tar.gz", "has_sig": false, "md5_digest": "058b27fcf33b7419e45e172cbd775e8b", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 83394, "upload_time": "2020-12-04T00:15:52", "upload_time_iso_8601": "2020-12-04T00:15:52.664267Z", "url": "https://files.pythonhosted.org/packages/ad/02/bf5531e19e7ccf268c1b975651a8bb251ff7d4fcbd270f2465d55e021e8d/PythonTwitchBotFramework-1.17.4.tar.gz", "yanked": false, "yanked_reason": null } ], "1.17.6": [ { "comment_text": "", "digests": { "md5": "d2ff9585b627a1196708d433600a1da9", "sha256": "57dd4650c8413f82be0b0eccd8904463d591dc0ab1631ac3ea328be7a5147fa5" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.17.6-py3-none-any.whl", "has_sig": false, "md5_digest": "d2ff9585b627a1196708d433600a1da9", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 95327, "upload_time": "2020-12-04T23:48:05", "upload_time_iso_8601": "2020-12-04T23:48:05.374506Z", "url": "https://files.pythonhosted.org/packages/fa/9c/4e1c3ddb41f556cc51fb3bbd48f5dd6cfe62026f6cda267eb3f14390f2c0/PythonTwitchBotFramework-1.17.6-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e68e55d3daf43bdb6fcb7b9110e6af1e", "sha256": "97155eb7c24449b8b2d96ebdc6329eff3bf490b07f0f6e140eafb70b41338601" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.17.6.tar.gz", "has_sig": false, "md5_digest": "e68e55d3daf43bdb6fcb7b9110e6af1e", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 83609, "upload_time": "2020-12-04T23:48:07", "upload_time_iso_8601": "2020-12-04T23:48:07.197273Z", "url": "https://files.pythonhosted.org/packages/b8/c9/937ce5fac3f641cc514f48984db62e03711ca2bc8a687c28b2f75a12f03c/PythonTwitchBotFramework-1.17.6.tar.gz", "yanked": false, "yanked_reason": null } ], "1.18.0": [ { "comment_text": "", "digests": { "md5": "6147ac1a028f81df67e9bb5efd0e27d3", "sha256": "d2d8b36eaf6301cf6d261a2ae6d30cda6710bda8b3c3eaa3051a03060e19bfba" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.18.0-py3-none-any.whl", "has_sig": false, "md5_digest": "6147ac1a028f81df67e9bb5efd0e27d3", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 96242, "upload_time": "2020-12-12T18:41:01", "upload_time_iso_8601": "2020-12-12T18:41:01.177212Z", "url": "https://files.pythonhosted.org/packages/1e/54/3f75f082ea68766a7bce7e63dec5d2736dc8427fcde69314accf1cb7838e/PythonTwitchBotFramework-1.18.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "94e87b173a05810e3850cb19a16ad438", "sha256": "b482404146028b7755b9dd81a98dd2bc6d9ffc3fb4913f59f48d5e60c2cf93a0" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.18.0.tar.gz", "has_sig": false, "md5_digest": "94e87b173a05810e3850cb19a16ad438", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 84302, "upload_time": "2020-12-12T18:41:02", "upload_time_iso_8601": "2020-12-12T18:41:02.812519Z", "url": "https://files.pythonhosted.org/packages/e6/7d/18fa85bf4e0a2c2328c2171b305788f6f0e898b3d2cc0243975eea5439e5/PythonTwitchBotFramework-1.18.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.18.1": [ { "comment_text": "", "digests": { "md5": "68fc2c9da2c08d4411bb194ef8639a9e", "sha256": "d08c88ffcfbb1620f106eedfc8dbce84620673c13f186fe7f136eb95a233d1d3" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.18.1-py3-none-any.whl", "has_sig": false, "md5_digest": "68fc2c9da2c08d4411bb194ef8639a9e", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 96243, "upload_time": "2020-12-12T19:07:44", "upload_time_iso_8601": "2020-12-12T19:07:44.542767Z", "url": "https://files.pythonhosted.org/packages/be/cc/c7f589064bd0c209d41fe14fd120dcff87fd43faf802c3c500cdde2b2c42/PythonTwitchBotFramework-1.18.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5aba41a84a5126899a59bca974013b5f", "sha256": "fb99812f28c3497fb05d188321469333cd92ae4f4f2e0c693153819ca2d2235b" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.18.1.tar.gz", "has_sig": false, "md5_digest": "5aba41a84a5126899a59bca974013b5f", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 84310, "upload_time": "2020-12-12T19:07:46", "upload_time_iso_8601": "2020-12-12T19:07:46.172416Z", "url": "https://files.pythonhosted.org/packages/9e/1d/d81fed9a2a89c351ce786134113366f0b0af40b15cea43cebb95b3dc9adb/PythonTwitchBotFramework-1.18.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.19.0": [ { "comment_text": "", "digests": { "md5": "9129fee22e79f6c23360a160becee8db", "sha256": "2cc27a30166f7237313d8be9a0b465586ceea8105b7566dd8dfb8d63827fce05" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.19.0-py3-none-any.whl", "has_sig": false, "md5_digest": "9129fee22e79f6c23360a160becee8db", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 97434, "upload_time": "2020-12-15T04:42:49", "upload_time_iso_8601": "2020-12-15T04:42:49.192558Z", "url": "https://files.pythonhosted.org/packages/5b/80/9bd00ad46970bfde5ae5d367a1bb2be82d1a43a801afc99647b3d0540942/PythonTwitchBotFramework-1.19.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "41feab9830cb23a8806c5f2b7400b969", "sha256": "33225679ce709fd9d3ddcbb0d9cb3a3b0c33bf7475343355af1e1355fa81224c" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.19.0.tar.gz", "has_sig": false, "md5_digest": "41feab9830cb23a8806c5f2b7400b969", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 85358, "upload_time": "2020-12-15T04:42:51", "upload_time_iso_8601": "2020-12-15T04:42:51.170358Z", "url": "https://files.pythonhosted.org/packages/be/62/d1255a43dea862738f9d7f3a72f419a61818f0c3660cde02e32ce63df203/PythonTwitchBotFramework-1.19.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.19.1": [ { "comment_text": "", "digests": { "md5": "745fbba9c9b2ceb9d1b8f1edaef5271d", "sha256": "4516b3ca9bb7f52fa2b1db875a46e9beaca67c048096a2a582acedf120ee00f9" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.19.1-py3-none-any.whl", "has_sig": false, "md5_digest": "745fbba9c9b2ceb9d1b8f1edaef5271d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 97489, "upload_time": "2020-12-16T21:31:12", "upload_time_iso_8601": "2020-12-16T21:31:12.506874Z", "url": "https://files.pythonhosted.org/packages/76/3f/dafea570af81b91bf7a9c8614a46cd7ae5086a4a95cd497ba0824635d94b/PythonTwitchBotFramework-1.19.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1145cc372ad80676b2755503b9a01885", "sha256": "ff7ea392d32ffa0e4c107847ce2e28b2e6aa0414a2aca917c2792169576942d2" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.19.1.tar.gz", "has_sig": false, "md5_digest": "1145cc372ad80676b2755503b9a01885", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 85460, "upload_time": "2020-12-16T21:31:14", "upload_time_iso_8601": "2020-12-16T21:31:14.088837Z", "url": "https://files.pythonhosted.org/packages/d3/a9/83636838021e511a4ea109bc0e6c2814ad389539849b2ed1313b5dfdf44c/PythonTwitchBotFramework-1.19.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.19.2": [ { "comment_text": "", "digests": { "md5": "391e5f84d5bb03f2198ee65bef370cca", "sha256": "9e6d6b88e0f344a3b42541b89869eaf89ff186732de50ca6b22b999e3aff99a6" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.19.2-py3-none-any.whl", "has_sig": false, "md5_digest": "391e5f84d5bb03f2198ee65bef370cca", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 97392, "upload_time": "2020-12-17T02:01:58", "upload_time_iso_8601": "2020-12-17T02:01:58.365870Z", "url": "https://files.pythonhosted.org/packages/4a/45/0008db2dcbb0b23a0c6ba1db59947daf3995516ce663eac3550868226e60/PythonTwitchBotFramework-1.19.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a56378751ca230eb707c8285a1595b44", "sha256": "b25bd54e363181f8161ad8aea01f6495a38ab5d94377e2d8d8c745f0cc1328ae" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.19.2.tar.gz", "has_sig": false, "md5_digest": "a56378751ca230eb707c8285a1595b44", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 85316, "upload_time": "2020-12-17T02:02:00", "upload_time_iso_8601": "2020-12-17T02:02:00.196216Z", "url": "https://files.pythonhosted.org/packages/8e/48/57bd178cf04e5f24a87d6e0c12de01eb5635b6509fb574c6bee1a41fae25/PythonTwitchBotFramework-1.19.2.tar.gz", "yanked": false, "yanked_reason": null } ], "1.19.3": [ { "comment_text": "", "digests": { "md5": "ebf1feae476ca6a5c26c3129b4bace03", "sha256": "3f2b5ccd0262b0aed34ee6f074ff6ebe3a400da9443359fe650e252e195b0249" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.19.3-py3-none-any.whl", "has_sig": false, "md5_digest": "ebf1feae476ca6a5c26c3129b4bace03", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 97406, "upload_time": "2020-12-19T19:21:37", "upload_time_iso_8601": "2020-12-19T19:21:37.781782Z", "url": "https://files.pythonhosted.org/packages/38/0d/0f2a9085e27c3fb40688c88e3c926aaf05b1cd788c158501dfa1ddbfabb7/PythonTwitchBotFramework-1.19.3-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3b1b78e84b00606855ef0a4ebb6debdc", "sha256": "96a6695bc0a5cf02939fe9b126e06724d35a7cb9bbf6c7d2513d6b3f3d8c9dee" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.19.3.tar.gz", "has_sig": false, "md5_digest": "3b1b78e84b00606855ef0a4ebb6debdc", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 85357, "upload_time": "2020-12-19T19:21:39", "upload_time_iso_8601": "2020-12-19T19:21:39.972576Z", "url": "https://files.pythonhosted.org/packages/97/e6/85168d8e3bcc13f756b46a42b280148418236c36ff4c91a3ef9feddb033d/PythonTwitchBotFramework-1.19.3.tar.gz", "yanked": false, "yanked_reason": null } ], "1.19.4": [ { "comment_text": "", "digests": { "md5": "c055c589029103ba1d21a87b53a33a23", "sha256": "0d2bd81cd970d83dff496fb2f9599d2669559d0ca4daec0e7c28ed4dca1defe4" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.19.4-py3-none-any.whl", "has_sig": false, "md5_digest": "c055c589029103ba1d21a87b53a33a23", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 97423, "upload_time": "2020-12-20T03:32:26", "upload_time_iso_8601": "2020-12-20T03:32:26.399894Z", "url": "https://files.pythonhosted.org/packages/e8/59/4dbdc63f86c2ef6b1f182d24454df93ff87915d5bb62ff760ccf54cd11a5/PythonTwitchBotFramework-1.19.4-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "761746f37c5617b30438b5ea6e8c1bd4", "sha256": "3f024a3321d8255a22aa2743dfd5332263591602c2f0dc2f216c93949e098d20" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.19.4.tar.gz", "has_sig": false, "md5_digest": "761746f37c5617b30438b5ea6e8c1bd4", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 85334, "upload_time": "2020-12-20T03:32:27", "upload_time_iso_8601": "2020-12-20T03:32:27.826734Z", "url": "https://files.pythonhosted.org/packages/cb/fc/32ff59d635cba984a6e56cbda75e40d7800726e3a2b285a3f22da880996c/PythonTwitchBotFramework-1.19.4.tar.gz", "yanked": false, "yanked_reason": null } ], "1.19.5": [ { "comment_text": "", "digests": { "md5": "58e0ad5396a6988431c9f297cbdbdbfe", "sha256": "5437807dc1ad6ee5f071e93b8e8d14359ecc49a98d5f69d4c9686f32cd817a37" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.19.5-py3-none-any.whl", "has_sig": false, "md5_digest": "58e0ad5396a6988431c9f297cbdbdbfe", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 98127, "upload_time": "2020-12-20T18:30:15", "upload_time_iso_8601": "2020-12-20T18:30:15.958435Z", "url": "https://files.pythonhosted.org/packages/d5/a1/4b6ce2b64268f5f892c0f3c3fbd6edf4cc359cfb324c66b37fa5ca9f4270/PythonTwitchBotFramework-1.19.5-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9a8b07940f7867ae56aea0c94fb6a9cf", "sha256": "2b2e2341e8b28a8224ab65cc33c5fa918d654ea4e53b190cf29f3e4814c37a76" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.19.5.tar.gz", "has_sig": false, "md5_digest": "9a8b07940f7867ae56aea0c94fb6a9cf", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 85808, "upload_time": "2020-12-20T18:30:17", "upload_time_iso_8601": "2020-12-20T18:30:17.709004Z", "url": "https://files.pythonhosted.org/packages/3a/5b/7c851800c3538765e3bc19513fe3de437ba78749bb2cf7301c21c4d284e7/PythonTwitchBotFramework-1.19.5.tar.gz", "yanked": false, "yanked_reason": null } ], "1.19.6": [ { "comment_text": "", "digests": { "md5": "0bf74c627d1248133790b328442b61eb", "sha256": "7d3ecaef0d9e1d55cbd682c762f3d5451d995839c66cd6472fe6278e057c6d65" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.19.6-py3-none-any.whl", "has_sig": false, "md5_digest": "0bf74c627d1248133790b328442b61eb", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 98106, "upload_time": "2020-12-20T18:32:33", "upload_time_iso_8601": "2020-12-20T18:32:33.793390Z", "url": "https://files.pythonhosted.org/packages/18/c2/8002464c2bbe8e27c40a3bcfff35b07ce16ecb1d7cabfb54ad0951ab4ef7/PythonTwitchBotFramework-1.19.6-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8efb4e8b7527d5a52678088623101b78", "sha256": "16f343d0a5ff217514a36fa06af5d6a540e17cc11ddbc3ecd3ab19bd4bc7f9d9" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.19.6.tar.gz", "has_sig": false, "md5_digest": "8efb4e8b7527d5a52678088623101b78", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 85719, "upload_time": "2020-12-20T18:32:35", "upload_time_iso_8601": "2020-12-20T18:32:35.555576Z", "url": "https://files.pythonhosted.org/packages/29/aa/e4006e7009c76b97de497787e6d0920fa3686813abf71bc8981c423f5402/PythonTwitchBotFramework-1.19.6.tar.gz", "yanked": false, "yanked_reason": null } ], "1.19.7": [ { "comment_text": "", "digests": { "md5": "f93513257b3fac54b69a75861d79aa5f", "sha256": "5c30f71082acfb6e243a6c611af526572d6e871aa874a30cfff622cde6ffbad0" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.19.7-py3-none-any.whl", "has_sig": false, "md5_digest": "f93513257b3fac54b69a75861d79aa5f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 98221, "upload_time": "2020-12-20T20:13:22", "upload_time_iso_8601": "2020-12-20T20:13:22.388916Z", "url": "https://files.pythonhosted.org/packages/59/ce/6a4a46a37b4b4e66e602ee061bdfb8bd546e2d8ce35b5f74ba5523a2b160/PythonTwitchBotFramework-1.19.7-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c9c5754f1529bda8be8e1662aeaef54e", "sha256": "9fd90cd91626a832fea4a417899a69895cd087863d39e81eaa65060033e47688" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.19.7.tar.gz", "has_sig": false, "md5_digest": "c9c5754f1529bda8be8e1662aeaef54e", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 85849, "upload_time": "2020-12-20T20:13:24", "upload_time_iso_8601": "2020-12-20T20:13:24.193419Z", "url": "https://files.pythonhosted.org/packages/a0/fb/c51d17a56b23490b02c165b2eeceadbbaf9ccfcedd0d1169be14ac2e116e/PythonTwitchBotFramework-1.19.7.tar.gz", "yanked": false, "yanked_reason": null } ], "1.19.8": [ { "comment_text": "", "digests": { "md5": "89585178e73c257e1e538233e3a7efc4", "sha256": "f0fbdb821a8cdd448b2f08a86586dd5a6fd2ac5e1cf862aefce72fa49664bd7f" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.19.8-py3-none-any.whl", "has_sig": false, "md5_digest": "89585178e73c257e1e538233e3a7efc4", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 98284, "upload_time": "2020-12-23T02:03:26", "upload_time_iso_8601": "2020-12-23T02:03:26.951569Z", "url": "https://files.pythonhosted.org/packages/ec/77/b4f940ba5456622893dbc761511730bed212b5677f722f808ec8859444f9/PythonTwitchBotFramework-1.19.8-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "152d30f95fdda8429c9154d6478630ae", "sha256": "307ada0481773d517582bb28e2841993eb619965eb408c63e73141229844d6ad" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.19.8.tar.gz", "has_sig": false, "md5_digest": "152d30f95fdda8429c9154d6478630ae", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 85960, "upload_time": "2020-12-23T02:03:28", "upload_time_iso_8601": "2020-12-23T02:03:28.666938Z", "url": "https://files.pythonhosted.org/packages/63/e7/8deac515b064bf9b4f86495366ce36466e303987861742b3f4452792134a/PythonTwitchBotFramework-1.19.8.tar.gz", "yanked": false, "yanked_reason": null } ], "1.2.0": [ { "comment_text": "", "digests": { "md5": "e541dc68cd85eb7512cce0021bcb12af", "sha256": "fdc4fc6cdd0228e9a5df1eaa09abb208da2de6c7a6a5063a78d6859e744fb772" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.2.0-py3-none-any.whl", "has_sig": false, "md5_digest": "e541dc68cd85eb7512cce0021bcb12af", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 61523, "upload_time": "2019-07-04T04:13:33", "upload_time_iso_8601": "2019-07-04T04:13:33.427030Z", "url": "https://files.pythonhosted.org/packages/56/a6/3690dca5f2f3c8489280fbaae5897029c713d1377347eecbc29e029997a8/PythonTwitchBotFramework-1.2.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7827b4f720cf59f56d23edface71e41e", "sha256": "cfabba45a13c7974b39a7680842a2a385e0e6cd8229a2dbc34cf901feb8779d8" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.2.0.tar.gz", "has_sig": false, "md5_digest": "7827b4f720cf59f56d23edface71e41e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 42138, "upload_time": "2019-07-04T04:13:35", "upload_time_iso_8601": "2019-07-04T04:13:35.215489Z", "url": "https://files.pythonhosted.org/packages/1a/8e/230f24dc021c959be3397b749cefa5e75ba4097ac83ba3c12f999af74e62/PythonTwitchBotFramework-1.2.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.3.0": [ { "comment_text": "", "digests": { "md5": "4c8d267fa712f964dc4fe647b748ded8", "sha256": "cf0a56394c70fa8ee24e754129541d5591e5685616778e82127244ac66626e2e" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.3.0-py3-none-any.whl", "has_sig": false, "md5_digest": "4c8d267fa712f964dc4fe647b748ded8", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 62861, "upload_time": "2019-07-17T20:56:22", "upload_time_iso_8601": "2019-07-17T20:56:22.069581Z", "url": "https://files.pythonhosted.org/packages/89/d0/7ecca75696641dc738f4a9ca1b6764b06374fc9b424c72699059ebaafac2/PythonTwitchBotFramework-1.3.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3c1fe97c08b82b26327bdcddd75e8b7c", "sha256": "d669628451126fb20dcf0b2fa03387f0250e0bab19f3e577bbe6fe35be6fbbcb" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.3.0.tar.gz", "has_sig": false, "md5_digest": "3c1fe97c08b82b26327bdcddd75e8b7c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 43229, "upload_time": "2019-07-17T20:56:24", "upload_time_iso_8601": "2019-07-17T20:56:24.186507Z", "url": "https://files.pythonhosted.org/packages/af/57/faa8cb35294432c26ea48c6b4e1e72b1c95f5e372b524ee8ec331eefd5a5/PythonTwitchBotFramework-1.3.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.3.1": [ { "comment_text": "", "digests": { "md5": "71e08c4109b6c1900765adfe593e2c1b", "sha256": "95a16697a94b6b476c6853b5da45f2a7bfea52764a47601d9f1d83e881d1b191" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.3.1-py3-none-any.whl", "has_sig": false, "md5_digest": "71e08c4109b6c1900765adfe593e2c1b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 63107, "upload_time": "2019-07-17T21:32:09", "upload_time_iso_8601": "2019-07-17T21:32:09.962736Z", "url": "https://files.pythonhosted.org/packages/5a/98/1997b36bab868fd8eb19910afcb1fb31dba6d18c4b2a0f33bb88f0f44fac/PythonTwitchBotFramework-1.3.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "53aaf66f1fc7459ecb0bcc103c49b1ef", "sha256": "5f7a37e00de4dcdd7c0eebd8dce736cacb499a94c75b7dcfc3ec93e1b58f5d85" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.3.1.tar.gz", "has_sig": false, "md5_digest": "53aaf66f1fc7459ecb0bcc103c49b1ef", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 43420, "upload_time": "2019-07-17T21:32:11", "upload_time_iso_8601": "2019-07-17T21:32:11.732280Z", "url": "https://files.pythonhosted.org/packages/b5/83/3214b42efd1de2cbf3aae384b23b2dbba7fe4b2ab5e90d1f689cb9f47bf4/PythonTwitchBotFramework-1.3.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.3.10": [ { "comment_text": "", "digests": { "md5": "c40cb90171932494ff65c8e7812250cc", "sha256": "7378dc8b37e2793ed5e579dddae39056d932aebba9e6e7d36b40753334f6606f" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.3.10-py3-none-any.whl", "has_sig": false, "md5_digest": "c40cb90171932494ff65c8e7812250cc", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 65120, "upload_time": "2019-08-03T21:03:53", "upload_time_iso_8601": "2019-08-03T21:03:53.628714Z", "url": "https://files.pythonhosted.org/packages/a9/c2/96d7b8dfc749a51f8490b1cb87efe13d107834c5a2bdac2c2f42fc677c69/PythonTwitchBotFramework-1.3.10-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b03fadf7da1f2336041b92681bdb5f4e", "sha256": "16891c74b14f13ebb4016eb379d3127fcc50d0278f2430f9bd8e28c5cb1ec40d" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.3.10.tar.gz", "has_sig": false, "md5_digest": "b03fadf7da1f2336041b92681bdb5f4e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 44859, "upload_time": "2019-08-03T21:03:55", "upload_time_iso_8601": "2019-08-03T21:03:55.452352Z", "url": "https://files.pythonhosted.org/packages/69/38/a834e34a2f67db177db487bb4d33287f6555957b6c6c1055bd4ceb21462a/PythonTwitchBotFramework-1.3.10.tar.gz", "yanked": false, "yanked_reason": null } ], "1.3.2": [ { "comment_text": "", "digests": { "md5": "f114fd6d8edfe8db4e24d3f16f648dc2", "sha256": "3a926fb490bd696907db0bb854bec0424483f44faac18920eb72c0ea92ff0901" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.3.2-py3-none-any.whl", "has_sig": false, "md5_digest": "f114fd6d8edfe8db4e24d3f16f648dc2", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 63109, "upload_time": "2019-07-19T16:32:34", "upload_time_iso_8601": "2019-07-19T16:32:34.733191Z", "url": "https://files.pythonhosted.org/packages/1f/b0/420954082d71f85ba1f492d9a6fa29d773c24a09e0db44831195286f0123/PythonTwitchBotFramework-1.3.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8e187d21c2ea63a33e7843610d7fdd17", "sha256": "0792662bc06a550edb046cb0bfdeefb0fb909a0c7796b9d1fef57fcc2735b3dc" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.3.2.tar.gz", "has_sig": false, "md5_digest": "8e187d21c2ea63a33e7843610d7fdd17", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 43444, "upload_time": "2019-07-19T16:32:36", "upload_time_iso_8601": "2019-07-19T16:32:36.721936Z", "url": "https://files.pythonhosted.org/packages/3a/c2/e1a9b6746bc14b314acd698bf90f466ff11f83c2af8570196788be0b2b69/PythonTwitchBotFramework-1.3.2.tar.gz", "yanked": false, "yanked_reason": null } ], "1.3.3": [ { "comment_text": "", "digests": { "md5": "97a3a917b33d0ad18870db10f6c05159", "sha256": "5d603df3fd858d8bc240cea48c560935e158c4d9dff7097b1d72d1853d4cee26" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.3.3-py3-none-any.whl", "has_sig": false, "md5_digest": "97a3a917b33d0ad18870db10f6c05159", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 63355, "upload_time": "2019-07-19T23:11:53", "upload_time_iso_8601": "2019-07-19T23:11:53.365025Z", "url": "https://files.pythonhosted.org/packages/3f/67/332e1f0ca15ec195401f7064a5b3d0cea70e5bbe5f7db4c4f2569628c046/PythonTwitchBotFramework-1.3.3-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "917111644d217a7132dc2b1bfb40702a", "sha256": "8db26429476eafdc5e6a9167bc4880087cc9be0ede563469e3e77f2e198950c5" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.3.3.tar.gz", "has_sig": false, "md5_digest": "917111644d217a7132dc2b1bfb40702a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 43639, "upload_time": "2019-07-19T23:11:55", "upload_time_iso_8601": "2019-07-19T23:11:55.438971Z", "url": "https://files.pythonhosted.org/packages/52/34/c7588c0ed7d566eedb3585f337ebe393246ed7009ee69bf80992d4f6feee/PythonTwitchBotFramework-1.3.3.tar.gz", "yanked": false, "yanked_reason": null } ], "1.3.4": [ { "comment_text": "", "digests": { "md5": "60fd099736c8c50b7628d6fcc48d10f3", "sha256": "0bb9aaf16e8c581ff86950fffde36bcd12e7d34197342c26356701d5fe86c6a4" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.3.4-py3-none-any.whl", "has_sig": false, "md5_digest": "60fd099736c8c50b7628d6fcc48d10f3", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 63384, "upload_time": "2019-07-20T01:26:38", "upload_time_iso_8601": "2019-07-20T01:26:38.793629Z", "url": "https://files.pythonhosted.org/packages/9b/eb/c4c49cf48aab0558a4ed2bd86f250e78925eb62f5c19309171f04146bcf0/PythonTwitchBotFramework-1.3.4-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b5d0e178c6cfcb85c16c0083ecd93d9b", "sha256": "fe2fe50e29bbb83f16997450fc56e9d608ef1596b54bb793699d90831d79a096" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.3.4.tar.gz", "has_sig": false, "md5_digest": "b5d0e178c6cfcb85c16c0083ecd93d9b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 43662, "upload_time": "2019-07-20T01:26:40", "upload_time_iso_8601": "2019-07-20T01:26:40.265444Z", "url": "https://files.pythonhosted.org/packages/2f/88/65bd264ddf5c57ea51fac18be3bf7cd8b90a1b04a686f0e5d3c1809ccf4e/PythonTwitchBotFramework-1.3.4.tar.gz", "yanked": false, "yanked_reason": null } ], "1.3.5": [ { "comment_text": "", "digests": { "md5": "2630f6ba590c1e6a196aae7afbb8e48e", "sha256": "76a5981395caeddab420edadb7428ae44b2608664785850d5b5bac17f34894b0" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.3.5-py3-none-any.whl", "has_sig": false, "md5_digest": "2630f6ba590c1e6a196aae7afbb8e48e", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 63499, "upload_time": "2019-07-20T05:21:36", "upload_time_iso_8601": "2019-07-20T05:21:36.830241Z", "url": "https://files.pythonhosted.org/packages/46/43/54adfc79a679874459acdad8e7d3002d0900b56eac7605ab7e33f3364aef/PythonTwitchBotFramework-1.3.5-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b995bb8d39536b99ce6a6b91f25e489c", "sha256": "ca0f3012ad314c3fb8ccb826c9a5ad0c32c680204af3ce3e4cc6083adef73d5f" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.3.5.tar.gz", "has_sig": false, "md5_digest": "b995bb8d39536b99ce6a6b91f25e489c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 43780, "upload_time": "2019-07-20T05:21:38", "upload_time_iso_8601": "2019-07-20T05:21:38.732360Z", "url": "https://files.pythonhosted.org/packages/36/68/a5f53d96751c478e28a00be9223de3659776f1e8b5da0d60c2de7b35444f/PythonTwitchBotFramework-1.3.5.tar.gz", "yanked": false, "yanked_reason": null } ], "1.3.6": [ { "comment_text": "", "digests": { "md5": "ff96bfef88f75b515ebf1812ee9b8bd1", "sha256": "516828c2bc6a82a49e59e7a774577a31ff062dcdd93dd4f58ee85885061dcb3f" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.3.6-py3-none-any.whl", "has_sig": false, "md5_digest": "ff96bfef88f75b515ebf1812ee9b8bd1", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 63874, "upload_time": "2019-07-20T21:45:44", "upload_time_iso_8601": "2019-07-20T21:45:44.696988Z", "url": "https://files.pythonhosted.org/packages/16/68/870ee8d23bfaaf7c4806cb244493d2057341379a9f39485a5dcf01377c98/PythonTwitchBotFramework-1.3.6-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b0fdfb41c2b174395ffec90aecc8e8df", "sha256": "2ecc7d87e29fe69699eeecfadca735b2577f4d9ddefa7c95dfcb8191e52d3163" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.3.6.tar.gz", "has_sig": false, "md5_digest": "b0fdfb41c2b174395ffec90aecc8e8df", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 44105, "upload_time": "2019-07-20T21:45:46", "upload_time_iso_8601": "2019-07-20T21:45:46.673510Z", "url": "https://files.pythonhosted.org/packages/bd/ca/4d9b4219cd09a12340a8c037460fb99f529e2860e82453c6599fbf5f6168/PythonTwitchBotFramework-1.3.6.tar.gz", "yanked": false, "yanked_reason": null } ], "1.3.7": [ { "comment_text": "", "digests": { "md5": "b49ded0335843c92144024cdff03d5d0", "sha256": "330c446821c1a9567615c61482baa4fa8564c0b81c108aa29ad20591309ab974" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.3.7-py3-none-any.whl", "has_sig": false, "md5_digest": "b49ded0335843c92144024cdff03d5d0", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 64047, "upload_time": "2019-07-23T00:21:32", "upload_time_iso_8601": "2019-07-23T00:21:32.879068Z", "url": "https://files.pythonhosted.org/packages/e4/f5/25626591090b2cbdfbd2a9d0b6f84059f05f84c7e1797940853c028eec2d/PythonTwitchBotFramework-1.3.7-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a89bee1d208a92f5b80987a892457921", "sha256": "79a99571b2678ae67b5ed7e6e5eb0fa471d79d36fedba9454231164505bf512d" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.3.7.tar.gz", "has_sig": false, "md5_digest": "a89bee1d208a92f5b80987a892457921", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 44349, "upload_time": "2019-07-23T00:21:34", "upload_time_iso_8601": "2019-07-23T00:21:34.764525Z", "url": "https://files.pythonhosted.org/packages/70/d0/c22bbadb4db7e9070302c353601c2e47aefd21af38904b99ca5514a2a5d4/PythonTwitchBotFramework-1.3.7.tar.gz", "yanked": false, "yanked_reason": null } ], "1.3.9": [ { "comment_text": "", "digests": { "md5": "d023eb3f0c347ac45913ca58daa46aba", "sha256": "24aed452330514c7020889e6c82ee5af8c0ca115c80c678c24b5b6ffc91cc2f5" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.3.9-py3-none-any.whl", "has_sig": false, "md5_digest": "d023eb3f0c347ac45913ca58daa46aba", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 65073, "upload_time": "2019-08-03T19:41:55", "upload_time_iso_8601": "2019-08-03T19:41:55.127670Z", "url": "https://files.pythonhosted.org/packages/8e/8f/282b68bdf953703904fc2a8eeb094294bcc48faaf37223bad02d06d7e749/PythonTwitchBotFramework-1.3.9-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "92ba712b346a5e7edfcfed0b502b3170", "sha256": "9fee748e634810aa812be8421de51cf9449a5e26d7a84647a1d44bfbcdd02bd3" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.3.9.tar.gz", "has_sig": false, "md5_digest": "92ba712b346a5e7edfcfed0b502b3170", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 44838, "upload_time": "2019-08-03T19:41:56", "upload_time_iso_8601": "2019-08-03T19:41:56.990067Z", "url": "https://files.pythonhosted.org/packages/38/82/c041ff3f735648ed6d1d324f48fa1938db77f00f03460b0a4aba86b82253/PythonTwitchBotFramework-1.3.9.tar.gz", "yanked": false, "yanked_reason": null } ], "1.4.10": [ { "comment_text": "", "digests": { "md5": "45568eff608707fa1db7e13a6ee58930", "sha256": "438b761b932848c0a6c78eec621ebc76f9f3fbbb0eb7f9723116b686eb2a75aa" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.4.10-py3-none-any.whl", "has_sig": false, "md5_digest": "45568eff608707fa1db7e13a6ee58930", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 65612, "upload_time": "2019-08-08T21:27:50", "upload_time_iso_8601": "2019-08-08T21:27:50.871456Z", "url": "https://files.pythonhosted.org/packages/0e/ad/e1c98253af3d04ce007f6bd3aec7595177f7aad2475183c09a185c6874ef/PythonTwitchBotFramework-1.4.10-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "12bcf7648d252542732d7806d794256a", "sha256": "4081849d4c2512a54d1b45f88d86d23f9d1037fb5a47d6f5248ffec0a3ee688f" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.4.10.tar.gz", "has_sig": false, "md5_digest": "12bcf7648d252542732d7806d794256a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 45417, "upload_time": "2019-08-08T21:27:52", "upload_time_iso_8601": "2019-08-08T21:27:52.706127Z", "url": "https://files.pythonhosted.org/packages/d9/26/17a754243dddc4c55372981ca4e257c92597fa057e504bd4e72ceb1cb5b4/PythonTwitchBotFramework-1.4.10.tar.gz", "yanked": false, "yanked_reason": null } ], "1.4.11": [ { "comment_text": "", "digests": { "md5": "fd708e0c3c9713b612a341e99eb2964e", "sha256": "bb9f46574a9bb36201815d8328c6a58c5f038d3aa2f1df5152819a2b1b7b049b" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.4.11-py3-none-any.whl", "has_sig": false, "md5_digest": "fd708e0c3c9713b612a341e99eb2964e", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 65779, "upload_time": "2019-08-10T02:25:01", "upload_time_iso_8601": "2019-08-10T02:25:01.035774Z", "url": "https://files.pythonhosted.org/packages/6b/16/a59d8f0c00977c00976e77799e9455b8b57fb0a58923fb3202fc0eef9ce4/PythonTwitchBotFramework-1.4.11-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ad108da94b61eb95bbf20cfb8dca550c", "sha256": "4173e7c0c5b26931ed55b48c13ebb70651d450cf41f12bb2311397ba9074b619" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.4.11.tar.gz", "has_sig": false, "md5_digest": "ad108da94b61eb95bbf20cfb8dca550c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 45578, "upload_time": "2019-08-10T02:25:03", "upload_time_iso_8601": "2019-08-10T02:25:03.126952Z", "url": "https://files.pythonhosted.org/packages/63/3a/f4105d01038e1f4bcb8b0cbea671bb3166778321fad26dfb1a736e22da7c/PythonTwitchBotFramework-1.4.11.tar.gz", "yanked": false, "yanked_reason": null } ], "1.4.12": [ { "comment_text": "", "digests": { "md5": "94035a6eace8d7f2c59a3e3035145e7a", "sha256": "1eb65d9b15337d354b6b6d581c2c08169670ca8bfd1f3719c299e31cda6e96ee" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.4.12-py3-none-any.whl", "has_sig": false, "md5_digest": "94035a6eace8d7f2c59a3e3035145e7a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 65841, "upload_time": "2019-08-14T22:19:00", "upload_time_iso_8601": "2019-08-14T22:19:00.789032Z", "url": "https://files.pythonhosted.org/packages/d0/4e/ebc83b30fa71f1821475bb29308c4144cacfc09b339a6d73d5062637c27d/PythonTwitchBotFramework-1.4.12-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "eee9e6d9939162f8bdf3e60367a49610", "sha256": "9f7c879869e3760369f6a969f45538db456fd96b03bbc265e463d5510e868d66" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.4.12.tar.gz", "has_sig": false, "md5_digest": "eee9e6d9939162f8bdf3e60367a49610", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 45647, "upload_time": "2019-08-14T22:19:02", "upload_time_iso_8601": "2019-08-14T22:19:02.781098Z", "url": "https://files.pythonhosted.org/packages/33/e5/d3a6a0ea43fbbc2b7ce6eb2f0bb7dbd70bf81461cf67856835dfdf3e650a/PythonTwitchBotFramework-1.4.12.tar.gz", "yanked": false, "yanked_reason": null } ], "1.4.13": [ { "comment_text": "", "digests": { "md5": "bef44d83b8912224d1508b2de16f9268", "sha256": "2937aec15310bec86b5755134ebde7dc985d16e980337a2bc4c3d95e40f56a74" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.4.13-py3-none-any.whl", "has_sig": false, "md5_digest": "bef44d83b8912224d1508b2de16f9268", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 65861, "upload_time": "2019-08-15T20:18:02", "upload_time_iso_8601": "2019-08-15T20:18:02.667598Z", "url": "https://files.pythonhosted.org/packages/f9/63/be7347a9da77285afec82353dc776fe10fabcc240f8dbdd0861195d6f27f/PythonTwitchBotFramework-1.4.13-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fadd794b303b6c92a9b67f0aef871580", "sha256": "dbf2d55ba4c51f183b7a2f8ea9e51d05dc3826ffa75dc8195cb785d8dec9f0a1" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.4.13.tar.gz", "has_sig": false, "md5_digest": "fadd794b303b6c92a9b67f0aef871580", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 45666, "upload_time": "2019-08-15T20:18:04", "upload_time_iso_8601": "2019-08-15T20:18:04.722970Z", "url": "https://files.pythonhosted.org/packages/bf/6a/6769967fb833bdfae4b08fca2ba00f722ff46f8fc3330df966fd0029b359/PythonTwitchBotFramework-1.4.13.tar.gz", "yanked": false, "yanked_reason": null } ], "1.5.13": [ { "comment_text": "", "digests": { "md5": "bd99a17f29c31cdf2956ebf2ace83a7c", "sha256": "11196bcfe4b025ab0d881dc62db088ef2d728a99cbfcfc8a697e53387b262761" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.5.13-py3-none-any.whl", "has_sig": false, "md5_digest": "bd99a17f29c31cdf2956ebf2ace83a7c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 66379, "upload_time": "2019-10-09T01:50:37", "upload_time_iso_8601": "2019-10-09T01:50:37.835402Z", "url": "https://files.pythonhosted.org/packages/4f/b3/b28822dcf63fefb7a43971a62ff8f91b460d3eb0ef8bbdffb3ee062aad74/PythonTwitchBotFramework-1.5.13-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d30bad050301d1fb2772b2ea76a5f0e4", "sha256": "787725b634d47a058a8d5113c391c282c4a34e9a6d790739ef486007e3aaf493" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.5.13.tar.gz", "has_sig": false, "md5_digest": "d30bad050301d1fb2772b2ea76a5f0e4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 46075, "upload_time": "2019-10-09T01:50:39", "upload_time_iso_8601": "2019-10-09T01:50:39.459637Z", "url": "https://files.pythonhosted.org/packages/c1/1f/834f65c9f24201fd23fbce071944e2e43850880b9bc07f03484b9d2dde3a/PythonTwitchBotFramework-1.5.13.tar.gz", "yanked": false, "yanked_reason": null } ], "1.5.14": [ { "comment_text": "", "digests": { "md5": "0a6379a5670dc33e376d6bf68784cd4b", "sha256": "1fa600626a6661cbf89c0f3996b82f00c25f762c7abb2ba32dc0b46bcd7fde63" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.5.14-py3-none-any.whl", "has_sig": false, "md5_digest": "0a6379a5670dc33e376d6bf68784cd4b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 66602, "upload_time": "2019-10-14T02:45:22", "upload_time_iso_8601": "2019-10-14T02:45:22.640835Z", "url": "https://files.pythonhosted.org/packages/4b/70/300302084319b4d8a19723690323a0eeadf439d9d55e32c2246509a7c847/PythonTwitchBotFramework-1.5.14-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c015559b1cb89113c1daac3696affd38", "sha256": "74e4c5d926f0c9bea0d1b820d8d1a61f9c9905ffca712e3dc40ad910d181ef31" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.5.14.tar.gz", "has_sig": false, "md5_digest": "c015559b1cb89113c1daac3696affd38", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 46308, "upload_time": "2019-10-14T02:45:24", "upload_time_iso_8601": "2019-10-14T02:45:24.756382Z", "url": "https://files.pythonhosted.org/packages/52/b5/5c8ef1948b41b5f584409e45f11f6911faaeb69803a807bf6414dc8166a5/PythonTwitchBotFramework-1.5.14.tar.gz", "yanked": false, "yanked_reason": null } ], "1.5.15": [ { "comment_text": "", "digests": { "md5": "43cbd6ff3588795879f0e645a4107b9c", "sha256": "cbc1770f02001717d8814a15731e63026b6666ecfae28f09665340ab0ec167ae" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.5.15-py3-none-any.whl", "has_sig": false, "md5_digest": "43cbd6ff3588795879f0e645a4107b9c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 66900, "upload_time": "2019-10-14T21:14:14", "upload_time_iso_8601": "2019-10-14T21:14:14.730778Z", "url": "https://files.pythonhosted.org/packages/9a/42/07e3e71cd62cc9c32c5c4f4f35e8cc0bd51094c4b7f247f737e2373df679/PythonTwitchBotFramework-1.5.15-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bd8f2fcdd5f2699a7315d934848a0caf", "sha256": "aef0956e37e4dc64b513e343d7c2a20565d2abbf06be7c93a75831b990be1889" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.5.15.tar.gz", "has_sig": false, "md5_digest": "bd8f2fcdd5f2699a7315d934848a0caf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 46559, "upload_time": "2019-10-14T21:14:19", "upload_time_iso_8601": "2019-10-14T21:14:19.886791Z", "url": "https://files.pythonhosted.org/packages/19/30/08bb98009ae4a21f519af56b0a29b34949ca43c4394f75e6061c236a9411/PythonTwitchBotFramework-1.5.15.tar.gz", "yanked": false, "yanked_reason": null } ], "1.6.15": [ { "comment_text": "", "digests": { "md5": "7b9c09f291e1a42a4c7e21a8b74b053e", "sha256": "1dc3599c29987b6bee8633f7070b0699c6eb0a719ce0b882109f2857849110ab" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.6.15-py3-none-any.whl", "has_sig": false, "md5_digest": "7b9c09f291e1a42a4c7e21a8b74b053e", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 67183, "upload_time": "2019-10-24T04:11:52", "upload_time_iso_8601": "2019-10-24T04:11:52.319986Z", "url": "https://files.pythonhosted.org/packages/3b/5d/5ed58ab4acf82ecf9e1b6575bf30de9041a5c062ed3b027341fe1ec8fc98/PythonTwitchBotFramework-1.6.15-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9ca90d2a17108a52891224567f020690", "sha256": "3d2da86ae4cb53f143f75bae17d30e06a16124220f5775ff7b06db55f3edd56e" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.6.15.tar.gz", "has_sig": false, "md5_digest": "9ca90d2a17108a52891224567f020690", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 46903, "upload_time": "2019-10-24T04:11:54", "upload_time_iso_8601": "2019-10-24T04:11:54.346577Z", "url": "https://files.pythonhosted.org/packages/b4/24/8575438393de881e53c7fde999abe87465ed6c2f86a792b1148d45aeeb7b/PythonTwitchBotFramework-1.6.15.tar.gz", "yanked": false, "yanked_reason": null } ], "1.6.16": [ { "comment_text": "", "digests": { "md5": "e64f349f74edbaba522f712c44e34dca", "sha256": "b29ece6ab58627b432949b6f34373ba20a883ee4485700dabc52011e911988c5" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.6.16-py3-none-any.whl", "has_sig": false, "md5_digest": "e64f349f74edbaba522f712c44e34dca", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 67235, "upload_time": "2019-10-28T00:26:12", "upload_time_iso_8601": "2019-10-28T00:26:12.977382Z", "url": "https://files.pythonhosted.org/packages/55/24/d50213518716de0ad79f07203cf859ae10dea43d21dbcae5efdca4475097/PythonTwitchBotFramework-1.6.16-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fc41e4eac4fa3f6c302c0c2edc35b5bc", "sha256": "601d9bd74d0e9dd193e9fe15eb9fc3973ac31e0e9cd1a1d7e225a9524e5cb133" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.6.16.tar.gz", "has_sig": false, "md5_digest": "fc41e4eac4fa3f6c302c0c2edc35b5bc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 46964, "upload_time": "2019-10-28T00:26:14", "upload_time_iso_8601": "2019-10-28T00:26:14.902592Z", "url": "https://files.pythonhosted.org/packages/b0/38/77433af93e625c681f19de0def0fabaa32de1a2972219f2ca67519c15d54/PythonTwitchBotFramework-1.6.16.tar.gz", "yanked": false, "yanked_reason": null } ], "1.6.19": [ { "comment_text": "", "digests": { "md5": "69b21a1f28cdbae50cd3b21155b6488e", "sha256": "f275f5f30a398b34fe30cfe1313c8abc32e0bf570204774577f7097a84cce04d" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.6.19-py3-none-any.whl", "has_sig": false, "md5_digest": "69b21a1f28cdbae50cd3b21155b6488e", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 67345, "upload_time": "2019-10-29T04:27:58", "upload_time_iso_8601": "2019-10-29T04:27:58.576429Z", "url": "https://files.pythonhosted.org/packages/82/d0/2d65184c46443bbae30c4adbcedd6391f6379d6536e7dc1be79be0298faf/PythonTwitchBotFramework-1.6.19-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "de74b69674eb905b3831cabbe7bc8fe0", "sha256": "2a7f2e6d057853291428ee40e68e3511b9ea84c15eb6a9e21c6aac6d036f048d" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.6.19.tar.gz", "has_sig": false, "md5_digest": "de74b69674eb905b3831cabbe7bc8fe0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 47073, "upload_time": "2019-10-29T04:28:00", "upload_time_iso_8601": "2019-10-29T04:28:00.421691Z", "url": "https://files.pythonhosted.org/packages/ab/ed/2abd65f339f6785475dd9a32ca5b8c00e7a82e85e5d011dec6b33d3d1c64/PythonTwitchBotFramework-1.6.19.tar.gz", "yanked": false, "yanked_reason": null } ], "1.7.19": [ { "comment_text": "", "digests": { "md5": "7f18e857b3a5ec8509c4907804626823", "sha256": "5004c27f5df15b10a873d79284892a513e2584dda7702222aebc17bc8f905ca0" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.7.19-py3-none-any.whl", "has_sig": false, "md5_digest": "7f18e857b3a5ec8509c4907804626823", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 67648, "upload_time": "2019-11-02T04:45:00", "upload_time_iso_8601": "2019-11-02T04:45:00.426780Z", "url": "https://files.pythonhosted.org/packages/3d/10/5fd250bcf0d3420252e4b9249777b7bf0ec5de89c753b3ec21a38d409bdc/PythonTwitchBotFramework-1.7.19-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2b7ae6ec782051d8fc484481f1315bc6", "sha256": "c956f7ccc2de12406c0d6e23ce0784ce7e05d1b3af0419ace8e4ac890190fa90" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.7.19.tar.gz", "has_sig": false, "md5_digest": "2b7ae6ec782051d8fc484481f1315bc6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 47212, "upload_time": "2019-11-02T04:45:02", "upload_time_iso_8601": "2019-11-02T04:45:02.467904Z", "url": "https://files.pythonhosted.org/packages/d9/ac/05dfca750b4c9754dbe894cdf395f59715329c2482790d43ab5763c7791d/PythonTwitchBotFramework-1.7.19.tar.gz", "yanked": false, "yanked_reason": null } ], "1.8.19": [ { "comment_text": "", "digests": { "md5": "7208183fbb89a3fa15fdb5373a1b4ebf", "sha256": "8ab197e93463e1af9bdde829f0d2e41d4d2113db1fe548d599bdbc468c60ca23" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.8.19-py3-none-any.whl", "has_sig": false, "md5_digest": "7208183fbb89a3fa15fdb5373a1b4ebf", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 70174, "upload_time": "2019-11-03T23:44:58", "upload_time_iso_8601": "2019-11-03T23:44:58.231439Z", "url": "https://files.pythonhosted.org/packages/98/ba/329384372fdd4e8e44a2904ce22031b4e714f916c4383cdeef2c31e83864/PythonTwitchBotFramework-1.8.19-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ffd619bb97b1932fe727d597ff549bad", "sha256": "21c02fdf78db3bd0c0b6f47f75cfd426d605962fc258295646ccfe743eb7ddc1" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.8.19.tar.gz", "has_sig": false, "md5_digest": "ffd619bb97b1932fe727d597ff549bad", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 49107, "upload_time": "2019-11-03T23:45:00", "upload_time_iso_8601": "2019-11-03T23:45:00.358781Z", "url": "https://files.pythonhosted.org/packages/61/3b/8cca3dd71d376ac15cf406c90c25080a77a74ac0489d9191892974ebdee5/PythonTwitchBotFramework-1.8.19.tar.gz", "yanked": false, "yanked_reason": null } ], "1.8.20": [ { "comment_text": "", "digests": { "md5": "10bc1acee2378a69f719e3492b5f1665", "sha256": "b727c100e494ac0086b025a227b0dd03a78e2bdac2d0739ba12165e9954be4cc" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.8.20-py3-none-any.whl", "has_sig": false, "md5_digest": "10bc1acee2378a69f719e3492b5f1665", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 70228, "upload_time": "2019-11-03T23:56:13", "upload_time_iso_8601": "2019-11-03T23:56:13.724217Z", "url": "https://files.pythonhosted.org/packages/8b/5d/056e59bf6e02172c6f4ec2959d6403244173b106d44542661478f8280de0/PythonTwitchBotFramework-1.8.20-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b1c32437eabd115e6cc2388c1c650982", "sha256": "f68f1d60190626ad04875d5e2686babc6064d768bfa57e2703a932548e9dabf9" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.8.20.tar.gz", "has_sig": false, "md5_digest": "b1c32437eabd115e6cc2388c1c650982", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 49159, "upload_time": "2019-11-03T23:56:15", "upload_time_iso_8601": "2019-11-03T23:56:15.658479Z", "url": "https://files.pythonhosted.org/packages/ce/f3/938033db3fce1735b07534ed186756bc610e833ca4570b511f53f3b2f900/PythonTwitchBotFramework-1.8.20.tar.gz", "yanked": false, "yanked_reason": null } ], "1.8.21": [ { "comment_text": "", "digests": { "md5": "ee4de536dfd8940df26b5e600f5bd69b", "sha256": "1a8c080aa88295050f2cccfba9832acfea92796e4b1be414481dbac210473fd2" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.8.21-py3-none-any.whl", "has_sig": false, "md5_digest": "ee4de536dfd8940df26b5e600f5bd69b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 70245, "upload_time": "2019-11-11T23:39:54", "upload_time_iso_8601": "2019-11-11T23:39:54.243588Z", "url": "https://files.pythonhosted.org/packages/56/2a/82b30578fd13918f8bc7add36d9158e3d4309457d372f4ee1cef9e5bfca2/PythonTwitchBotFramework-1.8.21-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "40b07f3793cf4aa86b699880a283b7de", "sha256": "55cbdd605afd863d753233b5a9072fac731b4468fafc0c5fbe2c9157b83edc0a" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.8.21.tar.gz", "has_sig": false, "md5_digest": "40b07f3793cf4aa86b699880a283b7de", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 49196, "upload_time": "2019-11-11T23:39:56", "upload_time_iso_8601": "2019-11-11T23:39:56.211604Z", "url": "https://files.pythonhosted.org/packages/82/67/39dbbd2f6e6516109a7452c781ad8e059831a3d32114273ebca4a61498ba/PythonTwitchBotFramework-1.8.21.tar.gz", "yanked": false, "yanked_reason": null } ], "1.8.22": [ { "comment_text": "", "digests": { "md5": "f22d0cfe18a250d9d99256bd6b61ae9d", "sha256": "c314e8cde9d0e77ceb5b9c31ea6eddc61f40fe01fe22a97f9f62e120612f2658" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.8.22-py3-none-any.whl", "has_sig": false, "md5_digest": "f22d0cfe18a250d9d99256bd6b61ae9d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 70284, "upload_time": "2019-11-17T18:09:30", "upload_time_iso_8601": "2019-11-17T18:09:30.646936Z", "url": "https://files.pythonhosted.org/packages/d2/d5/f7603be7fc263f2d4f28a81a56f444739650a0a42e7315eedb8000135465/PythonTwitchBotFramework-1.8.22-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5e63a51a02e1a9681a30b07762501294", "sha256": "02ba47333d0e79afabd878e17b778972f008c87b03773f6dfc21f50cce228e7d" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.8.22.tar.gz", "has_sig": false, "md5_digest": "5e63a51a02e1a9681a30b07762501294", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 49218, "upload_time": "2019-11-17T18:09:32", "upload_time_iso_8601": "2019-11-17T18:09:32.372811Z", "url": "https://files.pythonhosted.org/packages/6d/f1/e58fc04234417f75fc73c4028864ead77e69a3a6fa0db82a1fcf0629204a/PythonTwitchBotFramework-1.8.22.tar.gz", "yanked": false, "yanked_reason": null } ], "1.8.23": [ { "comment_text": "", "digests": { "md5": "61a6a2597766078f0d5c1e28174718e1", "sha256": "bda184a3898134c800a065140025c07486db483d5e0a6cf17dfd741e14dfdd67" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.8.23-py3-none-any.whl", "has_sig": false, "md5_digest": "61a6a2597766078f0d5c1e28174718e1", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 70281, "upload_time": "2019-11-18T04:30:08", "upload_time_iso_8601": "2019-11-18T04:30:08.917657Z", "url": "https://files.pythonhosted.org/packages/25/ab/4e5d01f719503d7967ff7aa694ac2204fdfcd3b0f60f547b641fc7605290/PythonTwitchBotFramework-1.8.23-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "30655a98da4f59b40aa0a2472fc841a6", "sha256": "e07fab4629e4fbac2d06021b99e3bf133eef11ab874d74a4aea80a39ddfa3280" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.8.23.tar.gz", "has_sig": false, "md5_digest": "30655a98da4f59b40aa0a2472fc841a6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 49222, "upload_time": "2019-11-18T04:30:11", "upload_time_iso_8601": "2019-11-18T04:30:11.940284Z", "url": "https://files.pythonhosted.org/packages/ff/ab/5599b9963b4b8fd39968f771e18bfe03b63a0b60cbcb287effa59e3bccc1/PythonTwitchBotFramework-1.8.23.tar.gz", "yanked": false, "yanked_reason": null } ], "1.8.24": [ { "comment_text": "", "digests": { "md5": "95fb275d74f0677fdf158683788a8e5d", "sha256": "6d07e5b55b48a3b4a9e0aeca603721ba4e0e83575cbd80936899b3d3a9c83de3" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.8.24-py3-none-any.whl", "has_sig": false, "md5_digest": "95fb275d74f0677fdf158683788a8e5d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 70425, "upload_time": "2019-11-23T21:54:53", "upload_time_iso_8601": "2019-11-23T21:54:53.148121Z", "url": "https://files.pythonhosted.org/packages/31/5e/8c993a2100b5f49741e78e88ae0bb9e11b532d3c06eeb00c10a59d551354/PythonTwitchBotFramework-1.8.24-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "de9d944bd661727daa24237d8f18647e", "sha256": "ac3b2912528f58b01ea4bc794b6492491d754e7c3fd63a2b8b43b122f0c5ce02" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.8.24.tar.gz", "has_sig": false, "md5_digest": "de9d944bd661727daa24237d8f18647e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 52041, "upload_time": "2019-11-23T21:54:55", "upload_time_iso_8601": "2019-11-23T21:54:55.130092Z", "url": "https://files.pythonhosted.org/packages/65/3a/2024d30dad97c67662034de9274ed94866999d2e2942acf418c530ebe14a/PythonTwitchBotFramework-1.8.24.tar.gz", "yanked": false, "yanked_reason": null } ], "1.8.25": [ { "comment_text": "", "digests": { "md5": "590fb322725f52b57278fa92345fd3a2", "sha256": "07491164acea63c42b0d43469d5ec5563f31d38667b844c91152a9e8244e4413" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.8.25-py3-none-any.whl", "has_sig": false, "md5_digest": "590fb322725f52b57278fa92345fd3a2", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 70549, "upload_time": "2019-11-23T22:05:22", "upload_time_iso_8601": "2019-11-23T22:05:22.390080Z", "url": "https://files.pythonhosted.org/packages/f9/38/b88369685b58ae65692ca8620e13f423d7fa5693845a8abbe3ab45770f7d/PythonTwitchBotFramework-1.8.25-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7c56cc9679f0b353c852298f1bbad87e", "sha256": "2c91a78fa5177b182fe5893fd1ee091ff9b24accc8916828a3a84a250b5989f8" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.8.25.tar.gz", "has_sig": false, "md5_digest": "7c56cc9679f0b353c852298f1bbad87e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 52272, "upload_time": "2019-11-23T22:05:24", "upload_time_iso_8601": "2019-11-23T22:05:24.310184Z", "url": "https://files.pythonhosted.org/packages/c8/dd/c4be507a713866a8a633a1ac370d5c6cbf6809169d78c756548367d42277/PythonTwitchBotFramework-1.8.25.tar.gz", "yanked": false, "yanked_reason": null } ], "1.8.26": [ { "comment_text": "", "digests": { "md5": "c72862797399316f65089f0c9d4dcda0", "sha256": "4c449e77acf9b4d58873343016bf9fa470965db79f3c1b58cdb532a447828f22" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.8.26-py3-none-any.whl", "has_sig": false, "md5_digest": "c72862797399316f65089f0c9d4dcda0", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 70578, "upload_time": "2019-11-27T00:21:49", "upload_time_iso_8601": "2019-11-27T00:21:49.297107Z", "url": "https://files.pythonhosted.org/packages/f4/fd/b826799c0a26d7890a8d9b1dc3df5c8c8cf7fcec595fccd96013732de39f/PythonTwitchBotFramework-1.8.26-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "006953ee96c16f807de121ea9fd3db71", "sha256": "b37c53476da574ece00f3a2945ff345e4fbfbd3500ce4ad0b2daecb7927d892d" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.8.26.tar.gz", "has_sig": false, "md5_digest": "006953ee96c16f807de121ea9fd3db71", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 52329, "upload_time": "2019-11-27T00:21:51", "upload_time_iso_8601": "2019-11-27T00:21:51.353095Z", "url": "https://files.pythonhosted.org/packages/cb/85/973a504d56a395824fbb2f43ca1bae0f44e09cd499ac6c9fad6f35dcd0b9/PythonTwitchBotFramework-1.8.26.tar.gz", "yanked": false, "yanked_reason": null } ], "1.8.27": [ { "comment_text": "", "digests": { "md5": "46178dd9a7af05bf26afec7e5cd96bc4", "sha256": "bef116f5359396080f63cc2f701f84d1c57051a061dd4b048375ab259cdfdbb8" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.8.27-py3-none-any.whl", "has_sig": false, "md5_digest": "46178dd9a7af05bf26afec7e5cd96bc4", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 70657, "upload_time": "2019-11-27T01:06:21", "upload_time_iso_8601": "2019-11-27T01:06:21.453017Z", "url": "https://files.pythonhosted.org/packages/32/5f/50445900c8c837b3c07ba587592973363958dc18c38078f1e5fa919035b7/PythonTwitchBotFramework-1.8.27-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "450f027cd61aad2832e9da9404261b13", "sha256": "49e9e1e35d890d3c0e4b8deeda73dc0646770e804eb0ecec812d3c33083ad971" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.8.27.tar.gz", "has_sig": false, "md5_digest": "450f027cd61aad2832e9da9404261b13", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 52353, "upload_time": "2019-11-27T01:06:23", "upload_time_iso_8601": "2019-11-27T01:06:23.433093Z", "url": "https://files.pythonhosted.org/packages/e7/ca/19dd61aa4fb02836d430359a5f1e030f36afbc8c2ac5c09fe750578456fd/PythonTwitchBotFramework-1.8.27.tar.gz", "yanked": false, "yanked_reason": null } ], "1.8.28": [ { "comment_text": "", "digests": { "md5": "b6bec4b747cbbaaab41c132d4cd9a3aa", "sha256": "342dce0c888b91f0249db28f52007b23694c5d3eec683b2a3137e7ae85676aa7" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.8.28-py3-none-any.whl", "has_sig": false, "md5_digest": "b6bec4b747cbbaaab41c132d4cd9a3aa", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 70652, "upload_time": "2019-11-27T01:14:29", "upload_time_iso_8601": "2019-11-27T01:14:29.307078Z", "url": "https://files.pythonhosted.org/packages/22/54/b5786342a756aa644d31384c273a05db8b800656a5703289cd8aa068e9ec/PythonTwitchBotFramework-1.8.28-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f4240319f4a1a03052a4c0c7acf4e1d4", "sha256": "58286a39b54f6f990e9d17541649ac3fd6ed702e37f84f9ad7ab2012b8b9283e" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.8.28.tar.gz", "has_sig": false, "md5_digest": "f4240319f4a1a03052a4c0c7acf4e1d4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 52327, "upload_time": "2019-11-27T01:14:31", "upload_time_iso_8601": "2019-11-27T01:14:31.433224Z", "url": "https://files.pythonhosted.org/packages/68/21/6209c6b14a9ca8826bb0773d6b99de995264a7b47670dfcf4d3691e52213/PythonTwitchBotFramework-1.8.28.tar.gz", "yanked": false, "yanked_reason": null } ], "1.8.29": [ { "comment_text": "", "digests": { "md5": "5759f1d836c30bfe9eff675b743e17af", "sha256": "2793bfcb7c4725b1f3e5b2fa95a8918e43f593642238083238fe8dea61450c1b" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.8.29-py3-none-any.whl", "has_sig": false, "md5_digest": "5759f1d836c30bfe9eff675b743e17af", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 70650, "upload_time": "2019-12-30T02:38:16", "upload_time_iso_8601": "2019-12-30T02:38:16.533945Z", "url": "https://files.pythonhosted.org/packages/95/f7/8aa38d0ff58575415e522b02b99c70365f1ae0e3ffec34df7c847e1522f5/PythonTwitchBotFramework-1.8.29-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fb2a2f691c15b8cbfa4d48af3c0eec16", "sha256": "dabe4e6d68a4a4d9926de99a1275aad3a3796df87858f4282f34bdc560f33501" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.8.29.tar.gz", "has_sig": false, "md5_digest": "fb2a2f691c15b8cbfa4d48af3c0eec16", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 52325, "upload_time": "2019-12-30T02:38:18", "upload_time_iso_8601": "2019-12-30T02:38:18.334091Z", "url": "https://files.pythonhosted.org/packages/fe/a3/cbfacc59d38acbf79ce75412e7caa5ace4b5b477ae56daa5c2eb4e197ea2/PythonTwitchBotFramework-1.8.29.tar.gz", "yanked": false, "yanked_reason": null } ], "1.8.3": [ { "comment_text": "", "digests": { "md5": "03c19725a2e9dfc2c98d6b0a42a04825", "sha256": "bf6fdc79d07031fa3cb8a62ec676cf505dc6fe1d47db05b413446bb52078dc50" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.8.3-py3-none-any.whl", "has_sig": false, "md5_digest": "03c19725a2e9dfc2c98d6b0a42a04825", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 70639, "upload_time": "2019-12-30T02:55:04", "upload_time_iso_8601": "2019-12-30T02:55:04.390467Z", "url": "https://files.pythonhosted.org/packages/5a/1c/2a6f5677707df149832a056ebf7983eedfe5befc3ea1b00f2d49a5e70943/PythonTwitchBotFramework-1.8.3-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "07226e540cb342ad8097fc14460279d8", "sha256": "d8f0c65138876df7f9ca9ca8f1de298f267c1b47db90ef5d12e62db1ac3d8518" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.8.3.tar.gz", "has_sig": false, "md5_digest": "07226e540cb342ad8097fc14460279d8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 52301, "upload_time": "2019-12-30T02:55:06", "upload_time_iso_8601": "2019-12-30T02:55:06.482238Z", "url": "https://files.pythonhosted.org/packages/29/af/aca8e78cced8544cf5e4be14d95be974b58e803dceff2604a7f8235432bd/PythonTwitchBotFramework-1.8.3.tar.gz", "yanked": false, "yanked_reason": null } ], "1.8.4": [ { "comment_text": "", "digests": { "md5": "21cad4d736dbd56299b86f4eb2b5a450", "sha256": "66337540275f1a224aea3101ae43e84333bd44b09dc879e2099f7df21ac5df5d" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.8.4-py3-none-any.whl", "has_sig": false, "md5_digest": "21cad4d736dbd56299b86f4eb2b5a450", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 70849, "upload_time": "2020-01-29T21:18:43", "upload_time_iso_8601": "2020-01-29T21:18:43.961428Z", "url": "https://files.pythonhosted.org/packages/16/11/9974251fb00f81753ec21d26dbc9483025c9ba7132ead6031d7c1794df85/PythonTwitchBotFramework-1.8.4-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ba3d5d629eb34aabc8ded579dee181df", "sha256": "60eca7df921dad941c5967d817ddba858d3f242ac45056b36e44dbcc2a503408" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.8.4.tar.gz", "has_sig": false, "md5_digest": "ba3d5d629eb34aabc8ded579dee181df", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 52554, "upload_time": "2020-01-29T21:18:46", "upload_time_iso_8601": "2020-01-29T21:18:46.003686Z", "url": "https://files.pythonhosted.org/packages/5b/55/c6ce9bb152bde6630b81cbd9379cd4418cd7e3b71902bf258991a0bc3b3a/PythonTwitchBotFramework-1.8.4.tar.gz", "yanked": false, "yanked_reason": null } ], "1.9.0": [ { "comment_text": "", "digests": { "md5": "16b7a583a94bfd4d4b41fa282eab14da", "sha256": "9d7b8b5a27f65fc7d11c918e9f3e7ce97c163bbfd53a799e38f33b2e1ea7c263" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.9.0-py3-none-any.whl", "has_sig": false, "md5_digest": "16b7a583a94bfd4d4b41fa282eab14da", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 70849, "upload_time": "2020-01-29T21:21:13", "upload_time_iso_8601": "2020-01-29T21:21:13.498658Z", "url": "https://files.pythonhosted.org/packages/27/11/4c59ffcd5f9488dbe24d70ccdf9a4116b8b8655909b34d0a19493c066cde/PythonTwitchBotFramework-1.9.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bb550c65f97d4a6c8336264e609a7490", "sha256": "aad204d30d870c427d015598afc6dc12304cfdb90a3f7e80e466866388535ef5" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.9.0.tar.gz", "has_sig": false, "md5_digest": "bb550c65f97d4a6c8336264e609a7490", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 52522, "upload_time": "2020-01-29T21:21:15", "upload_time_iso_8601": "2020-01-29T21:21:15.178180Z", "url": "https://files.pythonhosted.org/packages/32/1e/6f499624004ceab7eb9b128222cf4f8dc02752198dba846b65b5f2333302/PythonTwitchBotFramework-1.9.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.9.1": [ { "comment_text": "", "digests": { "md5": "93931fa16d640fcead5c14ef2c90ab04", "sha256": "02c1898664263e75a93e5a5a36d7c9e6c413f0c15ed38662015c9bde5fa73cc5" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.9.1-py3-none-any.whl", "has_sig": false, "md5_digest": "93931fa16d640fcead5c14ef2c90ab04", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 70884, "upload_time": "2020-01-30T03:54:43", "upload_time_iso_8601": "2020-01-30T03:54:43.420434Z", "url": "https://files.pythonhosted.org/packages/2a/e4/9b3e11e2fb025249c5d5e72e831df6283768d5f60ee6c3e9580a2ca00c7f/PythonTwitchBotFramework-1.9.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4b5b8211f36f40ff159493dd2791108a", "sha256": "80c0bf3efa4643a4e0d986d0a2f79863f08ea77283cbd5d9c31d8fa71f469c93" }, "downloads": -1, "filename": "PythonTwitchBotFramework-1.9.1.tar.gz", "has_sig": false, "md5_digest": "4b5b8211f36f40ff159493dd2791108a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 52586, "upload_time": "2020-01-30T03:54:45", "upload_time_iso_8601": "2020-01-30T03:54:45.602737Z", "url": "https://files.pythonhosted.org/packages/22/8d/4d105c367f3d8e35379f649238a859a5742fc1ea44262bd7d2d9eea95e86/PythonTwitchBotFramework-1.9.1.tar.gz", "yanked": false, "yanked_reason": null } ], "2.0.1": [ { "comment_text": "", "digests": { "md5": "086bc87bd6c44e6ad8e3b3143afce644", "sha256": "d9c8d118cfa357e1118a50affc30b9af0332a1a4adf8bf7093c4de4cc93a260c" }, "downloads": -1, "filename": "PythonTwitchBotFramework-2.0.1-py3-none-any.whl", "has_sig": false, "md5_digest": "086bc87bd6c44e6ad8e3b3143afce644", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 98571, "upload_time": "2020-12-24T00:35:31", "upload_time_iso_8601": "2020-12-24T00:35:31.437990Z", "url": "https://files.pythonhosted.org/packages/5c/24/1654447113c6eb4258bf84c00bb736bc44d5f4457805f5ea8966ff192263/PythonTwitchBotFramework-2.0.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "29acdadf0dae7d30e7b22a550ee1754b", "sha256": "cda323e849463e32b6340f5f817600bbd4ca7ae2de5d74f0270e293901660579" }, "downloads": -1, "filename": "PythonTwitchBotFramework-2.0.1.tar.gz", "has_sig": false, "md5_digest": "29acdadf0dae7d30e7b22a550ee1754b", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 86954, "upload_time": "2020-12-24T00:35:33", "upload_time_iso_8601": "2020-12-24T00:35:33.660924Z", "url": "https://files.pythonhosted.org/packages/69/eb/98c7c0ade900a769f3e457d705ebdcd408eadb8dcae2a3daeb1faaeb3a23/PythonTwitchBotFramework-2.0.1.tar.gz", "yanked": false, "yanked_reason": null } ], "2.0.2": [ { "comment_text": "", "digests": { "md5": "6a9e4cd14561ef0df4753d137396adaa", "sha256": "05966144fbf4cfd2a578be0e84b0be0351990481fafc60297f864e516ccc91b7" }, "downloads": -1, "filename": "PythonTwitchBotFramework-2.0.2-py3-none-any.whl", "has_sig": false, "md5_digest": "6a9e4cd14561ef0df4753d137396adaa", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 98726, "upload_time": "2020-12-24T01:42:12", "upload_time_iso_8601": "2020-12-24T01:42:12.361234Z", "url": "https://files.pythonhosted.org/packages/dd/15/090b6fbb966db131d863c181686307513a0d40aa14f47a3f777a29d2bb97/PythonTwitchBotFramework-2.0.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "98b6ddf7ad909e65bd1c22f022d192f5", "sha256": "c5e0e82e54a61ec441426c846a0c293172897b3cbb8769150d31ff643179be48" }, "downloads": -1, "filename": "PythonTwitchBotFramework-2.0.2.tar.gz", "has_sig": false, "md5_digest": "98b6ddf7ad909e65bd1c22f022d192f5", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 87029, "upload_time": "2020-12-24T01:42:13", "upload_time_iso_8601": "2020-12-24T01:42:13.801896Z", "url": "https://files.pythonhosted.org/packages/c2/7e/a6cc23ed7d72f911ecb0fe15e0dc6354c7d206b4796f8a442565a5ab6fb8/PythonTwitchBotFramework-2.0.2.tar.gz", "yanked": false, "yanked_reason": null } ], "2.0.4": [ { "comment_text": "", "digests": { "md5": "53a282c5e8df417cb217872215c41920", "sha256": "18c4413751cbec4a7a6215da858dbb4351d8dbd5a8d62483889ad06a48cf3e7e" }, "downloads": -1, "filename": "PythonTwitchBotFramework-2.0.4-py3-none-any.whl", "has_sig": false, "md5_digest": "53a282c5e8df417cb217872215c41920", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 98847, "upload_time": "2020-12-28T05:15:26", "upload_time_iso_8601": "2020-12-28T05:15:26.026850Z", "url": "https://files.pythonhosted.org/packages/9a/fb/37f3246205ee975dffc52c1cf68d8cfd1d650bfc2f7c48c09d9ab2fc29c8/PythonTwitchBotFramework-2.0.4-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "dc053192aef30e6c25f9cd83bd78d2a7", "sha256": "2f90def684018946c64d8c369993baee4149f805f750fd4ec9b1b4d87194c2a9" }, "downloads": -1, "filename": "PythonTwitchBotFramework-2.0.4.tar.gz", "has_sig": false, "md5_digest": "dc053192aef30e6c25f9cd83bd78d2a7", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 87138, "upload_time": "2020-12-28T05:15:28", "upload_time_iso_8601": "2020-12-28T05:15:28.699497Z", "url": "https://files.pythonhosted.org/packages/85/58/88b3db2ecf22484e01d98ae04e712b7de0e4c44d76cbcf52b254523b6d37/PythonTwitchBotFramework-2.0.4.tar.gz", "yanked": false, "yanked_reason": null } ], "2.0.5": [ { "comment_text": "", "digests": { "md5": "40438dba13cf97f7810668341c57cdcb", "sha256": "5de7f817c3f86d43606f496700e60e9db658f0a43b31c97e94ba3ca48182288a" }, "downloads": -1, "filename": "PythonTwitchBotFramework-2.0.5-py3-none-any.whl", "has_sig": false, "md5_digest": "40438dba13cf97f7810668341c57cdcb", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 98758, "upload_time": "2020-12-29T17:46:18", "upload_time_iso_8601": "2020-12-29T17:46:18.522796Z", "url": "https://files.pythonhosted.org/packages/84/4f/1c806c3398d7cbc1fc1bd5a384bed0135c2e3c024ea8b9509f5d8f8e5eb7/PythonTwitchBotFramework-2.0.5-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4e73f94f3e4a3607f573e88d8de1282f", "sha256": "c6e57528e0c4b36c4c8a18d656176ac2a697bdf52d3ace14e2913a8fc26cb50a" }, "downloads": -1, "filename": "PythonTwitchBotFramework-2.0.5.tar.gz", "has_sig": false, "md5_digest": "4e73f94f3e4a3607f573e88d8de1282f", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 87006, "upload_time": "2020-12-29T17:46:21", "upload_time_iso_8601": "2020-12-29T17:46:21.132341Z", "url": "https://files.pythonhosted.org/packages/12/83/4cbc16132ae717fff36a1f53280d3257a1bd5f9efd98363f744cbddb6bf7/PythonTwitchBotFramework-2.0.5.tar.gz", "yanked": false, "yanked_reason": null } ], "2.0.6": [ { "comment_text": "", "digests": { "md5": "83fe42aba971bd6abe7091e7dd07b862", "sha256": "4ad3243661e62a304bc2d9090591fffb80cb3a9252905dcc92814da29a31c405" }, "downloads": -1, "filename": "PythonTwitchBotFramework-2.0.6-py3-none-any.whl", "has_sig": false, "md5_digest": "83fe42aba971bd6abe7091e7dd07b862", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 99196, "upload_time": "2020-12-31T21:27:23", "upload_time_iso_8601": "2020-12-31T21:27:23.971752Z", "url": "https://files.pythonhosted.org/packages/69/16/677600cc7f186be8661c066d7f4a489b8ac3bc8f1ac2b28ba868d05cce9c/PythonTwitchBotFramework-2.0.6-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7d41f04d94aafee46590dbb23d80ec75", "sha256": "41fff57b5fea4efc6096da9946bea89765a944b3388e351330194b8fe56bfade" }, "downloads": -1, "filename": "PythonTwitchBotFramework-2.0.6.tar.gz", "has_sig": false, "md5_digest": "7d41f04d94aafee46590dbb23d80ec75", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 87934, "upload_time": "2020-12-31T21:27:26", "upload_time_iso_8601": "2020-12-31T21:27:26.090436Z", "url": "https://files.pythonhosted.org/packages/de/75/ede55637e748f0ec6286144850c33f385dde9577ea39f78bfb0f6001936a/PythonTwitchBotFramework-2.0.6.tar.gz", "yanked": false, "yanked_reason": null } ], "2.0.7": [ { "comment_text": "", "digests": { "md5": "a6a4f7e8c1f4aa83ed43f351000bd8c0", "sha256": "7620020ba7931086d5b498276f78034b33e38528860d120bc52d0a43710efbc3" }, "downloads": -1, "filename": "PythonTwitchBotFramework-2.0.7-py3-none-any.whl", "has_sig": false, "md5_digest": "a6a4f7e8c1f4aa83ed43f351000bd8c0", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 99209, "upload_time": "2020-12-31T22:51:15", "upload_time_iso_8601": "2020-12-31T22:51:15.153997Z", "url": "https://files.pythonhosted.org/packages/71/b0/27d41718e53543958b642d990d3fd09039114f114739951c67fef575b5af/PythonTwitchBotFramework-2.0.7-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f5d36459f914e4a42e1cdefd389748e9", "sha256": "31077b915c29fdf4d935918eff5efb335ef68e3f7f31f672c9d3c1ae8886dd51" }, "downloads": -1, "filename": "PythonTwitchBotFramework-2.0.7.tar.gz", "has_sig": false, "md5_digest": "f5d36459f914e4a42e1cdefd389748e9", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 87915, "upload_time": "2020-12-31T22:51:17", "upload_time_iso_8601": "2020-12-31T22:51:17.724626Z", "url": "https://files.pythonhosted.org/packages/d3/07/50384c37afcc960290f7f18e26d0cd379b7a0f3cf8fbcc634e0a34d64742/PythonTwitchBotFramework-2.0.7.tar.gz", "yanked": false, "yanked_reason": null } ], "2.0.8": [ { "comment_text": "", "digests": { "md5": "38d0d9ecdd8dbefedd6f2ecefe132b4f", "sha256": "24c269818a1e37f96959ed57a6cd9cbd99c4e9db080956562204bc2e722c5a4e" }, "downloads": -1, "filename": "PythonTwitchBotFramework-2.0.8-py3-none-any.whl", "has_sig": false, "md5_digest": "38d0d9ecdd8dbefedd6f2ecefe132b4f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 100825, "upload_time": "2021-01-01T04:03:07", "upload_time_iso_8601": "2021-01-01T04:03:07.593036Z", "url": "https://files.pythonhosted.org/packages/24/d7/270211627d01135d10ca551af47937cd174d068437e9d68a0052995a468e/PythonTwitchBotFramework-2.0.8-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "876f2e3d13c0c74851b8d6608788d88d", "sha256": "b209e85f25566a9f540bdf7f520da9eb3d91856257c684c6fd069dbd75c50003" }, "downloads": -1, "filename": "PythonTwitchBotFramework-2.0.8.tar.gz", "has_sig": false, "md5_digest": "876f2e3d13c0c74851b8d6608788d88d", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 88853, "upload_time": "2021-01-01T04:03:10", "upload_time_iso_8601": "2021-01-01T04:03:10.013577Z", "url": "https://files.pythonhosted.org/packages/29/99/2860ed5e9179f4a1e7a9583418a6b7f596acc07517ac079f6f2afb54152c/PythonTwitchBotFramework-2.0.8.tar.gz", "yanked": false, "yanked_reason": null } ], "2.1.0": [ { "comment_text": "", "digests": { "md5": "467fcbc84d3ae64a8fac7388222c1a73", "sha256": "3943f627ed7b7d2a6eae81349f22cbc7db475c892de988f07a6b9ff5eec39b0f" }, "downloads": -1, "filename": "PythonTwitchBotFramework-2.1.0-py3-none-any.whl", "has_sig": false, "md5_digest": "467fcbc84d3ae64a8fac7388222c1a73", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 102032, "upload_time": "2021-01-01T19:40:54", "upload_time_iso_8601": "2021-01-01T19:40:54.056985Z", "url": "https://files.pythonhosted.org/packages/ce/11/62baf0b8b303a56c02de7aaa5552b47ae24f052d96a743d01be47ec6c0bd/PythonTwitchBotFramework-2.1.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "22f376faa7a26ac5c573b6e6bceaf9a4", "sha256": "e6c5a1fbc449e8ca535334a0f4fe9088a28d2cb29113c7328ace6dc782e48b88" }, "downloads": -1, "filename": "PythonTwitchBotFramework-2.1.0.tar.gz", "has_sig": false, "md5_digest": "22f376faa7a26ac5c573b6e6bceaf9a4", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 89680, "upload_time": "2021-01-01T19:40:56", "upload_time_iso_8601": "2021-01-01T19:40:56.186605Z", "url": "https://files.pythonhosted.org/packages/f9/e5/4d3bcdb327a010a4f79f5e4870216fc8b7034eee597f6de0c538d015636a/PythonTwitchBotFramework-2.1.0.tar.gz", "yanked": false, "yanked_reason": null } ], "2.1.1": [ { "comment_text": "", "digests": { "md5": "547d05c8e3189c3a8a8866dddc1e7385", "sha256": "41c57fda83f088aca4bb8d697ec42fb6c0857624f5c7ff5b35d1d9fdcac82563" }, "downloads": -1, "filename": "PythonTwitchBotFramework-2.1.1-py3-none-any.whl", "has_sig": false, "md5_digest": "547d05c8e3189c3a8a8866dddc1e7385", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 102794, "upload_time": "2021-01-02T04:04:46", "upload_time_iso_8601": "2021-01-02T04:04:46.628884Z", "url": "https://files.pythonhosted.org/packages/bd/94/0e40ef4e5fed1ff39f45dbe6ed96c6e325fbf5ad2483885621cd38c601f2/PythonTwitchBotFramework-2.1.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fbd7b258b288e3d293b53cadd9c281a6", "sha256": "2bb6106c507924f23b59861053a4a1bf17c928bb3312c7d38bc243df3c48f110" }, "downloads": -1, "filename": "PythonTwitchBotFramework-2.1.1.tar.gz", "has_sig": false, "md5_digest": "fbd7b258b288e3d293b53cadd9c281a6", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 90785, "upload_time": "2021-01-02T04:04:49", "upload_time_iso_8601": "2021-01-02T04:04:49.191760Z", "url": "https://files.pythonhosted.org/packages/27/01/bde379ac77ea7037ecc1bdb0be42de9b1b516f8ccf6805c18e5083ce42c8/PythonTwitchBotFramework-2.1.1.tar.gz", "yanked": false, "yanked_reason": null } ], "2.1.10": [ { "comment_text": "", "digests": { "md5": "2c16b5bc9a9d98eeb21419030e026aac", "sha256": "2c1844db6106917e409494c75400fef2145c9f52d8b973796945ef3736307e81" }, "downloads": -1, "filename": "PythonTwitchBotFramework-2.1.10-py3-none-any.whl", "has_sig": false, "md5_digest": "2c16b5bc9a9d98eeb21419030e026aac", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 105127, "upload_time": "2021-02-15T21:54:15", "upload_time_iso_8601": "2021-02-15T21:54:15.485402Z", "url": "https://files.pythonhosted.org/packages/a3/05/651f2026abd5226422aa906b62546a5c60e0f3373dac2ab5b542403ae199/PythonTwitchBotFramework-2.1.10-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "35b14fa57a7332b7f42b65b787a21f21", "sha256": "1c63e35a78f870bb03ff269bae2b6d53067ce5374fdbc70b67ed51f8b13dfe09" }, "downloads": -1, "filename": "PythonTwitchBotFramework-2.1.10.tar.gz", "has_sig": false, "md5_digest": "35b14fa57a7332b7f42b65b787a21f21", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 91491, "upload_time": "2021-02-15T21:54:18", "upload_time_iso_8601": "2021-02-15T21:54:18.053558Z", "url": "https://files.pythonhosted.org/packages/04/fb/cc65cd738cf89c7d1b2c1145b369970a5f6dce554a8e6159db31a4110603/PythonTwitchBotFramework-2.1.10.tar.gz", "yanked": false, "yanked_reason": null } ], "2.1.11": [ { "comment_text": "", "digests": { "md5": "f10c066887a2c6ef02f4ad1f1aa16169", "sha256": "81ab57ba36d297639caeebb7f1d7ff70f3880447b795f1358c1b293e48284804" }, "downloads": -1, "filename": "PythonTwitchBotFramework-2.1.11-py3-none-any.whl", "has_sig": false, "md5_digest": "f10c066887a2c6ef02f4ad1f1aa16169", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 105399, "upload_time": "2021-02-22T19:05:18", "upload_time_iso_8601": "2021-02-22T19:05:18.621548Z", "url": "https://files.pythonhosted.org/packages/f8/ae/1980bf36352ea16a5de7ed51b3c609eb600c33dd8b037acdd401a21ed32a/PythonTwitchBotFramework-2.1.11-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "58f18568effd405970ceb352f354205a", "sha256": "37de563e25f9e84e4a5a71d82db8bfaabdfbaf6c8ec5097acbde53cf395a4599" }, "downloads": -1, "filename": "PythonTwitchBotFramework-2.1.11.tar.gz", "has_sig": false, "md5_digest": "58f18568effd405970ceb352f354205a", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 91961, "upload_time": "2021-02-22T19:05:21", "upload_time_iso_8601": "2021-02-22T19:05:21.032273Z", "url": "https://files.pythonhosted.org/packages/54/72/7946f8202afa0f681a4811b9261c2670a98fe5a3e2ee7432e876545a84fa/PythonTwitchBotFramework-2.1.11.tar.gz", "yanked": false, "yanked_reason": null } ], "2.1.12": [ { "comment_text": "", "digests": { "md5": "1d3f7dc5e046bab3055047b513d895b1", "sha256": "b1fbf2b2dc3e0dcdc83d8e54586cec551173811782d6576a4739b52c3009faa6" }, "downloads": -1, "filename": "PythonTwitchBotFramework-2.1.12-py3-none-any.whl", "has_sig": false, "md5_digest": "1d3f7dc5e046bab3055047b513d895b1", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 105387, "upload_time": "2021-03-13T16:02:59", "upload_time_iso_8601": "2021-03-13T16:02:59.149355Z", "url": "https://files.pythonhosted.org/packages/9d/9b/5a883a0bfb97aa0735cb01e057b500ef6e15dc5361d580a27074540762fd/PythonTwitchBotFramework-2.1.12-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "88a7ed29b836240b29f3b1d9ea70eb9a", "sha256": "12358a04b015641c4516d011cb205e36efd29b37b4f961d68390177d573b4ee4" }, "downloads": -1, "filename": "PythonTwitchBotFramework-2.1.12.tar.gz", "has_sig": false, "md5_digest": "88a7ed29b836240b29f3b1d9ea70eb9a", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 91964, "upload_time": "2021-03-13T16:03:02", "upload_time_iso_8601": "2021-03-13T16:03:02.875939Z", "url": "https://files.pythonhosted.org/packages/58/ee/e05f2467ca461bdab458898f2e1a097b18217c0d37d323e40f5ad04ad043/PythonTwitchBotFramework-2.1.12.tar.gz", "yanked": false, "yanked_reason": null } ], "2.1.2": [ { "comment_text": "", "digests": { "md5": "0df9731a64877aa1df55097d0197f1a1", "sha256": "f84e10248977d9011958c0b16d7c485ea07a90dc1f3c1e09c1df3f2a3c498bd7" }, "downloads": -1, "filename": "PythonTwitchBotFramework-2.1.2-py3-none-any.whl", "has_sig": false, "md5_digest": "0df9731a64877aa1df55097d0197f1a1", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 103387, "upload_time": "2021-01-02T17:17:39", "upload_time_iso_8601": "2021-01-02T17:17:39.115459Z", "url": "https://files.pythonhosted.org/packages/21/87/449eade537f0e4bf496b0ebd69f622d527fc65617b2452d782d3dfdd9bed/PythonTwitchBotFramework-2.1.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "af29e626840331a6d8a4a0a5fc9fa8e1", "sha256": "28be7dfeca1e1c2e6f04ef6f61bb254274574728a552c363c3ececed0c2b5af1" }, "downloads": -1, "filename": "PythonTwitchBotFramework-2.1.2.tar.gz", "has_sig": false, "md5_digest": "af29e626840331a6d8a4a0a5fc9fa8e1", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 91161, "upload_time": "2021-01-02T17:17:41", "upload_time_iso_8601": "2021-01-02T17:17:41.459167Z", "url": "https://files.pythonhosted.org/packages/4e/0b/80d16f94f1467b9c84b442a09b0a7812d5699f807404183f495071cbd9ba/PythonTwitchBotFramework-2.1.2.tar.gz", "yanked": false, "yanked_reason": null } ], "2.1.4": [ { "comment_text": "", "digests": { "md5": "1af717fc9ad616adfe182b06e612aa20", "sha256": "99b5b11d7609355e106b258c6c1032e5fa2e84fd3f6b43c3e9a7c80d24eb2ac3" }, "downloads": -1, "filename": "PythonTwitchBotFramework-2.1.4-py3-none-any.whl", "has_sig": false, "md5_digest": "1af717fc9ad616adfe182b06e612aa20", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 103945, "upload_time": "2021-01-02T22:59:27", "upload_time_iso_8601": "2021-01-02T22:59:27.486105Z", "url": "https://files.pythonhosted.org/packages/cd/ad/25da68b6bce0880d0e21737d94647cb32ed6595448d36efcc7bd034a9fee/PythonTwitchBotFramework-2.1.4-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3dd0faf82f41bf0b98a9021c2323acfc", "sha256": "bf573f84c9fa67dad5be436755f94d4fce8aff0f256b78b0eb4420728307ebca" }, "downloads": -1, "filename": "PythonTwitchBotFramework-2.1.4.tar.gz", "has_sig": false, "md5_digest": "3dd0faf82f41bf0b98a9021c2323acfc", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 91627, "upload_time": "2021-01-02T22:59:29", "upload_time_iso_8601": "2021-01-02T22:59:29.703672Z", "url": "https://files.pythonhosted.org/packages/fe/fc/0c573865cdbf4756ba687a22a0a78d49e86184a16ba4643819499248b739/PythonTwitchBotFramework-2.1.4.tar.gz", "yanked": false, "yanked_reason": null } ], "2.1.5": [ { "comment_text": "", "digests": { "md5": "a0a774dede8a545e9ff005bd927f7851", "sha256": "9eab7e277bced32e30a74e61461278fc389a41b9715d74bdb79816cf7eabaa1d" }, "downloads": -1, "filename": "PythonTwitchBotFramework-2.1.5-py3-none-any.whl", "has_sig": false, "md5_digest": "a0a774dede8a545e9ff005bd927f7851", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 103938, "upload_time": "2021-01-04T03:15:57", "upload_time_iso_8601": "2021-01-04T03:15:57.734695Z", "url": "https://files.pythonhosted.org/packages/1f/76/df7f42c94ffd69e358215e59f1f9fa49c5539a4437e17d84bbea320afbec/PythonTwitchBotFramework-2.1.5-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1b511993cc5101b74162039955a68c54", "sha256": "17ff8b4d902063480a1f7e12c9349f13a9f4439aa61366ef8806f1d6bfd0178d" }, "downloads": -1, "filename": "PythonTwitchBotFramework-2.1.5.tar.gz", "has_sig": false, "md5_digest": "1b511993cc5101b74162039955a68c54", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 91625, "upload_time": "2021-01-04T03:15:59", "upload_time_iso_8601": "2021-01-04T03:15:59.459777Z", "url": "https://files.pythonhosted.org/packages/68/b9/e971de16ee3061ad08822acde0f95489aa639d61a061353070c5f0d5ddb6/PythonTwitchBotFramework-2.1.5.tar.gz", "yanked": false, "yanked_reason": null } ], "2.1.6": [ { "comment_text": "", "digests": { "md5": "7f7c794db88c33be1f86949ee6da7b5a", "sha256": "13abbd0ee94e3ff0e00f98e35ca8320f17a4af666968a964e84a89c5f6d14d63" }, "downloads": -1, "filename": "PythonTwitchBotFramework-2.1.6-py3-none-any.whl", "has_sig": false, "md5_digest": "7f7c794db88c33be1f86949ee6da7b5a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 104663, "upload_time": "2021-01-07T02:01:55", "upload_time_iso_8601": "2021-01-07T02:01:55.732149Z", "url": "https://files.pythonhosted.org/packages/75/7f/6609de9416d78d60fd258a78ac553c211e10daedfe1ae87f92bee7ee2139/PythonTwitchBotFramework-2.1.6-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8fcb969cc38c0aef8ff34a142bb0e97d", "sha256": "f4cdb7da537bab730a5291dc8ccad48ac4325254c89360afffc563ef6809de49" }, "downloads": -1, "filename": "PythonTwitchBotFramework-2.1.6.tar.gz", "has_sig": false, "md5_digest": "8fcb969cc38c0aef8ff34a142bb0e97d", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 92136, "upload_time": "2021-01-07T02:01:57", "upload_time_iso_8601": "2021-01-07T02:01:57.829608Z", "url": "https://files.pythonhosted.org/packages/21/8f/6c11c0d0e95ff6ca85c407e957bf8c9512264e6d6f3278f6d3687d9a02a8/PythonTwitchBotFramework-2.1.6.tar.gz", "yanked": false, "yanked_reason": null } ], "2.1.7": [ { "comment_text": "", "digests": { "md5": "42fc3afe191c38b63fbe6a5765f73ae2", "sha256": "3e5a05d83a54f5ddf5a1874b2c14811625255efd889c68751865a702fa97ae42" }, "downloads": -1, "filename": "PythonTwitchBotFramework-2.1.7-py3-none-any.whl", "has_sig": false, "md5_digest": "42fc3afe191c38b63fbe6a5765f73ae2", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 104671, "upload_time": "2021-01-20T00:04:18", "upload_time_iso_8601": "2021-01-20T00:04:18.811463Z", "url": "https://files.pythonhosted.org/packages/49/17/ebe182a2717cf33a3e8646102b38d181aea03373a7f2ec56b954e229d64b/PythonTwitchBotFramework-2.1.7-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "67234e8fc1c64a38c5e8638ea4f97f91", "sha256": "e6c9aa51a3a2324bd352cd41793ec0cdfa43ab5944d44fcbd1a026b9b7c94cfd" }, "downloads": -1, "filename": "PythonTwitchBotFramework-2.1.7.tar.gz", "has_sig": false, "md5_digest": "67234e8fc1c64a38c5e8638ea4f97f91", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 92176, "upload_time": "2021-01-20T00:04:20", "upload_time_iso_8601": "2021-01-20T00:04:20.838789Z", "url": "https://files.pythonhosted.org/packages/fc/18/f8db919bf7b065bb93e2d25f1ea2cbd166ef7bbce3f38464a802502f02da/PythonTwitchBotFramework-2.1.7.tar.gz", "yanked": false, "yanked_reason": null } ], "2.1.8": [ { "comment_text": "", "digests": { "md5": "027c6d377a59d7b3433274a5271f85c3", "sha256": "dcf84a4ba5cc8dd10ae3de51720f6993388ac54e2baa5503d552116ece2fd9ea" }, "downloads": -1, "filename": "PythonTwitchBotFramework-2.1.8-py3-none-any.whl", "has_sig": false, "md5_digest": "027c6d377a59d7b3433274a5271f85c3", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 104699, "upload_time": "2021-02-05T23:26:17", "upload_time_iso_8601": "2021-02-05T23:26:17.390199Z", "url": "https://files.pythonhosted.org/packages/ba/06/6cb515b45e2b9c8e375f79e695f1b76df2fb48cd65d1a48f5dc2162412d6/PythonTwitchBotFramework-2.1.8-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "45c20a096511cd91714e242b5ecb31ea", "sha256": "96507b3c3a484f9d9cdbaa4ef75a522312fa6a3ae94768ebbca7923a609992fe" }, "downloads": -1, "filename": "PythonTwitchBotFramework-2.1.8.tar.gz", "has_sig": false, "md5_digest": "45c20a096511cd91714e242b5ecb31ea", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 91340, "upload_time": "2021-02-05T23:26:19", "upload_time_iso_8601": "2021-02-05T23:26:19.884759Z", "url": "https://files.pythonhosted.org/packages/8f/7d/b53377088f1dbe87101c5b6a8d249d329205df70d646b038b6df71820269/PythonTwitchBotFramework-2.1.8.tar.gz", "yanked": false, "yanked_reason": null } ], "2.1.9": [ { "comment_text": "", "digests": { "md5": "132194362eb05c410582e98472714e51", "sha256": "23db40ba732c88a820653e2c807208b1700260b3e341190c95422be0235917a5" }, "downloads": -1, "filename": "PythonTwitchBotFramework-2.1.9-py3-none-any.whl", "has_sig": false, "md5_digest": "132194362eb05c410582e98472714e51", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 104781, "upload_time": "2021-02-05T23:45:20", "upload_time_iso_8601": "2021-02-05T23:45:20.059816Z", "url": "https://files.pythonhosted.org/packages/43/29/b320cb32537a26900352449cc6fb96950cf175c59a2a8f0245e421bb76c0/PythonTwitchBotFramework-2.1.9-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "92124a18c3b82c4c677436935608ebf3", "sha256": "c43c9945ebd9f1e4fc908059e8d5c951347c21df36200ac9829f39712fe236c6" }, "downloads": -1, "filename": "PythonTwitchBotFramework-2.1.9.tar.gz", "has_sig": false, "md5_digest": "92124a18c3b82c4c677436935608ebf3", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 91426, "upload_time": "2021-02-05T23:45:22", "upload_time_iso_8601": "2021-02-05T23:45:22.541041Z", "url": "https://files.pythonhosted.org/packages/45/f7/93b6d7be994757f1fe345c2317f82252653d20dad8e9fbb6874eb5a5f01d/PythonTwitchBotFramework-2.1.9.tar.gz", "yanked": false, "yanked_reason": null } ], "2.2.0": [ { "comment_text": "", "digests": { "md5": "fa84ecbb09ce54d92edc0652b4d0fc4c", "sha256": "f7e11d1f7a342fd741352d2681e6cccaef0fb560c8f6eb89df2fdaa63d3ad85c" }, "downloads": -1, "filename": "PythonTwitchBotFramework-2.2.0-py3-none-any.whl", "has_sig": false, "md5_digest": "fa84ecbb09ce54d92edc0652b4d0fc4c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 105923, "upload_time": "2021-03-15T04:16:24", "upload_time_iso_8601": "2021-03-15T04:16:24.132934Z", "url": "https://files.pythonhosted.org/packages/e4/48/33345a329c517576bf7da3510e4e810afab3189fc803a592aa094598198d/PythonTwitchBotFramework-2.2.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2f59fbb154eca224f0c2866398975135", "sha256": "0289235bb98308e11174792a5e7389256b511b2f1d588607e2e7a714cf216508" }, "downloads": -1, "filename": "PythonTwitchBotFramework-2.2.0.tar.gz", "has_sig": false, "md5_digest": "2f59fbb154eca224f0c2866398975135", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 92578, "upload_time": "2021-03-15T04:16:26", "upload_time_iso_8601": "2021-03-15T04:16:26.791367Z", "url": "https://files.pythonhosted.org/packages/94/06/29c41face7d0851a0440786c16d8332837b921556e44aef8643859c2afd6/PythonTwitchBotFramework-2.2.0.tar.gz", "yanked": false, "yanked_reason": null } ], "2.2.1": [ { "comment_text": "", "digests": { "md5": "d160f5a9729e916943b905f3f5d5771b", "sha256": "73fefd920460b507b4b7fd0f5d907f2c1e2e3173bdbc6a9c68747a81adb3c13e" }, "downloads": -1, "filename": "PythonTwitchBotFramework-2.2.1-py3-none-any.whl", "has_sig": false, "md5_digest": "d160f5a9729e916943b905f3f5d5771b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 105892, "upload_time": "2021-03-21T03:29:14", "upload_time_iso_8601": "2021-03-21T03:29:14.332779Z", "url": "https://files.pythonhosted.org/packages/0f/58/9855459ac6c678d7eb7352ece51565e51333ec04a084cdb539d533311803/PythonTwitchBotFramework-2.2.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "658c3150a64a43867841fd9bd57df4f4", "sha256": "d42ce3c327bcad8345388af709b24ccdb6687e3cec87136696e1b1676b72d193" }, "downloads": -1, "filename": "PythonTwitchBotFramework-2.2.1.tar.gz", "has_sig": false, "md5_digest": "658c3150a64a43867841fd9bd57df4f4", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 92495, "upload_time": "2021-03-21T03:29:16", "upload_time_iso_8601": "2021-03-21T03:29:16.558787Z", "url": "https://files.pythonhosted.org/packages/bc/f2/c6e61a022ca4064f42298a4c433b7ce7daf8189fb61511bc382a1339f5b3/PythonTwitchBotFramework-2.2.1.tar.gz", "yanked": false, "yanked_reason": null } ], "2.2.2": [ { "comment_text": "", "digests": { "md5": "7dc4d3fcaed51af852b7b18d2a5e12b5", "sha256": "1b8dcf38393846962f84f13958c7458eb68def38ab0d3577daa24b9aef216ec1" }, "downloads": -1, "filename": "PythonTwitchBotFramework-2.2.2-py3-none-any.whl", "has_sig": false, "md5_digest": "7dc4d3fcaed51af852b7b18d2a5e12b5", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 105888, "upload_time": "2021-03-26T15:56:10", "upload_time_iso_8601": "2021-03-26T15:56:10.990753Z", "url": "https://files.pythonhosted.org/packages/2a/0f/c7ab35f6f7fbca43898ee2133c3707d50f5a16993fc8738451997f3ccbb1/PythonTwitchBotFramework-2.2.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f97bd5b0848e8c62855931179cb8ce4a", "sha256": "a98fa52b4fbaf3a1ed74293125194d0a418220d64237ccd0848711a46fb17891" }, "downloads": -1, "filename": "PythonTwitchBotFramework-2.2.2.tar.gz", "has_sig": false, "md5_digest": "f97bd5b0848e8c62855931179cb8ce4a", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 92527, "upload_time": "2021-03-26T15:56:12", "upload_time_iso_8601": "2021-03-26T15:56:12.898447Z", "url": "https://files.pythonhosted.org/packages/fd/dc/ebb0361d5cb4b3b307ba0d7d5ae23a578dba7c7274db3ac95db72ece938b/PythonTwitchBotFramework-2.2.2.tar.gz", "yanked": false, "yanked_reason": null } ], "2.2.3": [ { "comment_text": "", "digests": { "md5": "588710879dae63ccafa492ce1590c87a", "sha256": "775a7db1c26e973ab3d5b2045fed708c5bc0f7539f5c09b00da10e4bc364281a" }, "downloads": -1, "filename": "PythonTwitchBotFramework-2.2.3-py3-none-any.whl", "has_sig": false, "md5_digest": "588710879dae63ccafa492ce1590c87a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 106793, "upload_time": "2021-03-26T22:28:55", "upload_time_iso_8601": "2021-03-26T22:28:55.741112Z", "url": "https://files.pythonhosted.org/packages/fd/27/0dff421030f3c25982ad29ec53801036f3a6d5275a698f8984d21af07295/PythonTwitchBotFramework-2.2.3-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7e14f5502f3a95b9bc849f2707889db9", "sha256": "d6adeab9480ed09b2e70131de4e4c551a77b314bd64d232e6ce9b82f63848908" }, "downloads": -1, "filename": "PythonTwitchBotFramework-2.2.3.tar.gz", "has_sig": false, "md5_digest": "7e14f5502f3a95b9bc849f2707889db9", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 93445, "upload_time": "2021-03-26T22:28:58", "upload_time_iso_8601": "2021-03-26T22:28:58.179879Z", "url": "https://files.pythonhosted.org/packages/f9/4b/8f2197fdfc015e5a35d56f4a6a82665747882ed5bad1685d6d0a87932f43/PythonTwitchBotFramework-2.2.3.tar.gz", "yanked": false, "yanked_reason": null } ], "2.2.4": [ { "comment_text": "", "digests": { "md5": "54db5fded98086079e348f14af18988a", "sha256": "6766d9ea8723c82fda9e4b9d9f5739a806d699376e29dac150d04ecaef51dd57" }, "downloads": -1, "filename": "PythonTwitchBotFramework-2.2.4-py3-none-any.whl", "has_sig": false, "md5_digest": "54db5fded98086079e348f14af18988a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 106785, "upload_time": "2021-03-27T23:39:55", "upload_time_iso_8601": "2021-03-27T23:39:55.317518Z", "url": "https://files.pythonhosted.org/packages/95/4c/b7dbdf61cbad2bb7751a5256e45f8e9e01f3a32b1a7487873d356956f3e3/PythonTwitchBotFramework-2.2.4-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8f3053beff1d6cc3f1db1f3a879ade9d", "sha256": "af7763f2b4d03b0431cc42b78a4e2ee9fd3e2857adb9b07194cb4350db157de5" }, "downloads": -1, "filename": "PythonTwitchBotFramework-2.2.4.tar.gz", "has_sig": false, "md5_digest": "8f3053beff1d6cc3f1db1f3a879ade9d", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 93409, "upload_time": "2021-03-27T23:39:57", "upload_time_iso_8601": "2021-03-27T23:39:57.609464Z", "url": "https://files.pythonhosted.org/packages/54/ac/14667e0e584cc9d90f40877b9fb7219651b3520231ecfd8aea0fd6dac332/PythonTwitchBotFramework-2.2.4.tar.gz", "yanked": false, "yanked_reason": null } ], "2.2.5": [ { "comment_text": "", "digests": { "md5": "f473f25274fb0a13b96a371256f82273", "sha256": "3e9d4ae1102769c5dd026b525e7e81d17b16f8ae8403e107b3e82c13a89d28d4" }, "downloads": -1, "filename": "PythonTwitchBotFramework-2.2.5-py3-none-any.whl", "has_sig": false, "md5_digest": "f473f25274fb0a13b96a371256f82273", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 106923, "upload_time": "2021-04-11T16:18:50", "upload_time_iso_8601": "2021-04-11T16:18:50.674906Z", "url": "https://files.pythonhosted.org/packages/e2/72/480817ca1e7a37c1ed0d8bcefd8cb9c3a895a121bdc46a69b138d2ab8eb4/PythonTwitchBotFramework-2.2.5-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "98f6088a8ec67829d6a3a66b27334591", "sha256": "fcdca4b3f9805563e27bd7d11fba3c8a9d00992f9118bbeaa3fe6c2a38bcbeca" }, "downloads": -1, "filename": "PythonTwitchBotFramework-2.2.5.tar.gz", "has_sig": false, "md5_digest": "98f6088a8ec67829d6a3a66b27334591", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 93665, "upload_time": "2021-04-11T16:18:53", "upload_time_iso_8601": "2021-04-11T16:18:53.393104Z", "url": "https://files.pythonhosted.org/packages/1d/84/b6d64ac162d3f45db598d3816928601d7ae3651d2936db45a5c7206dff4b/PythonTwitchBotFramework-2.2.5.tar.gz", "yanked": false, "yanked_reason": null } ], "2.2.6": [ { "comment_text": "", "digests": { "md5": "e76b99dc6df62302edc8c2f500d860ec", "sha256": "9a99c1a240fe12d954303c39996ff8909908c66c7e98d28194e01562da466437" }, "downloads": -1, "filename": "PythonTwitchBotFramework-2.2.6-py3-none-any.whl", "has_sig": false, "md5_digest": "e76b99dc6df62302edc8c2f500d860ec", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 106944, "upload_time": "2021-04-13T15:37:36", "upload_time_iso_8601": "2021-04-13T15:37:36.016726Z", "url": "https://files.pythonhosted.org/packages/76/00/e231c78740b01d55bd1180d266e11cf4dc519e6718d75b079d91833fb046/PythonTwitchBotFramework-2.2.6-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4138c0495173f8f89778e73a6059ef93", "sha256": "fac7a77455aad7de7250a0751295707d5f0daf6663d01950f74b0bc298d632e7" }, "downloads": -1, "filename": "PythonTwitchBotFramework-2.2.6.tar.gz", "has_sig": false, "md5_digest": "4138c0495173f8f89778e73a6059ef93", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 93665, "upload_time": "2021-04-13T15:37:38", "upload_time_iso_8601": "2021-04-13T15:37:38.978854Z", "url": "https://files.pythonhosted.org/packages/6c/e9/ef813a53ee7a040f7e7a8d3537c4221c1fae009000cb6cb5c8f99e72d582/PythonTwitchBotFramework-2.2.6.tar.gz", "yanked": false, "yanked_reason": null } ], "2.2.7": [ { "comment_text": "", "digests": { "md5": "823c70449ccab78797aefcb95a9e01c2", "sha256": "fed4ef526a252eaf7cd0480d231fb4044c46cd85ef7c33953e6726a8d6e06b6b" }, "downloads": -1, "filename": "PythonTwitchBotFramework-2.2.7-py3-none-any.whl", "has_sig": false, "md5_digest": "823c70449ccab78797aefcb95a9e01c2", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 107610, "upload_time": "2021-04-19T04:56:42", "upload_time_iso_8601": "2021-04-19T04:56:42.333310Z", "url": "https://files.pythonhosted.org/packages/ba/84/bef71adc32261f6fbbcf30fa80739df11674d77ab80fb7837e58ac273581/PythonTwitchBotFramework-2.2.7-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2b5fb5ccd03eb33558554c6c5437452a", "sha256": "29d8132eeb06898a77bb6c68b9a0d84c01d5daff3900a3221e6741317e46a752" }, "downloads": -1, "filename": "PythonTwitchBotFramework-2.2.7.tar.gz", "has_sig": false, "md5_digest": "2b5fb5ccd03eb33558554c6c5437452a", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 94057, "upload_time": "2021-04-19T04:56:45", "upload_time_iso_8601": "2021-04-19T04:56:45.056472Z", "url": "https://files.pythonhosted.org/packages/3d/ef/ede358a85b4392d41c3ce66993d3cad655c1f5c9da6d15a3b9340181c3a6/PythonTwitchBotFramework-2.2.7.tar.gz", "yanked": false, "yanked_reason": null } ], "2.2.8": [ { "comment_text": "", "digests": { "md5": "b5e82ae919f05a1fb446dd714e00f126", "sha256": "3f574649ddf87b602b26144dc715ccb24083acfde4808911180bccceb260989e" }, "downloads": -1, "filename": "PythonTwitchBotFramework-2.2.8-py3-none-any.whl", "has_sig": false, "md5_digest": "b5e82ae919f05a1fb446dd714e00f126", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 107875, "upload_time": "2021-05-08T20:29:54", "upload_time_iso_8601": "2021-05-08T20:29:54.416781Z", "url": "https://files.pythonhosted.org/packages/95/1e/c7cad98c4d57e586632c4569a29a6892d2d4eccd99e17ea57faaa3422612/PythonTwitchBotFramework-2.2.8-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bab195b3216631bb52721b127e5b6926", "sha256": "ffb81be4f6b35324d38220de5e658a5bc341d3a691eb3d9d4043ef918fa8149e" }, "downloads": -1, "filename": "PythonTwitchBotFramework-2.2.8.tar.gz", "has_sig": false, "md5_digest": "bab195b3216631bb52721b127e5b6926", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 94220, "upload_time": "2021-05-08T20:29:56", "upload_time_iso_8601": "2021-05-08T20:29:56.895642Z", "url": "https://files.pythonhosted.org/packages/86/25/35075df699efc2e53b37d819aa77eed657a8a6c13fc81941c397d087b1a4/PythonTwitchBotFramework-2.2.8.tar.gz", "yanked": false, "yanked_reason": null } ], "2.3.0": [ { "comment_text": "", "digests": { "md5": "804bb07363a07eca53cd07807e3b574b", "sha256": "2e0c754369eddf5ba5b3e774bfeebb77f028cc8395312e37e0a0d5b37fda03ef" }, "downloads": -1, "filename": "PythonTwitchBotFramework-2.3.0-py3-none-any.whl", "has_sig": false, "md5_digest": "804bb07363a07eca53cd07807e3b574b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 107884, "upload_time": "2021-05-09T21:21:33", "upload_time_iso_8601": "2021-05-09T21:21:33.740556Z", "url": "https://files.pythonhosted.org/packages/11/da/e1c67ffc75f555187a42c691e8141226452dc4225b3549a75b1a2728e8cf/PythonTwitchBotFramework-2.3.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "63e147e5eaea91226525c90922a0068e", "sha256": "0a5e052928b62ad941019f56f37c8e4e12299d8a3fa77878885b05af53ed8f98" }, "downloads": -1, "filename": "PythonTwitchBotFramework-2.3.0.tar.gz", "has_sig": false, "md5_digest": "63e147e5eaea91226525c90922a0068e", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 94222, "upload_time": "2021-05-09T21:21:35", "upload_time_iso_8601": "2021-05-09T21:21:35.572911Z", "url": "https://files.pythonhosted.org/packages/ee/3e/766393d91426b2ecbdb33d16953d2d95e4718db87c76bc4155c8c10e357b/PythonTwitchBotFramework-2.3.0.tar.gz", "yanked": false, "yanked_reason": null } ], "2.3.1": [ { "comment_text": "", "digests": { "md5": "c235fe1d4bea89a12ad70ca8a01ddef1", "sha256": "50ea3853d798e21999749e4d5a9c115ec4749e9880091fae8288c314be14bbe2" }, "downloads": -1, "filename": "PythonTwitchBotFramework-2.3.1-py3-none-any.whl", "has_sig": false, "md5_digest": "c235fe1d4bea89a12ad70ca8a01ddef1", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 108031, "upload_time": "2021-05-15T02:40:09", "upload_time_iso_8601": "2021-05-15T02:40:09.111373Z", "url": "https://files.pythonhosted.org/packages/c3/c6/d518e16620004bfa5edee790d32d1aa8a596a2f93cbba98c5a587a07a2e3/PythonTwitchBotFramework-2.3.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9985e2a539d01266fc7e3a5b9b178b37", "sha256": "8af7663e90cc0aedec8988f0bffe95e5fcf7376f38135d6ee28d75c072184779" }, "downloads": -1, "filename": "PythonTwitchBotFramework-2.3.1.tar.gz", "has_sig": false, "md5_digest": "9985e2a539d01266fc7e3a5b9b178b37", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 94414, "upload_time": "2021-05-15T02:40:11", "upload_time_iso_8601": "2021-05-15T02:40:11.786789Z", "url": "https://files.pythonhosted.org/packages/1a/36/98812a901de5f4e912bf34416d8b5c293945a5b4c658008d084ad5daeb16/PythonTwitchBotFramework-2.3.1.tar.gz", "yanked": false, "yanked_reason": null } ], "2.3.10": [ { "comment_text": "", "digests": { "md5": "16cbf7244b08676f755841d67e09abe3", "sha256": "1d1e87eef782e36c36769588f7303c98f821753932dc0ef5679acbcd3795ec87" }, "downloads": -1, "filename": "PythonTwitchBotFramework-2.3.10-py3-none-any.whl", "has_sig": false, "md5_digest": "16cbf7244b08676f755841d67e09abe3", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 109389, "upload_time": "2021-10-14T21:08:28", "upload_time_iso_8601": "2021-10-14T21:08:28.724888Z", "url": "https://files.pythonhosted.org/packages/b5/4c/13c7a68b8db0a44c8d8d4a27d9302cb883be1f740657208617939e593068/PythonTwitchBotFramework-2.3.10-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "01e3b7e7708cc1ef10ee72f4a76c5cf5", "sha256": "9b2228d4f85234f44715c5cc84f9712ca17bffb72d4bc6ad5b66f6b5355c3ded" }, "downloads": -1, "filename": "PythonTwitchBotFramework-2.3.10.tar.gz", "has_sig": false, "md5_digest": "01e3b7e7708cc1ef10ee72f4a76c5cf5", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 88488, "upload_time": "2021-10-14T21:08:31", "upload_time_iso_8601": "2021-10-14T21:08:31.992885Z", "url": "https://files.pythonhosted.org/packages/f2/06/74cc2a301de3f269b1c0d0f41fab88f95a10e315bc567da2ead49e4693bb/PythonTwitchBotFramework-2.3.10.tar.gz", "yanked": false, "yanked_reason": null } ], "2.3.11": [ { "comment_text": "", "digests": { "md5": "f27a7e327b0fa51a5296b862bac260b4", "sha256": "acfec1f0f3a9312b52b0da7cc226f6c8d622874ec58eb5172c64642d32c13c8b" }, "downloads": -1, "filename": "PythonTwitchBotFramework-2.3.11-py3-none-any.whl", "has_sig": false, "md5_digest": "f27a7e327b0fa51a5296b862bac260b4", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 109656, "upload_time": "2021-10-26T22:02:13", "upload_time_iso_8601": "2021-10-26T22:02:13.026060Z", "url": "https://files.pythonhosted.org/packages/53/49/2a8582cf71f8ce563d1ef724a99450faa4fbdfd63179a4b5f295ce33c939/PythonTwitchBotFramework-2.3.11-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a539f8b9414db474562b39743876536f", "sha256": "24c46ecdb77540ddb2e7abbc9ea3ae71c128196cf1618287f224321629d2bb33" }, "downloads": -1, "filename": "PythonTwitchBotFramework-2.3.11.tar.gz", "has_sig": false, "md5_digest": "a539f8b9414db474562b39743876536f", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 88747, "upload_time": "2021-10-26T22:02:15", "upload_time_iso_8601": "2021-10-26T22:02:15.345567Z", "url": "https://files.pythonhosted.org/packages/1a/f2/75bb041163bdc259f5b12a5568129066e2da430704d5d2d2b2a30a633193/PythonTwitchBotFramework-2.3.11.tar.gz", "yanked": false, "yanked_reason": null } ], "2.3.12": [ { "comment_text": "", "digests": { "md5": "0d447c2a7dc8e7dcfc1773911b10982d", "sha256": "6934d262305196cb423e99a205bf97beeb30a751c575e94db5328d9974c9b5c1" }, "downloads": -1, "filename": "PythonTwitchBotFramework-2.3.12-py3-none-any.whl", "has_sig": false, "md5_digest": "0d447c2a7dc8e7dcfc1773911b10982d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 109683, "upload_time": "2021-12-01T04:42:32", "upload_time_iso_8601": "2021-12-01T04:42:32.573547Z", "url": "https://files.pythonhosted.org/packages/4f/97/df5ab09d07b057329338657789416bccf241a3dcdeb1dbdfe2471087d641/PythonTwitchBotFramework-2.3.12-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4328088d3516367325dc504f0fe3661f", "sha256": "56e0b077ae3ee9cde66f96640088eef10634a204e105752d816612bcb8238910" }, "downloads": -1, "filename": "PythonTwitchBotFramework-2.3.12.tar.gz", "has_sig": false, "md5_digest": "4328088d3516367325dc504f0fe3661f", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 88795, "upload_time": "2021-12-01T04:42:34", "upload_time_iso_8601": "2021-12-01T04:42:34.315729Z", "url": "https://files.pythonhosted.org/packages/e5/7f/1468c9180361ccba26e106674aa347b639844cd7b33ff71f1d46aa886129/PythonTwitchBotFramework-2.3.12.tar.gz", "yanked": false, "yanked_reason": null } ], "2.3.2": [ { "comment_text": "", "digests": { "md5": "8ca90bede73cd33d4a7cc2c3a6e215c1", "sha256": "955c1c79c484cd814bce7bbe836d3b0d30bdd7f84a3176a67b94e91bbbb1308a" }, "downloads": -1, "filename": "PythonTwitchBotFramework-2.3.2-py3-none-any.whl", "has_sig": false, "md5_digest": "8ca90bede73cd33d4a7cc2c3a6e215c1", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 108136, "upload_time": "2021-05-23T02:03:47", "upload_time_iso_8601": "2021-05-23T02:03:47.494765Z", "url": "https://files.pythonhosted.org/packages/09/b7/93d1537709bb22cb42c811aca500b51e86000e7384a2d35a7b839dcb41a8/PythonTwitchBotFramework-2.3.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ff601b354c0c2726d4dc79b82ab01133", "sha256": "fffaf5d0ecd3201381be3b799adf410558cf4349b735fe4ae781c51c817d1de4" }, "downloads": -1, "filename": "PythonTwitchBotFramework-2.3.2.tar.gz", "has_sig": false, "md5_digest": "ff601b354c0c2726d4dc79b82ab01133", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 94489, "upload_time": "2021-05-23T02:03:49", "upload_time_iso_8601": "2021-05-23T02:03:49.582789Z", "url": "https://files.pythonhosted.org/packages/66/41/eac5d38d590b80c1672a2b3db496411c1afe1c88861551dd9870b5db293c/PythonTwitchBotFramework-2.3.2.tar.gz", "yanked": false, "yanked_reason": null } ], "2.3.3": [ { "comment_text": "", "digests": { "md5": "a1274df0b881cdd5e46c3a38edddbe3c", "sha256": "66644076c2909c62f3489275d0fe0c69a37eb696fca2df125de2879195f65c23" }, "downloads": -1, "filename": "PythonTwitchBotFramework-2.3.3-py3-none-any.whl", "has_sig": false, "md5_digest": "a1274df0b881cdd5e46c3a38edddbe3c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 108156, "upload_time": "2021-05-28T04:37:40", "upload_time_iso_8601": "2021-05-28T04:37:40.898040Z", "url": "https://files.pythonhosted.org/packages/dc/e4/7aea845a4328d50f0ee9fa0427f561158908cc76245bf2b10c4969b1b5f6/PythonTwitchBotFramework-2.3.3-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d1b59501175c66dcb63c0c773172a0a4", "sha256": "ba2f2914b5e08d775f46c9d8c3c0adf66cca2e90b7c12f1b8d93f6dd61868b21" }, "downloads": -1, "filename": "PythonTwitchBotFramework-2.3.3.tar.gz", "has_sig": false, "md5_digest": "d1b59501175c66dcb63c0c773172a0a4", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 94551, "upload_time": "2021-05-28T04:37:43", "upload_time_iso_8601": "2021-05-28T04:37:43.418416Z", "url": "https://files.pythonhosted.org/packages/db/4b/c42ee1a0dfcba2c79a25b27f68891d496d269599a6d84e955074eed486ac/PythonTwitchBotFramework-2.3.3.tar.gz", "yanked": false, "yanked_reason": null } ], "2.3.4": [ { "comment_text": "", "digests": { "md5": "d62d2a4763dd2219ca21d51b19b3d1c3", "sha256": "a9b7e82d25ef5a985be32a52fa390437362b63faced3c04e2e39fe806074e274" }, "downloads": -1, "filename": "PythonTwitchBotFramework-2.3.4-py3-none-any.whl", "has_sig": false, "md5_digest": "d62d2a4763dd2219ca21d51b19b3d1c3", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 108200, "upload_time": "2021-05-30T20:16:18", "upload_time_iso_8601": "2021-05-30T20:16:18.745166Z", "url": "https://files.pythonhosted.org/packages/bc/3b/7d73d3a00037d9bd44e49d64bb47025c4bb91ddce15fae12272a21d160be/PythonTwitchBotFramework-2.3.4-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "548fcd30be5801b8e74d6cc69f898f21", "sha256": "d2cd97f0190a9ddf83a29a9e5e1ee40a95371442d766f7231e8071f87e60d7c1" }, "downloads": -1, "filename": "PythonTwitchBotFramework-2.3.4.tar.gz", "has_sig": false, "md5_digest": "548fcd30be5801b8e74d6cc69f898f21", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 94584, "upload_time": "2021-05-30T20:16:20", "upload_time_iso_8601": "2021-05-30T20:16:20.660137Z", "url": "https://files.pythonhosted.org/packages/72/25/e71ee9078b1efee4049cd051a5aeb061597032a3ea51415f9c2fa9e95815/PythonTwitchBotFramework-2.3.4.tar.gz", "yanked": false, "yanked_reason": null } ], "2.3.5": [ { "comment_text": "", "digests": { "md5": "2ef481a67aadaf903b629a797ae0f646", "sha256": "8dce595ea91af07a4ae59f47a4ef70f89c598267a549cc9ca624abeb1c55125e" }, "downloads": -1, "filename": "PythonTwitchBotFramework-2.3.5-py3-none-any.whl", "has_sig": false, "md5_digest": "2ef481a67aadaf903b629a797ae0f646", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 108569, "upload_time": "2021-06-03T22:16:16", "upload_time_iso_8601": "2021-06-03T22:16:16.650556Z", "url": "https://files.pythonhosted.org/packages/7e/06/f97d1942248fdba3083818fe067275acc2e32b9dfe91015ea9c9c8019a97/PythonTwitchBotFramework-2.3.5-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4c3fded89c82cd656945b00805f6be3c", "sha256": "01f5d638e6f7a0498d71b674d9fa80d454ac15e01820249fb62a29d21420c398" }, "downloads": -1, "filename": "PythonTwitchBotFramework-2.3.5.tar.gz", "has_sig": false, "md5_digest": "4c3fded89c82cd656945b00805f6be3c", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 94803, "upload_time": "2021-06-03T22:16:18", "upload_time_iso_8601": "2021-06-03T22:16:18.661033Z", "url": "https://files.pythonhosted.org/packages/fc/8f/59bf944d1a2a613a6a517d47f5062ac4a657d02bd7d2b4864406e0e06450/PythonTwitchBotFramework-2.3.5.tar.gz", "yanked": false, "yanked_reason": null } ], "2.3.6": [ { "comment_text": "", "digests": { "md5": "c2f4b04f2efb72ada8cec9c1b2a8b930", "sha256": "0fc01aae8a0342fd4165d0d1a5ccda6174a5123dc90cd504797428bf5029c4d7" }, "downloads": -1, "filename": "PythonTwitchBotFramework-2.3.6-py3-none-any.whl", "has_sig": false, "md5_digest": "c2f4b04f2efb72ada8cec9c1b2a8b930", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 108812, "upload_time": "2021-06-27T02:07:07", "upload_time_iso_8601": "2021-06-27T02:07:07.722548Z", "url": "https://files.pythonhosted.org/packages/2f/53/4edc96d3319a333a04ca0934d90f5311e9c2b1ae686784f1e992a3a1e9f4/PythonTwitchBotFramework-2.3.6-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "14d736ec45f3937882fccf5698cf522e", "sha256": "293bd64962d701a119839e44ce96b30343ba6848565217a7ae186a31d3035efc" }, "downloads": -1, "filename": "PythonTwitchBotFramework-2.3.6.tar.gz", "has_sig": false, "md5_digest": "14d736ec45f3937882fccf5698cf522e", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 95033, "upload_time": "2021-06-27T02:07:10", "upload_time_iso_8601": "2021-06-27T02:07:10.609653Z", "url": "https://files.pythonhosted.org/packages/7e/e9/ad84f02769c0cdd3a2b9d784b846bec8b554eff26276d528f09e1d122432/PythonTwitchBotFramework-2.3.6.tar.gz", "yanked": false, "yanked_reason": null } ], "2.3.7": [ { "comment_text": "", "digests": { "md5": "e6bf79b0aa40c9657f54a69ae870073e", "sha256": "5f16fa97d618eb08adf6e784650cf689d5870a67fd9273b210ed780c6a2a4fba" }, "downloads": -1, "filename": "PythonTwitchBotFramework-2.3.7-py3-none-any.whl", "has_sig": false, "md5_digest": "e6bf79b0aa40c9657f54a69ae870073e", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 108827, "upload_time": "2021-08-10T03:10:12", "upload_time_iso_8601": "2021-08-10T03:10:12.360719Z", "url": "https://files.pythonhosted.org/packages/8c/bb/cd81cfac1211053ed7052f153ac1633c49b2c9754ce6be09bb9f512f9cb4/PythonTwitchBotFramework-2.3.7-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "79b78d6f41b78ab6638ceb283784c83f", "sha256": "5e402233e2b1a505c9ef975b46ab4d30ca71dca073d411584930047214802e84" }, "downloads": -1, "filename": "PythonTwitchBotFramework-2.3.7.tar.gz", "has_sig": false, "md5_digest": "79b78d6f41b78ab6638ceb283784c83f", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 95053, "upload_time": "2021-08-10T03:10:14", "upload_time_iso_8601": "2021-08-10T03:10:14.499279Z", "url": "https://files.pythonhosted.org/packages/be/ac/6da7c2bdbfdd6f528423f4ca7b41719245bf1e7b936249dcb6fb545dbb3e/PythonTwitchBotFramework-2.3.7.tar.gz", "yanked": false, "yanked_reason": null } ], "2.3.8": [ { "comment_text": "", "digests": { "md5": "e0650278c4ede70204785ec2edacae9a", "sha256": "1282e230f27b1ace906da396b32995b94a0c846851a5ae226abfc042c34ebe91" }, "downloads": -1, "filename": "PythonTwitchBotFramework-2.3.8-py3-none-any.whl", "has_sig": false, "md5_digest": "e0650278c4ede70204785ec2edacae9a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 109278, "upload_time": "2021-09-06T20:49:52", "upload_time_iso_8601": "2021-09-06T20:49:52.190780Z", "url": "https://files.pythonhosted.org/packages/fe/69/802bc5c2e65ab5f10f7e0a59377f11be50c099101110e38af057614f7436/PythonTwitchBotFramework-2.3.8-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "563962dacc35bf83e303ecf8ccfdffed", "sha256": "58039922461e25e47b7f0d4758b95df7e668292157f614fc7d976d7c2de7b997" }, "downloads": -1, "filename": "PythonTwitchBotFramework-2.3.8.tar.gz", "has_sig": false, "md5_digest": "563962dacc35bf83e303ecf8ccfdffed", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 88372, "upload_time": "2021-09-06T20:49:56", "upload_time_iso_8601": "2021-09-06T20:49:56.330976Z", "url": "https://files.pythonhosted.org/packages/2d/74/6c2b04cc096c39a3e509c19359e2ca92321ffcfe45c6711bf31cf6145396/PythonTwitchBotFramework-2.3.8.tar.gz", "yanked": false, "yanked_reason": null } ], "2.3.9": [ { "comment_text": "", "digests": { "md5": "691d91bb997317d19ff8ebe6553b04ce", "sha256": "69dd662f4bc50d0e54ffdbd1315a63b425435fbbfd1f811d0548c408bb359c15" }, "downloads": -1, "filename": "PythonTwitchBotFramework-2.3.9-py3-none-any.whl", "has_sig": false, "md5_digest": "691d91bb997317d19ff8ebe6553b04ce", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 109300, "upload_time": "2021-09-06T22:25:39", "upload_time_iso_8601": "2021-09-06T22:25:39.249503Z", "url": "https://files.pythonhosted.org/packages/91/57/a33b7a327734318f049447b8b0cfdc5bb6c66ac4547d27f5ece0150e6497/PythonTwitchBotFramework-2.3.9-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5d6490faf05291ad4974fc1df6437aa7", "sha256": "84ac99776d5329fe98efdbd18f41c2dabc61f5c02d3db866de98a0fe8e3a4004" }, "downloads": -1, "filename": "PythonTwitchBotFramework-2.3.9.tar.gz", "has_sig": false, "md5_digest": "5d6490faf05291ad4974fc1df6437aa7", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 88352, "upload_time": "2021-09-06T22:25:42", "upload_time_iso_8601": "2021-09-06T22:25:42.742863Z", "url": "https://files.pythonhosted.org/packages/c1/c5/d6d50726ce39e1bf426aa1bbc7e2def6a5cbb625b1e76c0ca9baba7818f3/PythonTwitchBotFramework-2.3.9.tar.gz", "yanked": false, "yanked_reason": null } ], "2.4.0": [ { "comment_text": "", "digests": { "md5": "73ab3ab467a32e955a216ff615d4f9a8", "sha256": "816431e99ff4d3d392e8aff4b49b781346189661bcb2a6cc0a6c376440cbf292" }, "downloads": -1, "filename": "PythonTwitchBotFramework-2.4.0-py3-none-any.whl", "has_sig": false, "md5_digest": "73ab3ab467a32e955a216ff615d4f9a8", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 109794, "upload_time": "2022-04-15T17:11:30", "upload_time_iso_8601": "2022-04-15T17:11:30.296904Z", "url": "https://files.pythonhosted.org/packages/ca/cc/69be928afb6339775adf9b3c8aa47766b021de3e388e45631cc73ba25597/PythonTwitchBotFramework-2.4.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6607020e84a06629026a02a0564aefad", "sha256": "861306a5a90f9db8d23a025bec51add3bfa9de24cff33d142fa2dc7eb557a86a" }, "downloads": -1, "filename": "PythonTwitchBotFramework-2.4.0.tar.gz", "has_sig": false, "md5_digest": "6607020e84a06629026a02a0564aefad", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 88931, "upload_time": "2022-04-15T17:11:32", "upload_time_iso_8601": "2022-04-15T17:11:32.949155Z", "url": "https://files.pythonhosted.org/packages/2d/eb/0895f36ac9604d6571159a45e35945ab854a4c075061049d481b947473f9/PythonTwitchBotFramework-2.4.0.tar.gz", "yanked": false, "yanked_reason": null } ], "2.4.2": [ { "comment_text": "", "digests": { "md5": "a5d6d54c67ccd29b2c3ef23a7e396b62", "sha256": "b34aafc9476d29ae3603943a324f6e00e8c9f12082a9c4388ec1e5d4a82474ec" }, "downloads": -1, "filename": "PythonTwitchBotFramework-2.4.2-py3-none-any.whl", "has_sig": false, "md5_digest": "a5d6d54c67ccd29b2c3ef23a7e396b62", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 109898, "upload_time": "2022-04-19T18:04:36", "upload_time_iso_8601": "2022-04-19T18:04:36.275959Z", "url": "https://files.pythonhosted.org/packages/92/43/c17718e3b358aaa824db3a7a9afc6494d926eaca12fbe9bb673c826bf3ef/PythonTwitchBotFramework-2.4.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "616714c1d180e705505760195164d71e", "sha256": "ca480d4e465d5abf97a8f90996a640927c7f2a8d279f960d6550df8286883299" }, "downloads": -1, "filename": "PythonTwitchBotFramework-2.4.2.tar.gz", "has_sig": false, "md5_digest": "616714c1d180e705505760195164d71e", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 89446, "upload_time": "2022-04-19T18:04:39", "upload_time_iso_8601": "2022-04-19T18:04:39.137835Z", "url": "https://files.pythonhosted.org/packages/2d/db/23e1a55af61b8a24c85d2e99477375dccf6312389a2416ab884bca239dc2/PythonTwitchBotFramework-2.4.2.tar.gz", "yanked": false, "yanked_reason": null } ], "2.4.3": [ { "comment_text": "", "digests": { "md5": "bb94eea1ec491fefad17b599dd3beaab", "sha256": "bc88baf4265d9d3885f4bbc1d0999f355226dbf3c176e6128a54d08a41e4fad6" }, "downloads": -1, "filename": "PythonTwitchBotFramework-2.4.3-py3-none-any.whl", "has_sig": false, "md5_digest": "bb94eea1ec491fefad17b599dd3beaab", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 110070, "upload_time": "2022-05-16T15:32:12", "upload_time_iso_8601": "2022-05-16T15:32:12.263032Z", "url": "https://files.pythonhosted.org/packages/46/3b/8030dbe27b03e7e8823724647164b4a49574b5def87e6a6714509a8a0b47/PythonTwitchBotFramework-2.4.3-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "39aef78e1eb6bbeb325cb2c19a75fe77", "sha256": "fdcd3a3d090e8b6e3d41a4aba25c315e218253a825437491635c5b9a0847373f" }, "downloads": -1, "filename": "PythonTwitchBotFramework-2.4.3.tar.gz", "has_sig": false, "md5_digest": "39aef78e1eb6bbeb325cb2c19a75fe77", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 88876, "upload_time": "2022-05-16T15:32:14", "upload_time_iso_8601": "2022-05-16T15:32:14.930783Z", "url": "https://files.pythonhosted.org/packages/54/6c/21ffa4bd2c61cbbf5939998476195a6bfede4150c290a33d3798b44ce2c6/PythonTwitchBotFramework-2.4.3.tar.gz", "yanked": false, "yanked_reason": null } ], "2.4.4": [ { "comment_text": "", "digests": { "md5": "25b058f91aef1d97ca51aa421e909093", "sha256": "50f9facc9b979989ac4d7345c59b70e731a2ccb50f3b8350b924f6a026a8bbab" }, "downloads": -1, "filename": "PythonTwitchBotFramework-2.4.4-py3-none-any.whl", "has_sig": false, "md5_digest": "25b058f91aef1d97ca51aa421e909093", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 110067, "upload_time": "2022-05-16T22:28:59", "upload_time_iso_8601": "2022-05-16T22:28:59.196579Z", "url": "https://files.pythonhosted.org/packages/38/90/62c28a1cb3bbed32c27bda78a9858a93efc2e468a4b5032edca357acc33d/PythonTwitchBotFramework-2.4.4-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "00615aec4c94a5ab3b4117b96b01fb8b", "sha256": "3659de212ccec692d95d678def68dcef0f79193f86044233f0568a1a2af3c6ea" }, "downloads": -1, "filename": "PythonTwitchBotFramework-2.4.4.tar.gz", "has_sig": false, "md5_digest": "00615aec4c94a5ab3b4117b96b01fb8b", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 88853, "upload_time": "2022-05-16T22:29:01", "upload_time_iso_8601": "2022-05-16T22:29:01.345798Z", "url": "https://files.pythonhosted.org/packages/55/47/794d42ba1e9083a9ba2f679109395722e41ac5cddfaeca0f47a8ac812c27/PythonTwitchBotFramework-2.4.4.tar.gz", "yanked": false, "yanked_reason": null } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "25b058f91aef1d97ca51aa421e909093", "sha256": "50f9facc9b979989ac4d7345c59b70e731a2ccb50f3b8350b924f6a026a8bbab" }, "downloads": -1, "filename": "PythonTwitchBotFramework-2.4.4-py3-none-any.whl", "has_sig": false, "md5_digest": "25b058f91aef1d97ca51aa421e909093", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 110067, "upload_time": "2022-05-16T22:28:59", "upload_time_iso_8601": "2022-05-16T22:28:59.196579Z", "url": "https://files.pythonhosted.org/packages/38/90/62c28a1cb3bbed32c27bda78a9858a93efc2e468a4b5032edca357acc33d/PythonTwitchBotFramework-2.4.4-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "00615aec4c94a5ab3b4117b96b01fb8b", "sha256": "3659de212ccec692d95d678def68dcef0f79193f86044233f0568a1a2af3c6ea" }, "downloads": -1, "filename": "PythonTwitchBotFramework-2.4.4.tar.gz", "has_sig": false, "md5_digest": "00615aec4c94a5ab3b4117b96b01fb8b", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 88853, "upload_time": "2022-05-16T22:29:01", "upload_time_iso_8601": "2022-05-16T22:29:01.345798Z", "url": "https://files.pythonhosted.org/packages/55/47/794d42ba1e9083a9ba2f679109395722e41ac5cddfaeca0f47a8ac812c27/PythonTwitchBotFramework-2.4.4.tar.gz", "yanked": false, "yanked_reason": null } ], "vulnerabilities": [] }