{ "info": { "author": "Matt Wiens", "author_email": "mwiens91@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Intended Audience :: End Users/Desktop", "License :: OSI Approved :: MIT License", "Natural Language :: English", "Operating System :: Unix", "Programming Language :: Python", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3 :: Only" ], "description": "[![Build status](https://ci.appveyor.com/api/projects/status/1qrsle0yooilklav?svg=true)](https://ci.appveyor.com/project/mwiens91/twitch-game-notify)\n[![codecov](https://codecov.io/gh/mwiens91/twitch-game-notify/branch/master/graph/badge.svg)](https://codecov.io/gh/mwiens91/twitch-game-notify)\n[![PyPI](https://img.shields.io/pypi/v/twitch-game-notify.svg)](https://pypi.org/project/twitch-game-notify/)\n[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/twitch-game-notify.svg)](https://pypi.org/project/twitch-game-notify/)\n[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/ambv/black)\n\n# twitch-game-notify\n\nThis is a Twitch notifier which notifies you when your favourite\nsteamers play your favourite games. Officially, Ubuntu >= 16.04 is\nsupported, but other Linux distros and possibly even Mac OSs may also\nwork (contact me if you have it running on another distro or OS\u2014I'm\ncurious).\n\nWith normal settings, this will send notifications to your existing\nnotification handler when a streamer is playing a game you've specified:\n\n![notification](https://i.imgur.com/4MM61Pk.png)\n\nYou'll also get a tray icon so you can easily quit the application:\n\n![tray-icon](https://i.imgur.com/uDdtJDa.png)\n\n## Installation\n\nWe'll need to install a few dependencies first. I'll assume you're on\nUbuntu.\n\nTo get the dependencies needed for D-Bus notifications and for\ndisplaying an icon in the system tray, run\n\n```\nsudo apt install libdbus-1-dev libdbus-glib-1-dev \\\n libcairo2-dev libgirepository1.0-dev\n```\n\nIf you want to install twitch-game-notify globally on your machine (cf.\nrunning from source directly from\n[run_twitchgamenotify.py](run_twitchgamenotify.py)), install it using\npip with\n\n```\nsudo pip3 install twitch-game-notify\n```\n\nRunning the above command with root isn't strictly necessary, but it'll\nput the `twitch-game-notify` binary on your `$PATH`, which is nice.\n\n## Configuration\n\nConfiguration files look like the following:\n\n```yaml\nquery-period: 5\ntwitch-api-client-id: \"p0gch4mp101fy451do9uod1s1x9i4a\"\ntwitch-api-client-secret: \"itqb0thqi5cek18ae6ekm7pbqvh63k\"\nstreamers:\n \"macie_jay\": # Macie_Jay\n include:\n - \"460630\" # notify my when Macie plays Rainbow Six: Siege\n \"moonmoon_ow\": # MOONMOON_OW\n include:\n - \"*\" # notify me when Moon plays any game\n exclude:\n - \"33214\" # except for Fortnite\n```\n\nThere's a `query-period`, which specifies how often the main loop\nhappens for querying the streamers you've specified (in seconds).\nThere's a `twitch-api-client-id` and `twitch-api-client-secret`, which\nwe'll get to in a second. Then there's a list of streamers, which for\neach you specify what games you want to be notified about.\n\n### Setting up a configuration file\n\ntwitch-game-notify looks for a configuration file at two paths:\n\n1. `$PROJECT_ROOT/config.yaml`\n2. `$XDG_CONFIG_HOME/twitch-game-notify/config.yaml`\n\nwhere `$PROJECT_ROOT` is the base of the twitch-game-notify project\n(which you generally only want to use if you're running from source),\nand `$XDG_CONFIG_HOME` defaults to `$HOME/.config`, if you don't have it\ndefined.\n\nTo get started, either copy the example configuration file\n[config.yaml.example](config.yaml.example) to one of the above locations\n(making sure to rename it to `config.yaml`) or run\n\n```\ntwitch-game-notify --print-config > $DEST/config.yaml\n```\n\nwhich downloads the example configuration file from GitHub and prints it\nto the terminal, which you can then redirect to a file.\n\n### Getting a Twitch API client ID and client secret\n\nTo get a Twitch client ID and client secret, you need to either create\nor link an existing Twitch account with [Twitch's dev\nportal](https://dev.twitch.tv/). Up to date instructions for obtaining a\nclient ID and client secret can be found at\n[dev.twitch.tv/docs/authentication](https://dev.twitch.tv/docs/authentication/).\n\n### Constructing the streamers list\n\nThe streamers list has a bunch of streamer login names. For example,\n[MOONMOON_OW](https://www.twitch.tv/moonmoon_ow)'s login name is\nmoonmoon_ow, which can be easily found from his stream's URL:\n\n```\nhttps://www.twitch.tv/moonmoon_ow\n```\n\nFor each streamer you can include games you want to be notified about.\nFor example,\n\n```yaml\nstreamers:\n \"macie_jay\": # Macie_Jay\n include:\n - \"460630\" # notify my when Macie plays Rainbow Six: Siege\n```\n\nwhere 460630 is the game ID for Tom Clancy's Rainbow Six: Siege.\n\nIf you want to be notified when a streamer plays any game you can use\n`\"*\"`. For example,\n\n```yaml\nstreamers:\n \"moonmoon_ow\": # MOONMOON_OW\n include:\n - \"*\" # notify me when Moon plays any game\n```\n\nIf you want to be notified about every game *except* specific games, you\ncan also specify an `exclude` section along with `\"*\"`. For example,\n\n```yaml\nstreamers:\n \"moonmoon_ow\": # MOONMOON_OW\n include:\n - \"*\" # notify me when Moon plays any game\n exclude:\n - \"33214\" # except for Fortnite\n```\n\nwhere 33214 is the game ID for Fortnite.\n\nYou can find out what the game ID for a given game is by querying the\nTwitch API directly (see [their\nreference](https://dev.twitch.tv/docs/api/reference/#get-games) for\nhow). For convenience, a list of popular games' IDs are listed in the\nexample configuration file [config.yaml.example](config.yaml.example):\n\n```yaml\n# 7 Days to Die: 271304\n# A Dance of Fire and Ice: 511183\n# Ace Combat 7: 492605\n# Age of Empires II: 13389\n# Always On: 499973\n# Apex Legends: 511224\n# Arena of Valor: 498302\n# ARK: 489635\n# Art: 509660\n# Artifact: 16937\n# ASMR: 509659\n# ATLAS: 510825\n# Battlefield V: 504199\n# Black Desert Online: 386821\n# Blade and Soul: 20423\n# ...\n```\n\n## Usage\n\nRun twitch-game-notify with\n\n```\ntwitch-game-notify\n```\n\nor directly with [run_twitchgamenotify.py](run_twitchgamenotify.py):\n\n```\n./run_twitchgamenotify.py\n```\n\nFor a list of everything you can do with twitch-game-notify, run\n\n```\ntwitch-game-notify --help\n```\n\n## Rate limits\n\nThe Twitch API allows for 120 API queries per minute. When you first\nstart up twitch-game-notify, you're going to be using up to 3 API\nqueries per streamer you've specified. When you've been running\ntwitch-game-notify for awhile, most of the static API data will be\ncached and you're going be using ~1 API query per streamer.\n\nAs a rough estimate, if you have `N` streamers on your list, you're\ngoing to want to have a `query-period` of a little above `N / 2`\nseconds.", "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/mwiens91/twitch-game-notify", "keywords": "", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "twitch-game-notify", "package_url": "https://pypi.org/project/twitch-game-notify/", "platform": "", "project_url": "https://pypi.org/project/twitch-game-notify/", "project_urls": { "Homepage": "https://github.com/mwiens91/twitch-game-notify" }, "release_url": "https://pypi.org/project/twitch-game-notify/0.2.14/", "requires_dist": null, "requires_python": ">=3.5", "summary": "Get notified when your favourite Twitch streamers play your favourite games", "version": "0.2.14" }, "last_serial": 5185675, "releases": { "0.0.1": [ { "comment_text": "", "digests": { "md5": "1a28c93f708cfa53e65830a8184f59bb", "sha256": "b8ed2d7cc200e269a31af08ef72d805d20a0f0a1f10c73964c7825cee5760fe4" }, "downloads": -1, "filename": "twitch_game_notify-0.0.1-py3-none-any.whl", "has_sig": false, "md5_digest": "1a28c93f708cfa53e65830a8184f59bb", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 9519, "upload_time": "2018-07-29T05:35:35", "url": "https://files.pythonhosted.org/packages/f9/b3/b2ba83c7e399bcd881fc6bfe547c735be2f576c0949b617f205e6b642ce9/twitch_game_notify-0.0.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4cefb8870d340d92893d030134c058b2", "sha256": "025eaac8cf8b1d909fb41db676d578cfcc46c5106f99e17d7290df2e2926e117" }, "downloads": -1, "filename": "twitch-game-notify-0.0.1.tar.gz", "has_sig": false, "md5_digest": "4cefb8870d340d92893d030134c058b2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6825, "upload_time": "2018-07-29T04:32:38", "url": "https://files.pythonhosted.org/packages/25/09/32ddcacb12a4d6a31f9789e8845516d3cdb0c9844ea0fa8fa27ed8cfc69d/twitch-game-notify-0.0.1.tar.gz" } ], "0.0.2": [ { "comment_text": "", "digests": { "md5": "8fb798258e73e618013f5a5b732470f5", "sha256": "bd4265fd19fa3863a215f6cd8a9f1b1d88468ddd77b7a962fcd536baf2d86daa" }, "downloads": -1, "filename": "twitch-game-notify-0.0.2.tar.gz", "has_sig": false, "md5_digest": "8fb798258e73e618013f5a5b732470f5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6860, "upload_time": "2018-07-29T05:47:10", "url": "https://files.pythonhosted.org/packages/86/13/0405cc9c69cd89dda11f991459956fb7f50d0644a452a735ac32eda25e07/twitch-game-notify-0.0.2.tar.gz" } ], "0.0.3": [ { "comment_text": "", "digests": { "md5": "67a61f53be39ec690a4345f286196352", "sha256": "f89926b1241940af289b971ec70deef4dc68a4fd882771eaff2c9b29ae6c4da2" }, "downloads": -1, "filename": "twitch-game-notify-0.0.3.tar.gz", "has_sig": false, "md5_digest": "67a61f53be39ec690a4345f286196352", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6986, "upload_time": "2018-07-29T06:04:04", "url": "https://files.pythonhosted.org/packages/65/f3/f91a9c942d7faf1c94cdf7b8a2c7f158bc36542ccf39f08839435d21a3f5/twitch-game-notify-0.0.3.tar.gz" } ], "0.0.4": [ { "comment_text": "", "digests": { "md5": "bbf0dd4dc7a3089335570b3d487a9090", "sha256": "528a4cd1469576103bc4216b3a9392fc7961b424aa9f2fcf107ca34bfb1e7b2b" }, "downloads": -1, "filename": "twitch-game-notify-0.0.4.tar.gz", "has_sig": false, "md5_digest": "bbf0dd4dc7a3089335570b3d487a9090", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7251, "upload_time": "2018-07-29T06:48:48", "url": "https://files.pythonhosted.org/packages/0e/53/f76291cb423f4c6cb2a5b7b99717f18725b0d08ab88ceaf76668a5ed7c39/twitch-game-notify-0.0.4.tar.gz" } ], "0.0.5": [ { "comment_text": "", "digests": { "md5": "64a69153b241b1194aceecdb404c08a6", "sha256": "218e5d7b36ffa9629bb6b1d2a8692f49a43c832b92d8c3e085a35297b91b50fd" }, "downloads": -1, "filename": "twitch-game-notify-0.0.5.tar.gz", "has_sig": false, "md5_digest": "64a69153b241b1194aceecdb404c08a6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7276, "upload_time": "2018-07-29T07:03:03", "url": "https://files.pythonhosted.org/packages/c8/27/2c1fda13476398f8023da0b9cc4393866876f357614ce22320375d2d8cf0/twitch-game-notify-0.0.5.tar.gz" } ], "0.0.6": [ { "comment_text": "", "digests": { "md5": "d2e77ecf88472a7067f7da954fe11791", "sha256": "8312d316043829c447f87180561f2c8d26c578024b20f2a63afc83cb25ea0981" }, "downloads": -1, "filename": "twitch-game-notify-0.0.6.tar.gz", "has_sig": false, "md5_digest": "d2e77ecf88472a7067f7da954fe11791", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7281, "upload_time": "2018-07-29T07:20:13", "url": "https://files.pythonhosted.org/packages/07/d2/e33046682953fe4d01c2656dfedd886d0c0be6bcf9b92a6cad4948ba0c71/twitch-game-notify-0.0.6.tar.gz" } ], "0.0.7": [ { "comment_text": "", "digests": { "md5": "331f90955ba3b6f7140a998f19ee0397", "sha256": "6bd90c370a2c783ed423f262ef2f2188c0b2e868e81dddaa57f54f924cde062a" }, "downloads": -1, "filename": "twitch-game-notify-0.0.7.tar.gz", "has_sig": false, "md5_digest": "331f90955ba3b6f7140a998f19ee0397", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7291, "upload_time": "2018-07-29T08:40:43", "url": "https://files.pythonhosted.org/packages/ce/4e/b2a6c9be2454fe321997f059dcdf596d19eed219ac413988263020eedda6/twitch-game-notify-0.0.7.tar.gz" } ], "0.1.0": [ { "comment_text": "", "digests": { "md5": "f4ec1967835796c9876d265447f6fe75", "sha256": "a4bf880f6ef48a1560b64c84bb4db2310f3189e43d0c61a63bda4452bfe41d1c" }, "downloads": -1, "filename": "twitch-game-notify-0.1.0.tar.gz", "has_sig": false, "md5_digest": "f4ec1967835796c9876d265447f6fe75", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8950, "upload_time": "2018-07-29T22:58:30", "url": "https://files.pythonhosted.org/packages/37/6a/233e6401186688b67fd30e4aab8e8a52385a2a2ba43ef4296b7772b0e5a3/twitch-game-notify-0.1.0.tar.gz" } ], "0.1.1": [ { "comment_text": "", "digests": { "md5": "861252182d9e23163eb4fbab40b9b4a6", "sha256": "39ac6e73a95f75f1bb70f0362ae3c70cfcd8384efbb0729dc16bc51f4cd50085" }, "downloads": -1, "filename": "twitch-game-notify-0.1.1.tar.gz", "has_sig": false, "md5_digest": "861252182d9e23163eb4fbab40b9b4a6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11737, "upload_time": "2018-07-30T00:44:09", "url": "https://files.pythonhosted.org/packages/39/10/ddfe8d0cd7d4c56b8e86989d98e4fc9c09e4162e49ab78df96137b91ff64/twitch-game-notify-0.1.1.tar.gz" } ], "0.1.2": [ { "comment_text": "", "digests": { "md5": "be4a60738cb31dfee682d832d78bc834", "sha256": "cf0d1d1e35ea53692893e2ae540b0017c368c0d0abe6c17baa88577a893fd634" }, "downloads": -1, "filename": "twitch-game-notify-0.1.2.tar.gz", "has_sig": false, "md5_digest": "be4a60738cb31dfee682d832d78bc834", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11716, "upload_time": "2018-07-30T03:47:59", "url": "https://files.pythonhosted.org/packages/18/f0/2f2284f48dc21fc2e68f54d436a231567dce360558ee30b9cce330262249/twitch-game-notify-0.1.2.tar.gz" } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "27ed5f1f0f97ef027b9e9d2178e48da9", "sha256": "f25060b721552de2cc4d5e244aec31743ad6ee1222fa2085d8087b6a7f76d879" }, "downloads": -1, "filename": "twitch-game-notify-0.2.0.tar.gz", "has_sig": false, "md5_digest": "27ed5f1f0f97ef027b9e9d2178e48da9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12020, "upload_time": "2018-07-31T02:41:15", "url": "https://files.pythonhosted.org/packages/96/72/746bf0f47d8663c88d80d1e398046ca4d0127f14dc7000fa0cc1cd26ed0a/twitch-game-notify-0.2.0.tar.gz" } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "532d3f4c57103fd61506a1bfd7a71d35", "sha256": "f1a120ac71a39d5874d7772b59b5ed67923cd77ad5b5f49352d479770a012737" }, "downloads": -1, "filename": "twitch-game-notify-0.2.1.tar.gz", "has_sig": false, "md5_digest": "532d3f4c57103fd61506a1bfd7a71d35", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 12807, "upload_time": "2018-08-01T01:08:17", "url": "https://files.pythonhosted.org/packages/b4/f5/8701abbaa9aee754d2515193a215d75d68fd777cdd964a7bf4b83b9f31a2/twitch-game-notify-0.2.1.tar.gz" } ], "0.2.10": [ { "comment_text": "", "digests": { "md5": "75c004f67576ae930becfcab474db06f", "sha256": "b536f7baa959695eafa130ca9c6a8c9338154a5d97d33deb8b8fa4ea01000f31" }, "downloads": -1, "filename": "twitch-game-notify-0.2.10.tar.gz", "has_sig": false, "md5_digest": "75c004f67576ae930becfcab474db06f", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 13547, "upload_time": "2018-09-01T01:30:56", "url": "https://files.pythonhosted.org/packages/f3/f8/d6026de273eb559c41531fb03c93156cdea7ee9faf1cc8122c2629638453/twitch-game-notify-0.2.10.tar.gz" } ], "0.2.11": [ { "comment_text": "", "digests": { "md5": "190fce83cdad48a84a37dc7b755ae4f9", "sha256": "d016c1fe8ff6e9bef058b007046eb3dcc2657a733540f39fa07fcfabf0b1788e" }, "downloads": -1, "filename": "twitch-game-notify-0.2.11.tar.gz", "has_sig": false, "md5_digest": "190fce83cdad48a84a37dc7b755ae4f9", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 13593, "upload_time": "2018-12-20T02:00:40", "url": "https://files.pythonhosted.org/packages/9a/9f/23565ec24deeeda0393a759e3e33eb8fe93afe03bdebb6f7090e5b399ec7/twitch-game-notify-0.2.11.tar.gz" } ], "0.2.12": [ { "comment_text": "", "digests": { "md5": "0906e8d8db13e7671dcd30a3769eda60", "sha256": "8e5ef5feba786b111680dc54259e6c481d2f3712ef5bf59d89980ecd090751f0" }, "downloads": -1, "filename": "twitch-game-notify-0.2.12.tar.gz", "has_sig": false, "md5_digest": "0906e8d8db13e7671dcd30a3769eda60", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 13661, "upload_time": "2018-12-28T23:49:45", "url": "https://files.pythonhosted.org/packages/39/16/0443f72f237d2b85358c6891884e01af96376381a48faf1f4dfaa3fc64d7/twitch-game-notify-0.2.12.tar.gz" } ], "0.2.13": [ { "comment_text": "", "digests": { "md5": "b0e9c451a8d125404de42aa071cdf23e", "sha256": "f270dd3ff886a6d1ac3a5c7bc5bd276d8f6d61118f9e013fd54c3871459b79a6" }, "downloads": -1, "filename": "twitch-game-notify-0.2.13.tar.gz", "has_sig": false, "md5_digest": "b0e9c451a8d125404de42aa071cdf23e", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 13777, "upload_time": "2019-03-05T06:50:29", "url": "https://files.pythonhosted.org/packages/d7/0d/bc14523579d0c02e3f3a946148e20a802224177ab884e8b79e804d279518/twitch-game-notify-0.2.13.tar.gz" } ], "0.2.14": [ { "comment_text": "", "digests": { "md5": "d448dbe6945acac7058755326db84be9", "sha256": "7cb9f3d0439d179f587b535ae999bb982d36e4f60f5bed0269d58b6243b182bc" }, "downloads": -1, "filename": "twitch-game-notify-0.2.14.tar.gz", "has_sig": false, "md5_digest": "d448dbe6945acac7058755326db84be9", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 13803, "upload_time": "2019-04-25T02:10:40", "url": "https://files.pythonhosted.org/packages/6a/00/b7db9fb6af9ab576aed6f62cc660fdddb420abb8eba857627aba989b51b4/twitch-game-notify-0.2.14.tar.gz" } ], "0.2.2": [ { "comment_text": "", "digests": { "md5": "2e871ccdc509c09a888d31824aca9697", "sha256": "b425d5a068f2bb13415a397e1b460bbf457e24aba858b139fbb48f784387b069" }, "downloads": -1, "filename": "twitch-game-notify-0.2.2.tar.gz", "has_sig": false, "md5_digest": "2e871ccdc509c09a888d31824aca9697", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 12737, "upload_time": "2018-08-01T01:54:46", "url": "https://files.pythonhosted.org/packages/35/3a/accf550196e2d1b5e685aa938ce5dfef21bba0063e3c4205ee925e0b671b/twitch-game-notify-0.2.2.tar.gz" } ], "0.2.3": [ { "comment_text": "", "digests": { "md5": "de710ad3295ad17d74d059f8834aad5f", "sha256": "d5a851f5ee4572d54bcc1ac7b550fdbdd5e76d636dba969c2d2abf5899f15533" }, "downloads": -1, "filename": "twitch-game-notify-0.2.3.tar.gz", "has_sig": false, "md5_digest": "de710ad3295ad17d74d059f8834aad5f", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 13024, "upload_time": "2018-08-01T02:20:56", "url": "https://files.pythonhosted.org/packages/3c/16/7bcaffc88878cd6e68a33fd264220057db0c9784e48daabf9e0155e13849/twitch-game-notify-0.2.3.tar.gz" } ], "0.2.5": [ { "comment_text": "", "digests": { "md5": "e1e0d2bff2155d7611b4032a95078510", "sha256": "efa56bb3ba9ef647185ea29bcc2b9585f40d159a863fc08538eb1e96e4cd7976" }, "downloads": -1, "filename": "twitch-game-notify-0.2.5.tar.gz", "has_sig": false, "md5_digest": "e1e0d2bff2155d7611b4032a95078510", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 13202, "upload_time": "2018-08-16T00:31:39", "url": "https://files.pythonhosted.org/packages/26/c0/914ecf11e0fbf362073c9ed148f9a5a5613dcf618b272f3b1a93b91b4bc0/twitch-game-notify-0.2.5.tar.gz" } ], "0.2.6": [ { "comment_text": "", "digests": { "md5": "00bfa65f1e8f4922dae010c9b992f64d", "sha256": "c6e7865ff53ef3ed68b7f769887a4fcefcf2f85d2e7f71ea454464ffbeac856e" }, "downloads": -1, "filename": "twitch-game-notify-0.2.6.tar.gz", "has_sig": false, "md5_digest": "00bfa65f1e8f4922dae010c9b992f64d", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 13241, "upload_time": "2018-08-16T00:38:33", "url": "https://files.pythonhosted.org/packages/f5/9c/c7d39fbb979553bec8c727f1e7436f6cdf9855b5290d84d6e55052c60f1d/twitch-game-notify-0.2.6.tar.gz" } ], "0.2.7": [ { "comment_text": "", "digests": { "md5": "1d0dcffbdbf98b8ab6ba2345639ffbbb", "sha256": "b6f17338a2ef4588d497bd380da198588243a01a18e4d0bbc7fd71deab0c1891" }, "downloads": -1, "filename": "twitch-game-notify-0.2.7.tar.gz", "has_sig": false, "md5_digest": "1d0dcffbdbf98b8ab6ba2345639ffbbb", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 13309, "upload_time": "2018-08-16T00:57:27", "url": "https://files.pythonhosted.org/packages/21/38/f1132bf88b9036c6131fb6acb2b9aa8b0662c1e3e4b193ba03ff73bc4e4e/twitch-game-notify-0.2.7.tar.gz" } ], "0.2.8": [ { "comment_text": "", "digests": { "md5": "953c178b79b3b6784363abbf45a1cf1e", "sha256": "3954c41e3b19426247e3cdea2a60827046ab4ba3f5a26b7a760a78cd09e7f9dc" }, "downloads": -1, "filename": "twitch-game-notify-0.2.8.tar.gz", "has_sig": false, "md5_digest": "953c178b79b3b6784363abbf45a1cf1e", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 13390, "upload_time": "2018-08-16T01:59:27", "url": "https://files.pythonhosted.org/packages/ef/94/1817bc59d730f2ba7720bbf0d1efbb0feed71e13f5767adf42aaba5c1bdc/twitch-game-notify-0.2.8.tar.gz" } ], "0.2.9": [ { "comment_text": "", "digests": { "md5": "d14d217ba606ce64e1019897290ec235", "sha256": "3b9704588002dc4554abcbd0a2ad595f2fb47eccef0849fc0b54922599931c4c" }, "downloads": -1, "filename": "twitch-game-notify-0.2.9.tar.gz", "has_sig": false, "md5_digest": "d14d217ba606ce64e1019897290ec235", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 13472, "upload_time": "2018-08-21T00:32:02", "url": "https://files.pythonhosted.org/packages/46/bc/027e48e3cfcf522d9699ad5fd6f2696a1957eae1f2d570d917ca77f7f52c/twitch-game-notify-0.2.9.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "d448dbe6945acac7058755326db84be9", "sha256": "7cb9f3d0439d179f587b535ae999bb982d36e4f60f5bed0269d58b6243b182bc" }, "downloads": -1, "filename": "twitch-game-notify-0.2.14.tar.gz", "has_sig": false, "md5_digest": "d448dbe6945acac7058755326db84be9", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 13803, "upload_time": "2019-04-25T02:10:40", "url": "https://files.pythonhosted.org/packages/6a/00/b7db9fb6af9ab576aed6f62cc660fdddb420abb8eba857627aba989b51b4/twitch-game-notify-0.2.14.tar.gz" } ] }