{ "info": { "author": "Christian Kauten", "author_email": "kautencreations@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "Intended Audience :: Science/Research", "License :: Free For Educational Use", "Operating System :: MacOS :: MacOS X", "Operating System :: Microsoft :: Windows", "Operating System :: POSIX :: Linux", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Topic :: Games/Entertainment :: Side-Scrolling/Arcade Games", "Topic :: Scientific/Engineering :: Artificial Intelligence" ], "description": "# gym-super-mario-bros\n\n[![BuildStatus][build-status]][ci-server]\n[![PackageVersion][pypi-version]][pypi-home]\n[![PythonVersion][python-version]][python-home]\n[![Stable][pypi-status]][pypi-home]\n[![Format][pypi-format]][pypi-home]\n[![License][pypi-license]](LICENSE)\n\n[build-status]: https://travis-ci.com/Kautenja/gym-super-mario-bros.svg?branch=master\n[ci-server]: https://travis-ci.com/Kautenja/gym-super-mario-bros\n[pypi-version]: https://badge.fury.io/py/gym-super-mario-bros.svg\n[pypi-license]: https://img.shields.io/pypi/l/gym-super-mario-bros.svg\n[pypi-status]: https://img.shields.io/pypi/status/gym-super-mario-bros.svg\n[pypi-format]: https://img.shields.io/pypi/format/gym-super-mario-bros.svg\n[pypi-home]: https://badge.fury.io/py/gym-super-mario-bros\n[python-version]: https://img.shields.io/pypi/pyversions/gym-super-mario-bros.svg\n[python-home]: https://python.org\n\n![Mario](https://user-images.githubusercontent.com/2184469/40949613-7542733a-6834-11e8-895b-ce1cc3af9dbb.gif)\n\nAn [OpenAI Gym](https://github.com/openai/gym) environment for\nSuper Mario Bros. & Super Mario Bros. 2 (Lost Levels) on The Nintendo\nEntertainment System (NES) using\n[the nes-py emulator](https://github.com/Kautenja/nes-py).\n\n## Installation\n\nThe preferred installation of `gym-super-mario-bros` is from `pip`:\n\n```shell\npip install gym-super-mario-bros\n```\n\n## Usage\n\n### Python\n\nYou must import `gym_super_mario_bros` before trying to make an environment.\nThis is because gym environments are registered at runtime. By default,\n`gym_super_mario_bros` environments use the full NES action space of 256\ndiscrete actions. To contstrain this, `gym_super_mario_bros.actions` provides\nthree actions lists (`RIGHT_ONLY`, `SIMPLE_MOVEMENT`, and `COMPLEX_MOVEMENT`)\nfor the `nes_py.wrappers.JoypadSpace` wrapper. See\n[gym_super_mario_bros/actions.py](gym_super_mario_bros/actions.py) for a\nbreakdown of the legal actions in each of these three lists.\n\n```python\nfrom nes_py.wrappers import JoypadSpace\nimport gym_super_mario_bros\nfrom gym_super_mario_bros.actions import SIMPLE_MOVEMENT\nenv = gym_super_mario_bros.make('SuperMarioBros-v0')\nenv = JoypadSpace(env, SIMPLE_MOVEMENT)\n\ndone = True\nfor step in range(5000):\n if done:\n state = env.reset()\n state, reward, done, info = env.step(env.action_space.sample())\n env.render()\n\nenv.close()\n```\n\n**NOTE:** `gym_super_mario_bros.make` is just an alias to `gym.make` for\nconvenience.\n\n**NOTE:** remove calls to `render` in training code for a nontrivial\nspeedup.\n\n### Command Line\n\n`gym_super_mario_bros` features a command line interface for playing\nenvironments using either the keyboard, or uniform random movement.\n\n```shell\ngym_super_mario_bros -e -m <`human` or `random`>\n```\n\n**NOTE:** by default, `-e` is set to `SuperMarioBros-v0` and `-m` is set to\n`human`.\n\n## Environments\n\nThese environments allow 3 attempts (lives) to make it through the 32 stages\nin the game. The environments only send reward-able game-play frames to\nagents; No cut-scenes, loading screens, etc. are sent from the NES emulator\nto an agent nor can an agent perform actions during these instances. If a\ncut-scene is not able to be skipped by hacking the NES's RAM, the environment\nwill lock the Python process until the emulator is ready for the next action.\n\n| Environment | Game | ROM | Screenshot |\n|:--------------------------------|:-----|:--------------|:-----------|\n| `SuperMarioBros-v0` | SMB | standard | ![][v0] |\n| `SuperMarioBros-v1` | SMB | downsample | ![][v1] |\n| `SuperMarioBros-v2` | SMB | pixel | ![][v2] |\n| `SuperMarioBros-v3` | SMB | rectangle | ![][v3] |\n| `SuperMarioBros2-v0` | SMB2 | standard | ![][2-v0] |\n| `SuperMarioBros2-v1` | SMB2 | downsample | ![][2-v1] |\n\n[v0]: https://user-images.githubusercontent.com/2184469/40948820-3d15e5c2-6830-11e8-81d4-ecfaffee0a14.png\n[v1]: https://user-images.githubusercontent.com/2184469/40948819-3cff6c48-6830-11e8-8373-8fad1665ac72.png\n[v2]: https://user-images.githubusercontent.com/2184469/40948818-3cea09d4-6830-11e8-8efa-8f34d8b05b11.png\n[v3]: https://user-images.githubusercontent.com/2184469/40948817-3cd6600a-6830-11e8-8abb-9cee6a31d377.png\n[2-v0]: https://user-images.githubusercontent.com/2184469/40948822-3d3b8412-6830-11e8-860b-af3802f5373f.png\n[2-v1]: https://user-images.githubusercontent.com/2184469/40948821-3d2d61a2-6830-11e8-8789-a92e750aa9a8.png\n\n### Individual Stages\n\nThese environments allow a single attempt (life) to make it through a single\nstage of the game.\n\nUse the template\n\n SuperMarioBros---v\n\nwhere:\n\n- `` is a number in {1, 2, 3, 4, 5, 6, 7, 8} indicating the world\n- `` is a number in {1, 2, 3, 4} indicating the stage within a world\n- `` is a number in {0, 1, 2, 3} specifying the ROM mode to use\n - 0: standard ROM\n - 1: downsampled ROM\n - 2: pixel ROM\n - 3: rectangle ROM\n\nFor example, to play 4-2 on the downsampled ROM, you would use the environment\nid `SuperMarioBros-4-2-v1`.\n\n### Random Stage Selection\n\nThe random stage selection environment randomly selects a stage and allows a\nsingle attempt to clear it. Upon a death and subsequent call to `reset`, the\nenvironment randomly selects a new stage. This is only available for the\nstandard Super Mario Bros. game, _not_ Lost Levels (at the moment). To use\nthese environments, append `RandomStages` to the `SuperMarioBros` id. For\nexample, to use the standard ROM with random stage selection use\n`SuperMarioBrosRandomStages-v0`. To seed the random stage selection use the\n`seed` method of the env, i.e., `env.seed(1)`, before any calls to `reset`.\n\n## Step\n\nInfo about the rewards and info returned by the `step` method.\n\n### Reward Function\n\nThe reward function assumes the objective of the game is to move as far right\nas possible (increase the agent's _x_ value), as fast as possible, without\ndying. To model this game, three separate variables compose the reward:\n\n1. _v_: the difference in agent _x_ values between states\n - in this case this is instantaneous velocity for the given step\n - _v = x1 - x0_\n - _x0_ is the x position before the step\n - _x1_ is the x position after the step\n - moving right \u21d4 _v > 0_\n - moving left \u21d4 _v < 0_\n - not moving \u21d4 _v = 0_\n2. _c_: the difference in the game clock between frames\n - the penalty prevents the agent from standing still\n - _c = c0 - c1_\n - _c0_ is the clock reading before the step\n - _c1_ is the clock reading after the step\n - no clock tick \u21d4 _c = 0_\n - clock tick \u21d4 _c < 0_\n3. _d_: a death penalty that penalizes the agent for dying in a state\n - this penalty encourages the agent to avoid death\n - alive \u21d4 _d = 0_\n - dead \u21d4 _d = -15_\n\n_r = v + c + d_\n\nThe reward is clipped into the range _(-15, 15)_.\n\n### `info` dictionary\n\nThe `info` dictionary returned by the `step` method contains the following\nkeys:\n\n| Key | Type | Description\n|:---------------|:-------|:------------------------------------------------------|\n| `coins ` | `int` | The number of collected coins\n| `flag_get` | `bool` | True if Mario reached a flag or ax\n| `life` | `int` | The number of lives left, i.e., _{3, 2, 1}_\n| `score` | `int` | The cumulative in-game score\n| `stage` | `int` | The current stage, i.e., _{1, ..., 4}_\n| `status` | `str` | Mario's status, i.e., _{'small', 'tall', 'fireball'}_\n| `time` | `int` | The time left on the clock\n| `world` | `int` | The current world, i.e., _{1, ..., 8}_\n| `x_pos` | `int` | Mario's _x_ position in the **stage** (from the left)\n| `x_pos_screen` | `int` | Mario's _x_ position in the **screen** (from the left)\n| `y_pos` | `int` | Mario's _y_ position in the stage/screen (from the bottom)\n\n## Citation\n\nPlease cite `gym-super-mario-bros` if you use it in your research.\n\n```tex\n@misc{gym-super-mario-bros,\n author = {Christian Kauten},\n howpublished = {GitHub},\n title = {{S}uper {M}ario {B}ros for {O}pen{AI} {G}ym},\n URL = {https://github.com/Kautenja/gym-super-mario-bros},\n year = {2018},\n}\n```\n\n\n", "description_content_type": "text/markdown", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/Kautenja/gym-super-mario-bros", "keywords": "OpenAI-Gym NES Super-Mario-Bros Lost-Levels Reinforcement-Learning-Environment", "license": "Proprietary", "maintainer": "", "maintainer_email": "", "name": "gym-super-mario-bros", "package_url": "https://pypi.org/project/gym-super-mario-bros/", "platform": "", "project_url": "https://pypi.org/project/gym-super-mario-bros/", "project_urls": { "Homepage": "https://github.com/Kautenja/gym-super-mario-bros" }, "release_url": "https://pypi.org/project/gym-super-mario-bros/7.3.0/", "requires_dist": [ "nes-py (>=8.0.0)" ], "requires_python": "", "summary": "Super Mario Bros. for OpenAI Gym", "version": "7.3.0" }, "last_serial": 5901516, "releases": { "0.10.0": [ { "comment_text": "", "digests": { "md5": "77061dac821fdb71c9afe1ef512ad8bb", "sha256": "65e9bbcc90cb213013b90e4e57654103ab695e253773d6b0a689cf308d3cac10" }, "downloads": -1, "filename": "gym_super_mario_bros-0.10.0.tar.gz", "has_sig": false, "md5_digest": "77061dac821fdb71c9afe1ef512ad8bb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 141392, "upload_time": "2018-06-03T07:31:00", "url": "https://files.pythonhosted.org/packages/9c/01/e39a69c20eedcf0e968e8d065e0818404b96b28dc99b86d9132676ae31ed/gym_super_mario_bros-0.10.0.tar.gz" } ], "0.10.1": [ { "comment_text": "", "digests": { "md5": "09cea399d6b015da51501a18717ca539", "sha256": "71ada0bb60dbd4289e32dcb005a62d883096be459f0d5073f700312ca1e1bdcc" }, "downloads": -1, "filename": "gym_super_mario_bros-0.10.1.tar.gz", "has_sig": false, "md5_digest": "09cea399d6b015da51501a18717ca539", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 141388, "upload_time": "2018-06-03T07:44:40", "url": "https://files.pythonhosted.org/packages/e1/a0/7235bc92fa223509f30b111c156c3897f96f681097051888ff933896fb83/gym_super_mario_bros-0.10.1.tar.gz" } ], "0.10.2": [ { "comment_text": "", "digests": { "md5": "8a6284eab9f83ea82fc57b19ba70d5dc", "sha256": "b553670674c154c72f860687d1e66da9aa130c124d2d543ebbce68b96b71509a" }, "downloads": -1, "filename": "gym_super_mario_bros-0.10.2.tar.gz", "has_sig": false, "md5_digest": "8a6284eab9f83ea82fc57b19ba70d5dc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 141404, "upload_time": "2018-06-03T08:40:28", "url": "https://files.pythonhosted.org/packages/af/e8/ece3d8147eb4cbf8668b36781353b2f6efb78187ebb8f3442b07a69773e4/gym_super_mario_bros-0.10.2.tar.gz" } ], "0.10.3": [ { "comment_text": "", "digests": { "md5": "d3752b6ee1945daa36ccf9c5239434bb", "sha256": "4776cf010dce1629f39d901a26c66277bcacfe62de9213bde7268997c3f5e16a" }, "downloads": -1, "filename": "gym_super_mario_bros-0.10.3.tar.gz", "has_sig": false, "md5_digest": "d3752b6ee1945daa36ccf9c5239434bb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 141409, "upload_time": "2018-06-03T08:58:15", "url": "https://files.pythonhosted.org/packages/f9/92/4346f100050bec46e3d543e85156077d7e1d160af6c2c520b671493957df/gym_super_mario_bros-0.10.3.tar.gz" } ], "0.10.4": [ { "comment_text": "", "digests": { "md5": "9034d6959c422a360e72f5d8132822b1", "sha256": "be09963c54a22caa344030a5601bb4e68d9e50123939035c03edef0af62cd391" }, "downloads": -1, "filename": "gym_super_mario_bros-0.10.4.tar.gz", "has_sig": false, "md5_digest": "9034d6959c422a360e72f5d8132822b1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 141424, "upload_time": "2018-06-04T01:36:25", "url": "https://files.pythonhosted.org/packages/4b/de/81e3effc43074bfa49186e0bfd1fbb5dae36ae0f9c43c24d8a9b08051ed2/gym_super_mario_bros-0.10.4.tar.gz" } ], "0.11.0": [ { "comment_text": "", "digests": { "md5": "bddcc652c02160babd9be5ae49a942cc", "sha256": "1ee71fe404e8acf094d3feb14236ebb332a01c736441c9ce4ef25337483d04e8" }, "downloads": -1, "filename": "gym_super_mario_bros-0.11.0.tar.gz", "has_sig": false, "md5_digest": "bddcc652c02160babd9be5ae49a942cc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 168053, "upload_time": "2018-06-05T00:19:49", "url": "https://files.pythonhosted.org/packages/e4/c6/89bacc10852732107a3d3bef361ba3df3d080a47c6aa3bc84d99c46bf822/gym_super_mario_bros-0.11.0.tar.gz" } ], "0.11.1": [ { "comment_text": "", "digests": { "md5": "a14f3438ad8d0dccd818f2b65a3312de", "sha256": "64d2369ef8f2bfafed5d2422708b403cf4ccc535bdab526741750a98570ca7b2" }, "downloads": -1, "filename": "gym_super_mario_bros-0.11.1.tar.gz", "has_sig": false, "md5_digest": "a14f3438ad8d0dccd818f2b65a3312de", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 197755, "upload_time": "2018-06-05T01:14:01", "url": "https://files.pythonhosted.org/packages/ff/0c/d8ca732c5c5a06723ac454e39a4fbafa5063dda8038cf5879d1a8bbc4173/gym_super_mario_bros-0.11.1.tar.gz" } ], "0.11.2": [ { "comment_text": "", "digests": { "md5": "94a69237bd95c81d8fb4a1774a3eab22", "sha256": "a9c0adcee337bb44c735b6e5c088d72c8c9c95805cde65451e0a4422e216d58f" }, "downloads": -1, "filename": "gym_super_mario_bros-0.11.2.tar.gz", "has_sig": false, "md5_digest": "94a69237bd95c81d8fb4a1774a3eab22", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 197755, "upload_time": "2018-06-05T01:16:49", "url": "https://files.pythonhosted.org/packages/56/1b/7a2e63267d18966400d2fdb723aaab6ab00dd2350be76a8eee7aa74900c4/gym_super_mario_bros-0.11.2.tar.gz" } ], "0.11.3": [ { "comment_text": "", "digests": { "md5": "03010def9d5f549ca9824bc23fca1ef1", "sha256": "60e98690e6028c820949604f0c16cb0eda3f2a49cbe80e4feccf47ffb9abefc5" }, "downloads": -1, "filename": "gym_super_mario_bros-0.11.3.tar.gz", "has_sig": false, "md5_digest": "03010def9d5f549ca9824bc23fca1ef1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 197664, "upload_time": "2018-06-05T01:19:52", "url": "https://files.pythonhosted.org/packages/7b/73/ad90bf1d25d0e5cdb6354fc02d5f3fb7f5b63de967f96f9f0937b96ae4f3/gym_super_mario_bros-0.11.3.tar.gz" } ], "0.11.4": [ { "comment_text": "", "digests": { "md5": "c1db08bb5cd5a081e33b569942d27e51", "sha256": "191f550bf912c5c6c3acaa1aba640bee58c12c89957e1ef99c74904d1cb95af5" }, "downloads": -1, "filename": "gym_super_mario_bros-0.11.4.tar.gz", "has_sig": false, "md5_digest": "c1db08bb5cd5a081e33b569942d27e51", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 197798, "upload_time": "2018-06-05T02:18:27", "url": "https://files.pythonhosted.org/packages/dc/e1/0127caaaf411a1bc3b02ac53ed533146571ec97d7763ce727878a5b2c4fe/gym_super_mario_bros-0.11.4.tar.gz" } ], "0.11.5": [ { "comment_text": "", "digests": { "md5": "c5134aaa624ba44dd2d785982bdd8b2c", "sha256": "ffe48ec6de585440c5e5dc0dccc4ff76d41e827b5e701f41aa396632ab677df8" }, "downloads": -1, "filename": "gym_super_mario_bros-0.11.5.tar.gz", "has_sig": false, "md5_digest": "c5134aaa624ba44dd2d785982bdd8b2c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 197806, "upload_time": "2018-06-05T02:20:36", "url": "https://files.pythonhosted.org/packages/8d/cf/87edfa6fca6a799ac00d6140250f1883a40f2600d9741bf4e72e4e0b54a3/gym_super_mario_bros-0.11.5.tar.gz" } ], "0.12.0": [ { "comment_text": "", "digests": { "md5": "1e29ec3603546f2772914c4fb5cc9267", "sha256": "d50bbd7ffe74a5bd9938d1a8b186f2cf10c4b69ae16b222bdd5f450506d46799" }, "downloads": -1, "filename": "gym_super_mario_bros-0.12.0.tar.gz", "has_sig": false, "md5_digest": "1e29ec3603546f2772914c4fb5cc9267", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 200303, "upload_time": "2018-06-05T03:12:28", "url": "https://files.pythonhosted.org/packages/77/b0/1e08ac97e81929de91027a241139f4e25497952661169f21c3db79d5c719/gym_super_mario_bros-0.12.0.tar.gz" } ], "0.13.0": [ { "comment_text": "", "digests": { "md5": "862c2cc782fc938933554858ebc112b2", "sha256": "0b779aacff9171fedfed0a7a4151dff9ca5a7c871ddb19962468e1c7c8bc6d91" }, "downloads": -1, "filename": "gym_super_mario_bros-0.13.0.tar.gz", "has_sig": false, "md5_digest": "862c2cc782fc938933554858ebc112b2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 200440, "upload_time": "2018-06-05T04:51:33", "url": "https://files.pythonhosted.org/packages/95/21/b94d91a100773074a21a1f844883a001e27a30e121d28c9a462c851f7673/gym_super_mario_bros-0.13.0.tar.gz" } ], "0.13.1": [ { "comment_text": "", "digests": { "md5": "9b76fa52d2f8a75a0c872aeb14a3bf95", "sha256": "ad4178e44a9f3b6aedfc872b3afb622e58e6f02ed9e717f28457be935e28e879" }, "downloads": -1, "filename": "gym_super_mario_bros-0.13.1.tar.gz", "has_sig": false, "md5_digest": "9b76fa52d2f8a75a0c872aeb14a3bf95", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 200493, "upload_time": "2018-06-05T05:07:15", "url": "https://files.pythonhosted.org/packages/09/93/a5ebd378433ce42b8f5794250b15d856516bfe296920151f43d23b6c6f88/gym_super_mario_bros-0.13.1.tar.gz" } ], "0.14.0": [ { "comment_text": "", "digests": { "md5": "382bc3fa1e95bb2e871994d6e1ed9b59", "sha256": "e4491fe5dba0ded8269843b5a2bc154357c45b027f0f6347e29b42d0145d034e" }, "downloads": -1, "filename": "gym_super_mario_bros-0.14.0.tar.gz", "has_sig": false, "md5_digest": "382bc3fa1e95bb2e871994d6e1ed9b59", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 202704, "upload_time": "2018-06-05T07:07:10", "url": "https://files.pythonhosted.org/packages/f2/f4/d1ab9dcd0c82ca6e865f668ee5d40c4d5dab894309a0d75ff2e1297fccdc/gym_super_mario_bros-0.14.0.tar.gz" } ], "0.14.1": [ { "comment_text": "", "digests": { "md5": "22d7f76ae381ca904134e73389a718cd", "sha256": "3c2582802d24b01de07d04885596c5ba5d58cf7adec193e8725020a611f1f02c" }, "downloads": -1, "filename": "gym_super_mario_bros-0.14.1.tar.gz", "has_sig": false, "md5_digest": "22d7f76ae381ca904134e73389a718cd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 202713, "upload_time": "2018-06-05T07:08:32", "url": "https://files.pythonhosted.org/packages/ce/ef/bb0e2598b1532684bec91d7482fdf0c3c3f1576a8725c48c1f4c5f27797a/gym_super_mario_bros-0.14.1.tar.gz" } ], "0.14.2": [ { "comment_text": "", "digests": { "md5": "8a9d12ad680b073ca05ca232004c26c4", "sha256": "707df09ef02d82a3dbf8d0b352946446bf60c202b770ecdd36d99c9b17e2e296" }, "downloads": -1, "filename": "gym_super_mario_bros-0.14.2.tar.gz", "has_sig": false, "md5_digest": "8a9d12ad680b073ca05ca232004c26c4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 202979, "upload_time": "2018-06-05T07:17:11", "url": "https://files.pythonhosted.org/packages/da/01/c3578b45f44066fe5a2a17c44f4ae3029ec9c7b16d75f24858ec6c3b2546/gym_super_mario_bros-0.14.2.tar.gz" } ], "0.14.3": [ { "comment_text": "", "digests": { "md5": "3b359c2bfe2bf18482599447562aa3ea", "sha256": "473d26d89a64e0e65e387a5e3f29be56c8ee5bab2ed02a9d89a87e5364d1ee84" }, "downloads": -1, "filename": "gym_super_mario_bros-0.14.3.tar.gz", "has_sig": false, "md5_digest": "3b359c2bfe2bf18482599447562aa3ea", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 202987, "upload_time": "2018-06-05T22:35:01", "url": "https://files.pythonhosted.org/packages/25/a3/342c176e2c3295643d41d2bed0e4b207deb4d6fe69da54f5cf3286760b47/gym_super_mario_bros-0.14.3.tar.gz" } ], "0.15.0": [ { "comment_text": "", "digests": { "md5": "29bfcb3e6059e11ca002aeec5cab7bf1", "sha256": "850db1e26ef73a27eac619181df7f9a711327a0d8a86c8c055a18c414068f011" }, "downloads": -1, "filename": "gym_super_mario_bros-0.15.0.tar.gz", "has_sig": false, "md5_digest": "29bfcb3e6059e11ca002aeec5cab7bf1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 204329, "upload_time": "2018-06-07T06:04:26", "url": "https://files.pythonhosted.org/packages/8f/64/0ff06d97f31e5a3c8cf1ab3c3deacf28bdf108524adf5326b02d995d7af8/gym_super_mario_bros-0.15.0.tar.gz" } ], "0.15.1": [ { "comment_text": "", "digests": { "md5": "8e1b496c5a7b21d961b9f23923ff9fb5", "sha256": "58b6635c0ddd1ca71574a8cdd3bca7671fd598145ecaf46684ccf6ef94e28ddb" }, "downloads": -1, "filename": "gym_super_mario_bros-0.15.1.tar.gz", "has_sig": false, "md5_digest": "8e1b496c5a7b21d961b9f23923ff9fb5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 204330, "upload_time": "2018-06-07T14:18:30", "url": "https://files.pythonhosted.org/packages/8f/9e/c2add3f1ff51e792136dde9beae31f52df1984e43eaed008df33ccaa7d50/gym_super_mario_bros-0.15.1.tar.gz" } ], "0.15.2": [ { "comment_text": "", "digests": { "md5": "35ab8267c91e384310081a170846d5f8", "sha256": "1fa77ef0779f390a7a01835a9c1ce3ef1db1129110f68bbfb4f0a457c7d4a7d4" }, "downloads": -1, "filename": "gym_super_mario_bros-0.15.2-py3-none-any.whl", "has_sig": false, "md5_digest": "35ab8267c91e384310081a170846d5f8", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 207725, "upload_time": "2018-06-09T03:53:54", "url": "https://files.pythonhosted.org/packages/b6/0f/77199162c7c18a901697b2c7b79d853c18d5cdd8da1b970d92f76f3bf488/gym_super_mario_bros-0.15.2-py3-none-any.whl" } ], "0.15.3": [ { "comment_text": "", "digests": { "md5": "b124a083f60aefddbf0d68bbe9e25cac", "sha256": "1c8440ee8482d25e2cc9618b4f2a52e28fa94ea52124aa983afd98d7cc5fea3f" }, "downloads": -1, "filename": "gym_super_mario_bros-0.15.3-py3-none-any.whl", "has_sig": false, "md5_digest": "b124a083f60aefddbf0d68bbe9e25cac", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 207733, "upload_time": "2018-06-11T01:54:39", "url": "https://files.pythonhosted.org/packages/9f/3b/1403aa16e2b00d4cf5592693ab564e6c63f7e1fd30d91835397c79026a73/gym_super_mario_bros-0.15.3-py3-none-any.whl" } ], "0.15.4": [ { "comment_text": "", "digests": { "md5": "38c1b67ac8eddddbcaba859764cf7b8a", "sha256": "8f2137597141911a4ff92135668285cc444ee9ab6462423a4180d4551762080d" }, "downloads": -1, "filename": "gym_super_mario_bros-0.15.4-py3-none-any.whl", "has_sig": false, "md5_digest": "38c1b67ac8eddddbcaba859764cf7b8a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 206641, "upload_time": "2018-06-11T02:26:52", "url": "https://files.pythonhosted.org/packages/e2/36/a8342c88591ca03ece0ae650a91d8c1bc604c9c11a55b8ff71a16ab8d055/gym_super_mario_bros-0.15.4-py3-none-any.whl" } ], "0.15.5": [ { "comment_text": "", "digests": { "md5": "965b533b48785df8b61623d1aa5c29c1", "sha256": "d2ea69ad9c370bbbae0363138624840497a36b10ec5bcfaf06377be3afe19f89" }, "downloads": -1, "filename": "gym_super_mario_bros-0.15.5-py3-none-any.whl", "has_sig": false, "md5_digest": "965b533b48785df8b61623d1aa5c29c1", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 206640, "upload_time": "2018-06-14T22:09:25", "url": "https://files.pythonhosted.org/packages/be/44/3e5f0eaf4753df559972d283b9d42753ece0d089c83f76358738ab60c87f/gym_super_mario_bros-0.15.5-py3-none-any.whl" } ], "0.15.6": [ { "comment_text": "", "digests": { "md5": "88d844845341d3f4a585086a65409bde", "sha256": "0fe7caeb363cd2d716bd6a2d514e2c39a70c594b08c4f0109473992c72b49190" }, "downloads": -1, "filename": "gym_super_mario_bros-0.15.6-py3-none-any.whl", "has_sig": false, "md5_digest": "88d844845341d3f4a585086a65409bde", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 206641, "upload_time": "2018-06-14T22:11:12", "url": "https://files.pythonhosted.org/packages/0a/82/7ea160ae0e5a0d52f0ddd86734feae298fece69a40b6fd10cb0d92b05a92/gym_super_mario_bros-0.15.6-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8fc090e2a0aa8e1e368f01104870956f", "sha256": "a36d15ece7ba4f657beb10f6e88250213f99065e8506b19b57d7ff13a782d545" }, "downloads": -1, "filename": "gym_super_mario_bros-0.15.6.tar.gz", "has_sig": false, "md5_digest": "8fc090e2a0aa8e1e368f01104870956f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 201723, "upload_time": "2018-06-14T22:11:14", "url": "https://files.pythonhosted.org/packages/ed/0b/cf174759e1cd62bfcf3871cbb7a50433b60574362b80855d4fb73f76ef9b/gym_super_mario_bros-0.15.6.tar.gz" } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "09b5a8c01c02c34bd74de1d63db1e7d5", "sha256": "3b3dfc23530fdba46184c98a904c3b6a39bfa8d717108cc45c971240c496140d" }, "downloads": -1, "filename": "gym_super_mario_bros-0.4.0.tar.gz", "has_sig": false, "md5_digest": "09b5a8c01c02c34bd74de1d63db1e7d5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 44334, "upload_time": "2018-04-27T03:47:24", "url": "https://files.pythonhosted.org/packages/5c/a7/d1e594212301f8f08c033e4ff5d091f90a5fefbe24525afb105fac274407/gym_super_mario_bros-0.4.0.tar.gz" } ], "0.4.1": [ { "comment_text": "", "digests": { "md5": "44f831aebe88cd31737e5ab2f0a1de4f", "sha256": "38a18651a26efd547d36b6066dc8b08ec59bd474b19ecce9dcdbf53e070db8d9" }, "downloads": -1, "filename": "gym_super_mario_bros-0.4.1.tar.gz", "has_sig": false, "md5_digest": "44f831aebe88cd31737e5ab2f0a1de4f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 44687, "upload_time": "2018-04-27T05:15:40", "url": "https://files.pythonhosted.org/packages/6e/e9/36bb447bc90620c0f68dea48a983ad7b944ce9da760b980c22baa3f4e881/gym_super_mario_bros-0.4.1.tar.gz" } ], "0.4.2": [ { "comment_text": "", "digests": { "md5": "c3a13536c91e4e02d23573230cc86bfc", "sha256": "a7039d22835ad47375a5caf7382ca8029e1188bd03e3eec3f78674270d3f89be" }, "downloads": -1, "filename": "gym_super_mario_bros-0.4.2.tar.gz", "has_sig": false, "md5_digest": "c3a13536c91e4e02d23573230cc86bfc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 44693, "upload_time": "2018-04-27T05:16:57", "url": "https://files.pythonhosted.org/packages/26/a4/271ab35da9cebf299d41a14618d5eb4c2fff3bcae9e66dc21efff01a7b11/gym_super_mario_bros-0.4.2.tar.gz" } ], "0.5.0": [ { "comment_text": "", "digests": { "md5": "a82bdabe7efd9ec0be8c69b0489a2034", "sha256": "ed2d4c4a6cb71f5697d214ffc921c754fa6e7d6cbd74a685aae4fb366dfcfb96" }, "downloads": -1, "filename": "gym_super_mario_bros-0.5.0.tar.gz", "has_sig": false, "md5_digest": "a82bdabe7efd9ec0be8c69b0489a2034", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 76394, "upload_time": "2018-04-27T07:36:35", "url": "https://files.pythonhosted.org/packages/6b/8c/4774d82e6b4a3c341258eeff55c6bba0513092e192cdf749e8f47c3a0ac1/gym_super_mario_bros-0.5.0.tar.gz" } ], "0.5.1": [ { "comment_text": "", "digests": { "md5": "5876d02d4caf3b6e1541c687d0f1b165", "sha256": "3777e54d0e4a98a7053c227c9f16c1e876b7c6d10f49ffdf27cf6516b51e0317" }, "downloads": -1, "filename": "gym_super_mario_bros-0.5.1.tar.gz", "has_sig": false, "md5_digest": "5876d02d4caf3b6e1541c687d0f1b165", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 76954, "upload_time": "2018-04-27T07:45:43", "url": "https://files.pythonhosted.org/packages/9a/96/c597ac0024dacf428a2fb48b92f8be71aa8087bc731466e351f3807b7c78/gym_super_mario_bros-0.5.1.tar.gz" } ], "0.6.0": [ { "comment_text": "", "digests": { "md5": "0a7acb110b48a546302de1e86bd270bc", "sha256": "f0da797142dd9bd63b76451a1f0655d8e4170a4c6c15efc7a1b97234e654a7dd" }, "downloads": -1, "filename": "gym_super_mario_bros-0.6.0.tar.gz", "has_sig": false, "md5_digest": "0a7acb110b48a546302de1e86bd270bc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 77329, "upload_time": "2018-04-29T14:16:26", "url": "https://files.pythonhosted.org/packages/12/8e/58b82f0e5eeac6b41ee295ad2a1332740f8d047c5f00b3ef4311418b8955/gym_super_mario_bros-0.6.0.tar.gz" } ], "0.6.1": [ { "comment_text": "", "digests": { "md5": "e88af120dd4bcb52f622f807bddeb882", "sha256": "7b22f8311b7854e27c523e5cfe0bcc6ce4b4d66f5ad17a702780d883b9325d51" }, "downloads": -1, "filename": "gym_super_mario_bros-0.6.1.tar.gz", "has_sig": false, "md5_digest": "e88af120dd4bcb52f622f807bddeb882", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 78397, "upload_time": "2018-04-29T14:23:31", "url": "https://files.pythonhosted.org/packages/de/1f/74c18bd2f8827d19a239e279f6288ea013d03d620053bda35fd69f6c0ea0/gym_super_mario_bros-0.6.1.tar.gz" } ], "0.6.2": [ { "comment_text": "", "digests": { "md5": "9f466c97eb6274b2f8e9a84180c87e81", "sha256": "49efab2da708720f83fed5c5d8d52b7ae9ee6b1b03158315ee4e9e82ba182a10" }, "downloads": -1, "filename": "gym_super_mario_bros-0.6.2.tar.gz", "has_sig": false, "md5_digest": "9f466c97eb6274b2f8e9a84180c87e81", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 78394, "upload_time": "2018-04-29T14:23:59", "url": "https://files.pythonhosted.org/packages/ed/81/4edb59c44aa869a7100b7218ba6ca9109fe433d961795a4f33131e5d313c/gym_super_mario_bros-0.6.2.tar.gz" } ], "0.6.3": [ { "comment_text": "", "digests": { "md5": "04341e221096757bb19632df5e828b75", "sha256": "0e3b2c3d2b959ec300901f26304218b133226fd074ded292a5e6ecea0cb6f9a7" }, "downloads": -1, "filename": "gym_super_mario_bros-0.6.3.tar.gz", "has_sig": false, "md5_digest": "04341e221096757bb19632df5e828b75", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 78393, "upload_time": "2018-04-29T14:32:27", "url": "https://files.pythonhosted.org/packages/bb/ad/6ccbf8d6b4eecbfbbd5df2fd843bc8508a38ca4855c1c1a302506ac391f7/gym_super_mario_bros-0.6.3.tar.gz" } ], "0.6.4": [ { "comment_text": "", "digests": { "md5": "4da86fedbaaad69364d1e19020bb1e39", "sha256": "41d4e8266df02d9fc3ff800e990f27ba040962ca4608722535741526c09ba8fa" }, "downloads": -1, "filename": "gym_super_mario_bros-0.6.4.tar.gz", "has_sig": false, "md5_digest": "4da86fedbaaad69364d1e19020bb1e39", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 78806, "upload_time": "2018-04-30T17:59:01", "url": "https://files.pythonhosted.org/packages/27/00/9840ddd9a63a47f6659b8a7b5db815a3e7b1897d8442339a899ec2a12466/gym_super_mario_bros-0.6.4.tar.gz" } ], "0.7.0": [ { "comment_text": "", "digests": { "md5": "05075374dc4b1b64ecf738f0de22c0e2", "sha256": "d869dac7d6cd551b21d4aab4564cace2f34d01d743cf5c406b735604a361e727" }, "downloads": -1, "filename": "gym_super_mario_bros-0.7.0.tar.gz", "has_sig": false, "md5_digest": "05075374dc4b1b64ecf738f0de22c0e2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 79015, "upload_time": "2018-05-02T02:20:41", "url": "https://files.pythonhosted.org/packages/4e/80/2be6221ed195db73cb81451e071facbea105bbd5e5891eeabac1dd48df12/gym_super_mario_bros-0.7.0.tar.gz" } ], "0.8.0": [ { "comment_text": "", "digests": { "md5": "3d45b68651549be1d6aae57589633dd5", "sha256": "492693c3cc175319257ba28e73c7171050dc5174176e8bfd47eccc6a993ebdd7" }, "downloads": -1, "filename": "gym_super_mario_bros-0.8.0.tar.gz", "has_sig": false, "md5_digest": "3d45b68651549be1d6aae57589633dd5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 79253, "upload_time": "2018-05-02T04:30:45", "url": "https://files.pythonhosted.org/packages/ea/d7/3c969319ea15c09a988cb9b3df14faeb9e61accad15a83e258817704008c/gym_super_mario_bros-0.8.0.tar.gz" } ], "0.8.1": [ { "comment_text": "", "digests": { "md5": "95348ff3925c5b39dbc3a175411df5f2", "sha256": "7d71df87e7e07ddf761840259c32da93f3e4ab094152e7f2c540fd8680686301" }, "downloads": -1, "filename": "gym_super_mario_bros-0.8.1.tar.gz", "has_sig": false, "md5_digest": "95348ff3925c5b39dbc3a175411df5f2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 79255, "upload_time": "2018-05-02T04:43:03", "url": "https://files.pythonhosted.org/packages/21/82/49c4f70b6004047d571c322396fc48aa23eea2c245682e4f0280bb9ace66/gym_super_mario_bros-0.8.1.tar.gz" } ], "0.9.0": [ { "comment_text": "", "digests": { "md5": "7eb95e4e18baa53947531a1eae0e8c81", "sha256": "da03ed62f91e60c79527476ebf4e333703d9706b3bdd1cf1b95567e0a183a249" }, "downloads": -1, "filename": "gym_super_mario_bros-0.9.0.tar.gz", "has_sig": false, "md5_digest": "7eb95e4e18baa53947531a1eae0e8c81", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 79374, "upload_time": "2018-05-02T16:35:27", "url": "https://files.pythonhosted.org/packages/88/c8/ef8453257934053fc8200ea25a61c9cee3675774b6dd5b8ae3fc3b642dcf/gym_super_mario_bros-0.9.0.tar.gz" } ], "0.9.1": [ { "comment_text": "", "digests": { "md5": "959ec5e894b0c7ada9dbf62b42f41c3c", "sha256": "1f6edb8811f6d553aa8a8e7b9e28144453a32b5ba942293a708d13e42ddbc270" }, "downloads": -1, "filename": "gym_super_mario_bros-0.9.1.tar.gz", "has_sig": false, "md5_digest": "959ec5e894b0c7ada9dbf62b42f41c3c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 79099, "upload_time": "2018-05-03T05:16:51", "url": "https://files.pythonhosted.org/packages/a2/a0/0b667e894a9a74d26139f2401d97e9fe864d6013ebb34f90ec591aad8ee4/gym_super_mario_bros-0.9.1.tar.gz" } ], "0.9.2": [ { "comment_text": "", "digests": { "md5": "6499eda5dbb00408eef85e65bc235b97", "sha256": "27f30bc410500c6e1e3eb7502fed4ce2c96249f9578bd45b619c571a2b4020c1" }, "downloads": -1, "filename": "gym_super_mario_bros-0.9.2.tar.gz", "has_sig": false, "md5_digest": "6499eda5dbb00408eef85e65bc235b97", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 79095, "upload_time": "2018-05-03T05:35:38", "url": "https://files.pythonhosted.org/packages/3e/8f/d4a7580232bdc168ac1f231835b8d956b5b0289238e88347955b50910616/gym_super_mario_bros-0.9.2.tar.gz" } ], "0.9.3": [ { "comment_text": "", "digests": { "md5": "d86849074f23dcfedb28eb19bad553f3", "sha256": "9e64528603d5c61d95d09587cddaaaa1bffa903e2ce2e92a551367114c22fcf8" }, "downloads": -1, "filename": "gym_super_mario_bros-0.9.3.tar.gz", "has_sig": false, "md5_digest": "d86849074f23dcfedb28eb19bad553f3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 77336, "upload_time": "2018-05-03T23:30:22", "url": "https://files.pythonhosted.org/packages/90/7b/ca26e60165f1a7932f3011029462ebf8d7a2cbd7b074c9e8f374f26d67f6/gym_super_mario_bros-0.9.3.tar.gz" } ], "0.9.4": [ { "comment_text": "", "digests": { "md5": "d23da6e743e8daced48098ad7ea4f280", "sha256": "58c717854a3b2b1a9e0a379997d2dffb3ce887e2b080a328d07689a928508fa1" }, "downloads": -1, "filename": "gym_super_mario_bros-0.9.4-py3-none-any.whl", "has_sig": false, "md5_digest": "d23da6e743e8daced48098ad7ea4f280", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 207711, "upload_time": "2018-06-09T03:53:14", "url": "https://files.pythonhosted.org/packages/0d/17/1117878d3f6f4c752ef89269d9a807fc5373592f5516d8dcffd16da83a74/gym_super_mario_bros-0.9.4-py3-none-any.whl" } ], "0.9.5": [ { "comment_text": "", "digests": { "md5": "371ebf48ee436ac8a35d9f6aafc7cf0e", "sha256": "082d4ad50b3adb9ddb9f82e4f794e474438e6bfcd9753dfc6fa7e700a9072263" }, "downloads": -1, "filename": "gym_super_mario_bros-0.9.5-py3-none-any.whl", "has_sig": false, "md5_digest": "371ebf48ee436ac8a35d9f6aafc7cf0e", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 206628, "upload_time": "2018-06-14T18:13:33", "url": "https://files.pythonhosted.org/packages/68/8c/6ef66bdc8da126f599a707e9a4241aa82fd7df91964d07ebe2610b90b473/gym_super_mario_bros-0.9.5-py3-none-any.whl" } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "3650f1627920f1d991bdf0df613de066", "sha256": "a36bd6fb8d38f391f806ca8684fba19b8a0f5345001674b40a7152a1daa68fd9" }, "downloads": -1, "filename": "gym_super_mario_bros-1.0.0-py3-none-any.whl", "has_sig": false, "md5_digest": "3650f1627920f1d991bdf0df613de066", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 206776, "upload_time": "2018-06-22T19:01:53", "url": "https://files.pythonhosted.org/packages/e8/8a/994d287873113adb6f3558f036db148904f3501eeb9c27c545f7df85edd2/gym_super_mario_bros-1.0.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d4f9843154610a4c03c7b179d40a0084", "sha256": "7458cac42addf5ca591b08379745e4c043d9bc37ef223be6485809cba719973f" }, "downloads": -1, "filename": "gym_super_mario_bros-1.0.0.tar.gz", "has_sig": false, "md5_digest": "d4f9843154610a4c03c7b179d40a0084", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 203895, "upload_time": "2018-06-22T19:01:55", "url": "https://files.pythonhosted.org/packages/96/57/bcf3a18a69b703a32f3335d77f1caa9042be1e2bffc19fb56f9168d4500b/gym_super_mario_bros-1.0.0.tar.gz" } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "30180b52b8a3e44d2651ba78954f2df8", "sha256": "b7fa3cebdb4c85f03f0f6221d93a2eed7a64fce5ca8ce241818752e2d37f4dac" }, "downloads": -1, "filename": "gym_super_mario_bros-1.0.1-py3-none-any.whl", "has_sig": false, "md5_digest": "30180b52b8a3e44d2651ba78954f2df8", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 206780, "upload_time": "2018-06-22T19:57:44", "url": "https://files.pythonhosted.org/packages/df/0c/4c4c321078f4811b6e1a832fe5b58482a6157239251ff58ddaa72f5b0f68/gym_super_mario_bros-1.0.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e98eac85f94ccca202e64ae1260827d9", "sha256": "4b135f44efe9bf20aafc651370d4a8950d351dc69c35d7187ce24eb7c9c79afc" }, "downloads": -1, "filename": "gym_super_mario_bros-1.0.1.tar.gz", "has_sig": false, "md5_digest": "e98eac85f94ccca202e64ae1260827d9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 203906, "upload_time": "2018-06-22T19:57:46", "url": "https://files.pythonhosted.org/packages/97/37/4f3d8911814ccef75ebf8619298e51bfa9fc2e4ac00a9cf2d7732cb41a40/gym_super_mario_bros-1.0.1.tar.gz" } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "17e3a4cbe4014a54b07e17ccaa0c890a", "sha256": "7168f714ea4b2afac1b8f3eab3fd0fb419d4082275ebec93d152f81aeb7eea4f" }, "downloads": -1, "filename": "gym_super_mario_bros-1.1.0-py3-none-any.whl", "has_sig": false, "md5_digest": "17e3a4cbe4014a54b07e17ccaa0c890a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 207013, "upload_time": "2018-06-22T20:16:26", "url": "https://files.pythonhosted.org/packages/f7/e3/7950d68e68c673123b3f22277d481055cacd90d3d4b28231589e63f197c9/gym_super_mario_bros-1.1.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "25cbcc00cab6c3d09801f065a0130107", "sha256": "9ce8c80e4c4cc331654d07271ad0c5520ccedc16777bbe2b0e0bbd3044ff493f" }, "downloads": -1, "filename": "gym_super_mario_bros-1.1.0.tar.gz", "has_sig": false, "md5_digest": "25cbcc00cab6c3d09801f065a0130107", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 204182, "upload_time": "2018-06-22T20:16:28", "url": "https://files.pythonhosted.org/packages/a9/f9/ff8254f8115a46c1cad551ec98e56da1d0a95396f25e130bb98a62ff87e0/gym_super_mario_bros-1.1.0.tar.gz" } ], "1.1.1": [ { "comment_text": "", "digests": { "md5": "540548b7ea49c41a7554c6a3b79c350e", "sha256": "5fb63fbe2ccb1ead68fbe639fbc4341a99bccbe51f0e492693a3827c80acbc4f" }, "downloads": -1, "filename": "gym_super_mario_bros-1.1.1-py3-none-any.whl", "has_sig": false, "md5_digest": "540548b7ea49c41a7554c6a3b79c350e", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 207074, "upload_time": "2018-06-22T20:32:03", "url": "https://files.pythonhosted.org/packages/4d/bd/f568f8a88b0209703694763e1ac58a9b22d7fe0e516557f0e68c8f7a9791/gym_super_mario_bros-1.1.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0223a072c33cd1b252d0b7e157b6c22f", "sha256": "bb248956ee31630cc4c2e318a0fd2057c7eb071d0a98bd6f86e8b2610010c962" }, "downloads": -1, "filename": "gym_super_mario_bros-1.1.1.tar.gz", "has_sig": false, "md5_digest": "0223a072c33cd1b252d0b7e157b6c22f", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 204200, "upload_time": "2018-06-22T20:32:05", "url": "https://files.pythonhosted.org/packages/31/e0/c27d6f06fb93e449863836f6ea738160306d071ea59aa99e1a333fbc5b18/gym_super_mario_bros-1.1.1.tar.gz" } ], "1.1.2": [ { "comment_text": "", "digests": { "md5": "159ad4aa9f4f15700e721ce80c6954fc", "sha256": "d5162180cc9ef5f51cd63c184e95bf03b737aae79ed7504fbf03c8b694308bf5" }, "downloads": -1, "filename": "gym_super_mario_bros-1.1.2-py3-none-any.whl", "has_sig": false, "md5_digest": "159ad4aa9f4f15700e721ce80c6954fc", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 207169, "upload_time": "2018-07-01T02:08:58", "url": "https://files.pythonhosted.org/packages/e5/86/7442d68e65b30c8e99ba54886417aca960384c5bcae26bd7179d1ee747b1/gym_super_mario_bros-1.1.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "252710851c682c5e804c044d840c1ae2", "sha256": "e20e6dd8caa2d18e387027f590d97a19ecd770ad72fa07c06734e32a70aad4c3" }, "downloads": -1, "filename": "gym_super_mario_bros-1.1.2.tar.gz", "has_sig": false, "md5_digest": "252710851c682c5e804c044d840c1ae2", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 204268, "upload_time": "2018-07-01T02:09:00", "url": "https://files.pythonhosted.org/packages/87/82/ed09d93b0ddf96d29b7e5a623fc6c0cd8934fefc940b5a57ffeae28715da/gym_super_mario_bros-1.1.2.tar.gz" } ], "1.1.3": [ { "comment_text": "", "digests": { "md5": "086730240c1c7a831b4c3a64831c24c6", "sha256": "9076b55eae7babe3e082de716f037bf3810eea7d1f052e8c9222b1eb2ec2d2f9" }, "downloads": -1, "filename": "gym_super_mario_bros-1.1.3-py3-none-any.whl", "has_sig": false, "md5_digest": "086730240c1c7a831b4c3a64831c24c6", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 207135, "upload_time": "2018-07-01T03:33:07", "url": "https://files.pythonhosted.org/packages/f9/f5/811a02f4cd14c6e410ba731d34d6480e308403c81487e7af10d2ef1cd060/gym_super_mario_bros-1.1.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c63ae5cb8a46f2b705cc1d2524d90c6b", "sha256": "be8f9c7c8601f99fd5d3df2664c40893ff4c002f4f2adb0ea390c54451f37279" }, "downloads": -1, "filename": "gym_super_mario_bros-1.1.3.tar.gz", "has_sig": false, "md5_digest": "c63ae5cb8a46f2b705cc1d2524d90c6b", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 204247, "upload_time": "2018-07-01T03:33:09", "url": "https://files.pythonhosted.org/packages/8b/7f/0b71869db53771b2577101e202d0b67949f47ac816665eecbbd274ce55b0/gym_super_mario_bros-1.1.3.tar.gz" } ], "2.0.0": [ { "comment_text": "", "digests": { "md5": "f8481074a7b1ef01c913bd61999b1652", "sha256": "925fcccde2204b178dc2378757eab49fc9f20d916f7b34bd11b69aba1cf6d295" }, "downloads": -1, "filename": "gym_super_mario_bros-2.0.0-py3-none-any.whl", "has_sig": false, "md5_digest": "f8481074a7b1ef01c913bd61999b1652", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 207147, "upload_time": "2018-07-01T18:25:42", "url": "https://files.pythonhosted.org/packages/6a/28/24f5e6682760943ce3c34ae2d2554a7a3eb1eacc1ba407e23b1e9e884b45/gym_super_mario_bros-2.0.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "462d6a8f4b3911132aec81dbd95f4f96", "sha256": "9a56d63c019c71e9f40526af48883d518ced51c7dcb0fc863b41e3c7e87b1bd5" }, "downloads": -1, "filename": "gym_super_mario_bros-2.0.0.tar.gz", "has_sig": false, "md5_digest": "462d6a8f4b3911132aec81dbd95f4f96", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 202193, "upload_time": "2018-07-01T18:25:43", "url": "https://files.pythonhosted.org/packages/f7/9e/c80bba326b69b43e13cae42a4812a56ce4b77584b3ebd8caf2baa0a9f6ef/gym_super_mario_bros-2.0.0.tar.gz" } ], "2.1.0": [ { "comment_text": "", "digests": { "md5": "9edc1282a2b49f7dc84e49c579c49b44", "sha256": "3522624d643589448a6702890e39c8beb20d357776f3cc52713426737cdc87d9" }, "downloads": -1, "filename": "gym_super_mario_bros-2.1.0-py3-none-any.whl", "has_sig": false, "md5_digest": "9edc1282a2b49f7dc84e49c579c49b44", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 208273, "upload_time": "2018-07-01T19:10:01", "url": "https://files.pythonhosted.org/packages/51/58/2329c3b65d5d753203bb2b07127847b3fc6c2ba094595eba5a49dacd2b7b/gym_super_mario_bros-2.1.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9651dbf8233e57954aa7d701f515a8e0", "sha256": "3bb2b420b30cfde331f726a4159fee56cb2b8d17df95a4bcb12938bec8642bcf" }, "downloads": -1, "filename": "gym_super_mario_bros-2.1.0.tar.gz", "has_sig": false, "md5_digest": "9651dbf8233e57954aa7d701f515a8e0", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 202989, "upload_time": "2018-07-01T19:10:03", "url": "https://files.pythonhosted.org/packages/3d/32/17088c458ff96239c984b51f95773aa46fd6af15fc97bb7f15ce6613c16d/gym_super_mario_bros-2.1.0.tar.gz" } ], "2.1.1": [ { "comment_text": "", "digests": { "md5": "1f2a48bdc238763f3c4a3f287c2bd528", "sha256": "c7a3cb7c9d9bc5cd19ddfff5b2b6e5b58c3c7b00bfdc46adb8a953fb6adfb28b" }, "downloads": -1, "filename": "gym_super_mario_bros-2.1.1-py3-none-any.whl", "has_sig": false, "md5_digest": "1f2a48bdc238763f3c4a3f287c2bd528", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 208565, "upload_time": "2018-07-01T19:24:51", "url": "https://files.pythonhosted.org/packages/62/7b/62e58cd039bef61b427c6d9ef78b780a333d618f9f6eb33105fbabbc6121/gym_super_mario_bros-2.1.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "fa7edf9eba0c3664ee9d51660bf868bc", "sha256": "84624d6dd54d503b38ac3c9f95dcc25b7b09311b46711f1339dfbd7e4260551d" }, "downloads": -1, "filename": "gym_super_mario_bros-2.1.1.tar.gz", "has_sig": false, "md5_digest": "fa7edf9eba0c3664ee9d51660bf868bc", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 203049, "upload_time": "2018-07-01T19:24:52", "url": "https://files.pythonhosted.org/packages/6d/00/b2c7cdc260454709564eb71f5f239f6f6c06bec25d92927fbf4c01636a6a/gym_super_mario_bros-2.1.1.tar.gz" } ], "2.1.2": [ { "comment_text": "", "digests": { "md5": "ce990da0196cf047dddf5b0e14b86dc6", "sha256": "b0587f20a8a476e9f931d556c5e9ca43ead7bc1655febd9eb0026b49be2ce783" }, "downloads": -1, "filename": "gym_super_mario_bros-2.1.2-py3-none-any.whl", "has_sig": false, "md5_digest": "ce990da0196cf047dddf5b0e14b86dc6", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 208579, "upload_time": "2018-07-01T19:33:33", "url": "https://files.pythonhosted.org/packages/8a/a2/48796310ac7c2924739c31557cb841abea1b611eefe920324d111b15dfc0/gym_super_mario_bros-2.1.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "aab06cbb85c790649aa7f66c8ecfaf69", "sha256": "326d17b7e7121912dc02ba9a207c06d1801d1b44b81abffc340c09a66cc0e6c7" }, "downloads": -1, "filename": "gym_super_mario_bros-2.1.2.tar.gz", "has_sig": false, "md5_digest": "aab06cbb85c790649aa7f66c8ecfaf69", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 203125, "upload_time": "2018-07-01T19:33:36", "url": "https://files.pythonhosted.org/packages/ed/c6/afc0f32dbee12b427b026dc6a1662912e9a1c66589316ccd54c0e9cf221c/gym_super_mario_bros-2.1.2.tar.gz" } ], "2.1.3": [ { "comment_text": "", "digests": { "md5": "04006e93c9b8627783154b8c828184f8", "sha256": "755a30224326de356fe8948e9ee2fc58f53394b60b991c854455ca55437bdda4" }, "downloads": -1, "filename": "gym_super_mario_bros-2.1.3-py3-none-any.whl", "has_sig": false, "md5_digest": "04006e93c9b8627783154b8c828184f8", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 209800, "upload_time": "2018-07-01T19:37:23", "url": "https://files.pythonhosted.org/packages/d2/85/e0aba83d53a2d47e8f6e92d32a530ae4a4bb4c58295c370a0046b2bfa81c/gym_super_mario_bros-2.1.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4c6e1d55db6ee12da0beebf03cb36237", "sha256": "b145e5a46d79bf7b5d3a0dc03292db44ed97815de458f7fbe8997fda15a3c3de" }, "downloads": -1, "filename": "gym_super_mario_bros-2.1.3.tar.gz", "has_sig": false, "md5_digest": "4c6e1d55db6ee12da0beebf03cb36237", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 203760, "upload_time": "2018-07-01T19:37:24", "url": "https://files.pythonhosted.org/packages/8c/05/b5b2cdfff385e87f1db5fd1b426146d100c030eb701a7bc6121ade14578e/gym_super_mario_bros-2.1.3.tar.gz" } ], "2.2.0": [ { "comment_text": "", "digests": { "md5": "af3fe3c8fbc8eb167dc6637ce3a985c4", "sha256": "d806855163c29173001cf168a4fe8c9d3461e9cf596c46626b7416ed20c82abd" }, "downloads": -1, "filename": "gym_super_mario_bros-2.2.0-py3-none-any.whl", "has_sig": false, "md5_digest": "af3fe3c8fbc8eb167dc6637ce3a985c4", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 209852, "upload_time": "2018-07-01T19:45:38", "url": "https://files.pythonhosted.org/packages/68/2f/cdbf63ff77ba86f27367e4d036393f0d69e8941d05fb19d64c99de9a4853/gym_super_mario_bros-2.2.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ccadf802cb35ccba4636722504fb3bb9", "sha256": "fc3c09e54cf2577d324d60fb2fdd6ec3b42cfb5a1680789f1338d359533696cf" }, "downloads": -1, "filename": "gym_super_mario_bros-2.2.0.tar.gz", "has_sig": false, "md5_digest": "ccadf802cb35ccba4636722504fb3bb9", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 203792, "upload_time": "2018-07-01T19:45:40", "url": "https://files.pythonhosted.org/packages/7b/80/61b0d264bacb9b9d89aaee68a34a3f797ba442b5e604c8eb59df2d82f6bb/gym_super_mario_bros-2.2.0.tar.gz" } ], "2.2.1": [ { "comment_text": "", "digests": { "md5": "cbe8d4b8ae5c741a1447077aa8dd6aaf", "sha256": "ff44bf98198b2f683d2aa8f9ae8f750b93c4870fa2022f8f3e17d1b6538c8d46" }, "downloads": -1, "filename": "gym_super_mario_bros-2.2.1-py3-none-any.whl", "has_sig": false, "md5_digest": "cbe8d4b8ae5c741a1447077aa8dd6aaf", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 209993, "upload_time": "2018-07-01T23:56:00", "url": "https://files.pythonhosted.org/packages/f0/d4/2654aed7454e59ffc0cdf34407d064bdd7134ffd43023385cc90bac6002d/gym_super_mario_bros-2.2.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "488ce9d030ddac28104b9f5118c886e0", "sha256": "d6cad0584e4edb30fe53322587b537bda0c45e2353a4b3ec83df5e22e5a46583" }, "downloads": -1, "filename": "gym_super_mario_bros-2.2.1.tar.gz", "has_sig": false, "md5_digest": "488ce9d030ddac28104b9f5118c886e0", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 206054, "upload_time": "2018-07-01T23:56:02", "url": "https://files.pythonhosted.org/packages/19/40/0b6ae3a8b9c357a691c17f650ff3b91cce54b5b01994262065bd670bda70/gym_super_mario_bros-2.2.1.tar.gz" } ], "2.3.0": [ { "comment_text": "", "digests": { "md5": "daff3238e93189b9364f03a0644c26f3", "sha256": "7f78b654a8425436f22e5b33f89717fc140545a3c77a64f45e1cb818eddeabcc" }, "downloads": -1, "filename": "gym_super_mario_bros-2.3.0-py3-none-any.whl", "has_sig": false, "md5_digest": "daff3238e93189b9364f03a0644c26f3", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 210837, "upload_time": "2018-07-02T01:29:11", "url": "https://files.pythonhosted.org/packages/d8/4d/728d86fb1601f7465c655dcd7c1c8c7c4d01843489698f9591269c7208bb/gym_super_mario_bros-2.3.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e73fde31cde594ffcecd5b7ed2a033cd", "sha256": "cb78ee1623b636b4953a0937b68021bcdbae5953ca885302e8baf358a4f5743b" }, "downloads": -1, "filename": "gym_super_mario_bros-2.3.0.tar.gz", "has_sig": false, "md5_digest": "e73fde31cde594ffcecd5b7ed2a033cd", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 206414, "upload_time": "2018-07-02T01:29:13", "url": "https://files.pythonhosted.org/packages/37/b4/7f6d221e707818fbe8bf1ff9874e1a6599362b554fcf501c4fd73a1af486/gym_super_mario_bros-2.3.0.tar.gz" } ], "2.3.1": [ { "comment_text": "", "digests": { "md5": "a686d370f54f2d57640e4cebc56e866c", "sha256": "81e8c833a8e4f426e868cf83fa55773241703e7458a6801257d6a7b476e763c0" }, "downloads": -1, "filename": "gym_super_mario_bros-2.3.1-py3-none-any.whl", "has_sig": false, "md5_digest": "a686d370f54f2d57640e4cebc56e866c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 212721, "upload_time": "2018-07-02T02:06:26", "url": "https://files.pythonhosted.org/packages/97/8b/21b43213a9c0d3765b446d917ccd918df759c5559ab3f0251d49a06ccbb0/gym_super_mario_bros-2.3.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e6318dee2127882bda59b470f6e21fac", "sha256": "dd3aa8fb8b9d255e05038041977883b2fc521e16713a624d002c5b34ddc705b1" }, "downloads": -1, "filename": "gym_super_mario_bros-2.3.1.tar.gz", "has_sig": false, "md5_digest": "e6318dee2127882bda59b470f6e21fac", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 206858, "upload_time": "2018-07-02T02:06:28", "url": "https://files.pythonhosted.org/packages/b8/aa/8010783c29efe7cf3b15af8e8644f6551e5a9fc28d342d06ba92be4e80dd/gym_super_mario_bros-2.3.1.tar.gz" } ], "3.0.0": [ { "comment_text": "", "digests": { "md5": "24af485bf6937c550e1935928f16cdf4", "sha256": "96ac8d203a225f9475566a39acbc69305622a99e8d7c8aebae8da77e6699bb8a" }, "downloads": -1, "filename": "gym_super_mario_bros-3.0.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "24af485bf6937c550e1935928f16cdf4", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 197372, "upload_time": "2018-07-22T09:29:02", "url": "https://files.pythonhosted.org/packages/8e/7b/ffee20fa19c3d449d76a2c4cb4cf4980a09a5441836e32e3edf4744ffb97/gym_super_mario_bros-3.0.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0cd3d783a8e916d2d25a6a28d67fa184", "sha256": "94133bd4bd63d419941f21e3dd3de512ef77218286d871f1714fbac9cea45cd3" }, "downloads": -1, "filename": "gym_super_mario_bros-3.0.0.tar.gz", "has_sig": false, "md5_digest": "0cd3d783a8e916d2d25a6a28d67fa184", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 197168, "upload_time": "2018-07-22T09:29:04", "url": "https://files.pythonhosted.org/packages/f5/fe/7df2200ec61b25d8aec0c79f467536df496c827cfa049471ca16afc4ac88/gym_super_mario_bros-3.0.0.tar.gz" } ], "3.0.1": [ { "comment_text": "", "digests": { "md5": "c480141fe7e550ba5830a532f79b94d6", "sha256": "4d64e9fdadb3b615ff43d10ff3a14a312ee8cea57835c79d92a8cee7f716b443" }, "downloads": -1, "filename": "gym_super_mario_bros-3.0.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c480141fe7e550ba5830a532f79b94d6", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 197443, "upload_time": "2018-08-12T02:20:15", "url": "https://files.pythonhosted.org/packages/03/27/363ca0e0824586a3be3d77f47ea7d354e59bf79b278a3b9d4aaa3c06096f/gym_super_mario_bros-3.0.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2d8eff0d35feb516da6d3e57d5a3c5d3", "sha256": "e7f323403dcdd71becc8b4997a3d939dcfcf1eff5287e79459f36000eb73bfa9" }, "downloads": -1, "filename": "gym_super_mario_bros-3.0.1.tar.gz", "has_sig": false, "md5_digest": "2d8eff0d35feb516da6d3e57d5a3c5d3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 197245, "upload_time": "2018-08-12T02:20:17", "url": "https://files.pythonhosted.org/packages/3f/ae/36a4006528ca78e256c4c4dc98e6b3059f70afc19f0524f2365644532b45/gym_super_mario_bros-3.0.1.tar.gz" } ], "3.0.2": [ { "comment_text": "", "digests": { "md5": "ab424519ee902289cdec8106d83c8765", "sha256": "4f96ab657a4bbe93c0e06bfe847b483dc74b8c9b584aa1138c2e02dec9f722dc" }, "downloads": -1, "filename": "gym_super_mario_bros-3.0.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ab424519ee902289cdec8106d83c8765", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 197442, "upload_time": "2018-08-12T03:26:28", "url": "https://files.pythonhosted.org/packages/39/5c/34303ce5f42c4fd8d2ae4b0082f89d7617bc052f61de7770e8984c903a53/gym_super_mario_bros-3.0.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f2f47418d1702db8a323bbff70023509", "sha256": "a6cd1bccd74883b922762df593f7dff8c9e570875b546a73800784679c946ceb" }, "downloads": -1, "filename": "gym_super_mario_bros-3.0.2.tar.gz", "has_sig": false, "md5_digest": "f2f47418d1702db8a323bbff70023509", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 194938, "upload_time": "2018-08-12T03:26:30", "url": "https://files.pythonhosted.org/packages/c0/8c/742d0205c9515c6467f84773962f2c226bb09dabc1bede726f90e5f6a08f/gym_super_mario_bros-3.0.2.tar.gz" } ], "3.0.3": [ { "comment_text": "", "digests": { "md5": "d2871df8364ac9b41fbb138746a545d7", "sha256": "f5df452e5e2cca9c4748506f232bc3ab46bdd19a1bdbbe88e337a96dccfd9a83" }, "downloads": -1, "filename": "gym_super_mario_bros-3.0.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "d2871df8364ac9b41fbb138746a545d7", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 197442, "upload_time": "2018-08-12T03:42:27", "url": "https://files.pythonhosted.org/packages/9f/a2/216c8463bc32504300b15b0395877e4ca489b04991faf3717106260bfd65/gym_super_mario_bros-3.0.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1e9fcddd29e2dab01bb3d9c58c78a24c", "sha256": "2e5397a0597b6ac3bddea7724a8a87c7fbbc6efe5ea2f0e313b41fd501fff084" }, "downloads": -1, "filename": "gym_super_mario_bros-3.0.3.tar.gz", "has_sig": false, "md5_digest": "1e9fcddd29e2dab01bb3d9c58c78a24c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 197244, "upload_time": "2018-08-12T03:42:40", "url": "https://files.pythonhosted.org/packages/df/13/ca7c27b230439de1682ffa641b7f521b88fb2c38bcd84b0ab7c49ca2e465/gym_super_mario_bros-3.0.3.tar.gz" } ], "3.0.4": [ { "comment_text": "", "digests": { "md5": "bad86f1bd4fc3948648c303bd031c9b2", "sha256": "d289f6374e426c38a5662353dd559438b1496846c4440948365501c42e7d572a" }, "downloads": -1, "filename": "gym_super_mario_bros-3.0.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "bad86f1bd4fc3948648c303bd031c9b2", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 197442, "upload_time": "2018-08-13T00:47:35", "url": "https://files.pythonhosted.org/packages/a0/00/1dc5a8c611fa15e8d9d1a53771ece7b9c92c6db97059ab455d6182ddd822/gym_super_mario_bros-3.0.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2c165a97503c86f995e865d684976de1", "sha256": "9b20448bccb3140fb12ffd9ca03e2b7fcca96cefb311928f1ca6f77aa3365358" }, "downloads": -1, "filename": "gym_super_mario_bros-3.0.4.tar.gz", "has_sig": false, "md5_digest": "2c165a97503c86f995e865d684976de1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 194946, "upload_time": "2018-08-13T00:47:38", "url": "https://files.pythonhosted.org/packages/00/b4/6ba290f49fed03c1afd3ae8528bb1f9e39a179932c293df89d190a1aeaad/gym_super_mario_bros-3.0.4.tar.gz" } ], "3.0.5": [ { "comment_text": "", "digests": { "md5": "be5f0391294c3056efc5ffca00ffca26", "sha256": "0e985bf434f43155a127b47e646bc834540c30e6d9cb00aacdeefd822d7dcfe8" }, "downloads": -1, "filename": "gym_super_mario_bros-3.0.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "be5f0391294c3056efc5ffca00ffca26", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 193932, "upload_time": "2018-08-18T05:23:26", "url": "https://files.pythonhosted.org/packages/ce/da/7878c182bb4b2cc0ae0e8a5ffc27a19d95b2b96f7e541cbc96082c64b569/gym_super_mario_bros-3.0.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1df50a606b3b2015453411bed1916475", "sha256": "6ab050f2667712f35533ccfc3cdae341ae91674e42f2460a89e3951ef5a827ea" }, "downloads": -1, "filename": "gym_super_mario_bros-3.0.5.tar.gz", "has_sig": false, "md5_digest": "1df50a606b3b2015453411bed1916475", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 195030, "upload_time": "2018-08-18T05:23:29", "url": "https://files.pythonhosted.org/packages/07/64/21f72c6f0ce9376451a69fd210a2986e66d81ef641555ba3fe7150e6297e/gym_super_mario_bros-3.0.5.tar.gz" } ], "3.0.6": [ { "comment_text": "", "digests": { "md5": "f142b54e31c1592c9cd8b03ddbfc8968", "sha256": "f6287b23e6873ea55dfd36c6218dae80f6ef6183445304f09257572c5adbc2b4" }, "downloads": -1, "filename": "gym_super_mario_bros-3.0.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f142b54e31c1592c9cd8b03ddbfc8968", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 194055, "upload_time": "2018-08-21T04:12:49", "url": "https://files.pythonhosted.org/packages/23/2d/f8e25ded69c77e7ac2882e2417e11e2da389f3e6b005ba33eb7119bd8b36/gym_super_mario_bros-3.0.6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ba03c6e38a11286751ebced3ceeac6a4", "sha256": "2cf62d3852c12f8c07142d62201d5a4725c1bc9a1eca54ad21b08d2b5e408460" }, "downloads": -1, "filename": "gym_super_mario_bros-3.0.6.tar.gz", "has_sig": false, "md5_digest": "ba03c6e38a11286751ebced3ceeac6a4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 195171, "upload_time": "2018-08-21T04:12:52", "url": "https://files.pythonhosted.org/packages/cf/ce/019bc7fb3c49c4d339097933e85d4f11219baa0f36d9c694597ac42b003c/gym_super_mario_bros-3.0.6.tar.gz" } ], "3.0.7": [ { "comment_text": "", "digests": { "md5": "2c9cc0eaab1fcac4d38483cec5e4aba9", "sha256": "05c1e6c62924f512a9d629244a8097804898ca6fd637848723b5086c8ac3c7d4" }, "downloads": -1, "filename": "gym_super_mario_bros-3.0.7-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2c9cc0eaab1fcac4d38483cec5e4aba9", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 194062, "upload_time": "2018-08-29T16:26:25", "url": "https://files.pythonhosted.org/packages/ff/9b/03a28fd1c868e65dcbb9da8b647fa71e9a0c3af57d5f2f79319b698680dc/gym_super_mario_bros-3.0.7-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a4bc8b45c9499a4a08616e72ddded2e4", "sha256": "3375c58b1a4dc0cde91e96301416b5ad20624254230847008a21e14b30edad29" }, "downloads": -1, "filename": "gym_super_mario_bros-3.0.7.tar.gz", "has_sig": false, "md5_digest": "a4bc8b45c9499a4a08616e72ddded2e4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 195190, "upload_time": "2018-08-29T16:26:27", "url": "https://files.pythonhosted.org/packages/25/3e/0a4861ed160ab0aeff48f7ce1b088375e5e980041edf0dd6fb1c80d34366/gym_super_mario_bros-3.0.7.tar.gz" } ], "3.0.8": [ { "comment_text": "", "digests": { "md5": "da7a114bc0bf333ecb0b29e954db9e96", "sha256": "64f1358ed8fa250b5796a0c87cea6c7319df9e90fd7ad2acbe7ff9b99715a048" }, "downloads": -1, "filename": "gym_super_mario_bros-3.0.8-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "da7a114bc0bf333ecb0b29e954db9e96", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 194064, "upload_time": "2018-08-29T16:33:16", "url": "https://files.pythonhosted.org/packages/4d/34/126acffd166752db1e797d50f4869d6ea4963e6add256d22fbd87ac2fa7f/gym_super_mario_bros-3.0.8-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d952a2be19617886db9706e8f22d3638", "sha256": "296ae0b207167beb3e1a10593e1ec7fed5d284dfbe5ecc39f0ddf5dd4fc8590b" }, "downloads": -1, "filename": "gym_super_mario_bros-3.0.8.tar.gz", "has_sig": false, "md5_digest": "d952a2be19617886db9706e8f22d3638", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 195193, "upload_time": "2018-08-29T16:33:20", "url": "https://files.pythonhosted.org/packages/84/54/966cc76b697e9477f73bca8c246f1780b49b2e95068c4d09631792328ec4/gym_super_mario_bros-3.0.8.tar.gz" } ], "3.1.0": [ { "comment_text": "", "digests": { "md5": "ec1ce1f08e4c0790a8f67ec9d714ca2e", "sha256": "31750d9cd90f49b5f34adf26335ac2eb4b63d912cb07c1df6dbb9c142917fe99" }, "downloads": -1, "filename": "gym_super_mario_bros-3.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ec1ce1f08e4c0790a8f67ec9d714ca2e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 194620, "upload_time": "2018-09-04T19:24:22", "url": "https://files.pythonhosted.org/packages/5f/26/54dfac9fc1f1296f78d59c75dc90a161ca0893f686b3e2c66e14f997fba3/gym_super_mario_bros-3.1.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "879529c1c6e0f30ec0d28259f5217968", "sha256": "d8581ce7ba14f67242d7edc01623d94efe4461bcb61367da294fafb46ce8a071" }, "downloads": -1, "filename": "gym_super_mario_bros-3.1.0.tar.gz", "has_sig": false, "md5_digest": "879529c1c6e0f30ec0d28259f5217968", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 196311, "upload_time": "2018-09-04T19:24:25", "url": "https://files.pythonhosted.org/packages/95/72/90d1f1c586a8822568a928ff2e2a4eb9079d484f524136c0b38c1ed46b18/gym_super_mario_bros-3.1.0.tar.gz" } ], "3.1.1": [ { "comment_text": "", "digests": { "md5": "6b48b0bef8ae4f425f9e928e434522c7", "sha256": "8755e1209b37820af13a990fbaebbb80e767ae35c7bba05a63935a26a4f82b24" }, "downloads": -1, "filename": "gym_super_mario_bros-3.1.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "6b48b0bef8ae4f425f9e928e434522c7", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 194623, "upload_time": "2018-09-04T19:36:40", "url": "https://files.pythonhosted.org/packages/63/aa/809aada8a55361a63c4ac9f602f3a4a4ba80fd52ad8cfe3c2fa110cdc9f9/gym_super_mario_bros-3.1.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "91db0acde66d0fab4cb633d3708d1b72", "sha256": "66f006b45f4f71b010a5f77310f5a0a87229b2bf87a03fbe61fd459efa9217e9" }, "downloads": -1, "filename": "gym_super_mario_bros-3.1.1.tar.gz", "has_sig": false, "md5_digest": "91db0acde66d0fab4cb633d3708d1b72", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 196325, "upload_time": "2018-09-04T19:36:43", "url": "https://files.pythonhosted.org/packages/ea/0c/784e5e2cd9ffc8459927024e727bad326099db4e0b8b80b77b8a605ab9d4/gym_super_mario_bros-3.1.1.tar.gz" } ], "3.1.2": [ { "comment_text": "", "digests": { "md5": "c0aeb1c57be1c53b5582fde1fa5ea5f4", "sha256": "ff2de04f6c5de4dde81819858a6e00f0a374e95e20466e44225b4ffcdc64f065" }, "downloads": -1, "filename": "gym_super_mario_bros-3.1.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c0aeb1c57be1c53b5582fde1fa5ea5f4", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 194624, "upload_time": "2018-09-10T15:57:42", "url": "https://files.pythonhosted.org/packages/31/06/04e8821a456ba8219d0974730e8e137c7da1a0aa98a120231b81601a718c/gym_super_mario_bros-3.1.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ec1d2024ca10972471dc2971471d0813", "sha256": "018c3c920dcd8e6e16f2609c4bc074294524cbffb673ed6cdf4b3474e0c28e16" }, "downloads": -1, "filename": "gym_super_mario_bros-3.1.2.tar.gz", "has_sig": false, "md5_digest": "ec1d2024ca10972471dc2971471d0813", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 196327, "upload_time": "2018-09-10T15:57:44", "url": "https://files.pythonhosted.org/packages/46/10/3b8c919657367bf0383495ab4a683baf763ca368d34783e5bb3a8a7b34b1/gym_super_mario_bros-3.1.2.tar.gz" } ], "4.0.0": [ { "comment_text": "", "digests": { "md5": "99d94fc56a7475d9ff42f134dd7865c1", "sha256": "58ab5e5a8d03576ece9e42253f9bdc35f5cccc3bd9a92ddcbef2ef8ad14b239c" }, "downloads": -1, "filename": "gym_super_mario_bros-4.0.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "99d94fc56a7475d9ff42f134dd7865c1", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 196686, "upload_time": "2018-09-14T07:07:39", "url": "https://files.pythonhosted.org/packages/80/3d/88bed2a985cbfac2199c5e7bba8228c068f397959b27283c226fa90afa28/gym_super_mario_bros-4.0.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9d90fb5497ff7841733a3ccd98ad8c41", "sha256": "b4432bee1736056b933add98315fbb132816c1488984662fb34603ab9ef4aeb2" }, "downloads": -1, "filename": "gym_super_mario_bros-4.0.0.tar.gz", "has_sig": false, "md5_digest": "9d90fb5497ff7841733a3ccd98ad8c41", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 197411, "upload_time": "2018-09-14T07:07:41", "url": "https://files.pythonhosted.org/packages/bd/78/eef5526c4d40d17c803eeb0d4059ec0247f436ea14d5f7ece2975c90819f/gym_super_mario_bros-4.0.0.tar.gz" } ], "4.0.1": [ { "comment_text": "", "digests": { "md5": "8c9390a255dba6d9dc827b97076df6eb", "sha256": "3d68a1f7a282c1c7a6207811735ae05d3e4712997fbdde20e1ed763210ff6a36" }, "downloads": -1, "filename": "gym_super_mario_bros-4.0.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "8c9390a255dba6d9dc827b97076df6eb", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 15793, "upload_time": "2018-09-16T06:58:43", "url": "https://files.pythonhosted.org/packages/f7/14/a9c95355d60ca7eff977d7b6267d31b3ced13bd92b474876820879fdd57c/gym_super_mario_bros-4.0.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "671dd359c83aa440df50cdac3a6e226c", "sha256": "9cdc43172d0de9d34d2c6746fcd9277724dee3f68bc851ee357f305f82372f6d" }, "downloads": -1, "filename": "gym_super_mario_bros-4.0.1.tar.gz", "has_sig": false, "md5_digest": "671dd359c83aa440df50cdac3a6e226c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15619, "upload_time": "2018-09-16T06:58:44", "url": "https://files.pythonhosted.org/packages/43/b5/762c32a3fbe46aeee819e9026abafc167591190c33d6645cb19ae31033f9/gym_super_mario_bros-4.0.1.tar.gz" } ], "4.0.2": [ { "comment_text": "", "digests": { "md5": "6fbb40aada0e01ad1b06b2ef1870ac88", "sha256": "3b2a1ed98c857e381fd3bc200b5b024306c6614afe4bb343016720fe34d8270d" }, "downloads": -1, "filename": "gym_super_mario_bros-4.0.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "6fbb40aada0e01ad1b06b2ef1870ac88", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 197496, "upload_time": "2018-09-16T17:13:30", "url": "https://files.pythonhosted.org/packages/da/c0/c45d1a01074c9353acf0e3e5f0beb0c9d0f57331f93455917f217776ca03/gym_super_mario_bros-4.0.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "de1c4c161790df3a38f9b570edf4ed9c", "sha256": "86fee2f402768c346c0abcb5e88dd1978be6b726a713b60e4f7ca0699dbc4a93" }, "downloads": -1, "filename": "gym_super_mario_bros-4.0.2.tar.gz", "has_sig": false, "md5_digest": "de1c4c161790df3a38f9b570edf4ed9c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 199030, "upload_time": "2018-09-16T17:13:31", "url": "https://files.pythonhosted.org/packages/bf/66/cf647ce51414587abd75459363ef8dae8080f774cd613e962ab52bfa4293/gym_super_mario_bros-4.0.2.tar.gz" } ], "4.1.0": [ { "comment_text": "", "digests": { "md5": "30cdb7cce3e05dd082182d49781cc157", "sha256": "18e117fc22090c4f87bf2a6fe1b99905f12410d09f3936998948ec1329dae731" }, "downloads": -1, "filename": "gym_super_mario_bros-4.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "30cdb7cce3e05dd082182d49781cc157", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 197622, "upload_time": "2018-09-28T00:31:37", "url": "https://files.pythonhosted.org/packages/d0/c8/3f660b7725a55c2c4ccc160a13a7bd1255525c3464fe36d28c340046970b/gym_super_mario_bros-4.1.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4925df6fbdb8f5f4832a79fa781d55b4", "sha256": "d1c6bee3dd75c3137df3b11980a6d11d2ef93c81399dca643e22acee06fda03a" }, "downloads": -1, "filename": "gym_super_mario_bros-4.1.0.tar.gz", "has_sig": false, "md5_digest": "4925df6fbdb8f5f4832a79fa781d55b4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 199194, "upload_time": "2018-09-28T00:31:40", "url": "https://files.pythonhosted.org/packages/40/58/a954a13d7b907a3546afb155cc69dad8bdbebb397d996f4adfadd11de431/gym_super_mario_bros-4.1.0.tar.gz" } ], "5.0.0": [ { "comment_text": "", "digests": { "md5": "fde041611aaf8cad8335e73e91cf75ff", "sha256": "fecef8a2a7c8e9aae15bcafa056429aae6126eaf1c02b9eb7fb192933c4ceda9" }, "downloads": -1, "filename": "gym_super_mario_bros-5.0.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "fde041611aaf8cad8335e73e91cf75ff", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 197768, "upload_time": "2018-10-10T03:14:18", "url": "https://files.pythonhosted.org/packages/d0/0c/75d47d5c309605c40b6ff031c55091eb8f9ca298663afd283b7c6709f799/gym_super_mario_bros-5.0.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2c0f0752e54510bd705070652d485243", "sha256": "67d37448bf99b1943b69002bf537b842d760d3062f9760faa3b11ea9006a337f" }, "downloads": -1, "filename": "gym_super_mario_bros-5.0.0.tar.gz", "has_sig": false, "md5_digest": "2c0f0752e54510bd705070652d485243", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 199333, "upload_time": "2018-10-10T03:14:20", "url": "https://files.pythonhosted.org/packages/ae/92/19ca34eadd900dce39ff94a086a4d5eebaa45ba42764846be33de5d8e0b2/gym_super_mario_bros-5.0.0.tar.gz" } ], "5.0.1": [ { "comment_text": "", "digests": { "md5": "37ec86ab5ed1228354c537118dac7eb2", "sha256": "ff1d8b6e9de2cd1f8d38989e9481d36d5c6e04a41fa0fd7dadbe64d7d4a88edd" }, "downloads": -1, "filename": "gym_super_mario_bros-5.0.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "37ec86ab5ed1228354c537118dac7eb2", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 197696, "upload_time": "2018-12-29T01:34:18", "url": "https://files.pythonhosted.org/packages/c2/f2/f9b5b44b304b924c7854dada53f237186f907853e585bfdd6b853a9efec0/gym_super_mario_bros-5.0.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a5652492613917fcffc45f2f339355f1", "sha256": "eb2fa53dab271182ca120b2b9fd9df016e3381444887c2a89f2ffe1bfc959acb" }, "downloads": -1, "filename": "gym_super_mario_bros-5.0.1.tar.gz", "has_sig": false, "md5_digest": "a5652492613917fcffc45f2f339355f1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 199211, "upload_time": "2018-12-29T01:34:21", "url": "https://files.pythonhosted.org/packages/04/d5/7ad3c317d97b04c7a9cf91a78ba3265d2eced177bba338700740a7863c1d/gym_super_mario_bros-5.0.1.tar.gz" } ], "6.0.1": [ { "comment_text": "", "digests": { "md5": "c8ba2f9bd5c9b0ada8879d6a9f773124", "sha256": "6fdace8834e409730d0238888406e79ea4260f52a8df0ef9827890dfde894e0f" }, "downloads": -1, "filename": "gym_super_mario_bros-6.0.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c8ba2f9bd5c9b0ada8879d6a9f773124", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 197692, "upload_time": "2018-12-29T02:00:51", "url": "https://files.pythonhosted.org/packages/f1/1a/dd77ebfeda41e9f24376c491c3e96ab102116cb3e582e528d487194b7fad/gym_super_mario_bros-6.0.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b132d8991fba758b1e57b82ceb52fd79", "sha256": "90fb4736a2c2ff0d8fddadfbb224cbcd64e1d7acd3ce354e287b7ce58b418369" }, "downloads": -1, "filename": "gym_super_mario_bros-6.0.1.tar.gz", "has_sig": false, "md5_digest": "b132d8991fba758b1e57b82ceb52fd79", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 199215, "upload_time": "2018-12-29T02:00:53", "url": "https://files.pythonhosted.org/packages/57/4b/0d1248da148719a3ca2affcf427665b30c8cffd14d5adfd80d024c1d6836/gym_super_mario_bros-6.0.1.tar.gz" } ], "6.0.2": [ { "comment_text": "", "digests": { "md5": "504cfa05e7a10e909b19c0caa9e5f47c", "sha256": "94d34e5c50fccf67441c076364066a9b3e27d83592b8faac54091046b1330355" }, "downloads": -1, "filename": "gym_super_mario_bros-6.0.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "504cfa05e7a10e909b19c0caa9e5f47c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 197686, "upload_time": "2019-01-05T01:57:12", "url": "https://files.pythonhosted.org/packages/fb/62/f2d469d5efc3b2eb94663f1dfb66e035a342935ed400c6745e90bf34b363/gym_super_mario_bros-6.0.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f06b9aa3bbf6b76a69619f52bdc5e26c", "sha256": "370a40ae929ff113ebd5e5cf7ee6d7b9d0f38fa067e86b668b2e844f631e5975" }, "downloads": -1, "filename": "gym_super_mario_bros-6.0.2.tar.gz", "has_sig": false, "md5_digest": "f06b9aa3bbf6b76a69619f52bdc5e26c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 199166, "upload_time": "2019-01-05T01:57:14", "url": "https://files.pythonhosted.org/packages/bb/95/6ef319d22627260f65712abd9523ba4257e24bd0926b9d4fd81d131ad16f/gym_super_mario_bros-6.0.2.tar.gz" } ], "6.0.3": [ { "comment_text": "", "digests": { "md5": "c75733eacbdc63348c24b6af0320523f", "sha256": "628c955700daf72871bc56d6d538ad15eeea235263d4df54ad03a50f362a0467" }, "downloads": -1, "filename": "gym_super_mario_bros-6.0.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c75733eacbdc63348c24b6af0320523f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 195319, "upload_time": "2019-01-05T22:02:14", "url": "https://files.pythonhosted.org/packages/03/cd/645189b07328e260cd993cf67a08c1dcd3012cadbde8e80077b456c3c0f1/gym_super_mario_bros-6.0.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0ec4e06cfb5b3bc220141bfe799242ee", "sha256": "b8141ef459a5e24b12f9a000680bcbf6da30421678b21652e31a006d1c622638" }, "downloads": -1, "filename": "gym_super_mario_bros-6.0.3.tar.gz", "has_sig": false, "md5_digest": "0ec4e06cfb5b3bc220141bfe799242ee", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 197611, "upload_time": "2019-01-05T22:02:16", "url": "https://files.pythonhosted.org/packages/8b/44/ba0c25d1b0532771eff2da1b3f1d30538650542be8310f7668851c2af48b/gym_super_mario_bros-6.0.3.tar.gz" } ], "6.0.4": [ { "comment_text": "", "digests": { "md5": "108ae370495e8b4e78498fcb68117ca4", "sha256": "d10213ddfb0d4ee019e5687329c39fe09c2572e46eaac4f5e9ac4add774e9dfa" }, "downloads": -1, "filename": "gym_super_mario_bros-6.0.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "108ae370495e8b4e78498fcb68117ca4", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 195398, "upload_time": "2019-01-06T03:34:52", "url": "https://files.pythonhosted.org/packages/5b/d4/7094315680f441895755f354d724687e624a771ca3185c1c128ce31f7219/gym_super_mario_bros-6.0.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "dee09367e6a4429df2ce29d0ffd994b9", "sha256": "9f7eb5508c2f0d4840d8212ea6c46a4f7268b5ce1082f51380e4e5d686816ee6" }, "downloads": -1, "filename": "gym_super_mario_bros-6.0.4.tar.gz", "has_sig": false, "md5_digest": "dee09367e6a4429df2ce29d0ffd994b9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 197676, "upload_time": "2019-01-06T03:34:54", "url": "https://files.pythonhosted.org/packages/26/85/75945701e86dff0e4b24c56c1104d66ea1534a374d4a743483fae02cc1e4/gym_super_mario_bros-6.0.4.tar.gz" } ], "7.0.0": [ { "comment_text": "", "digests": { "md5": "9e9ebc6d73eec6457410dda3cd0679b3", "sha256": "fc90962e6c31a278aad224d47cc6d52e93af23c6dcd30a30a2674904ee7e6bb9" }, "downloads": -1, "filename": "gym_super_mario_bros-7.0.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "9e9ebc6d73eec6457410dda3cd0679b3", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 195108, "upload_time": "2019-01-06T07:12:40", "url": "https://files.pythonhosted.org/packages/15/f2/ee9002bf5935442e2480c0f6e138125a1dcc5301a388346c298a50571782/gym_super_mario_bros-7.0.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0319c04ceb85117b6fa4638b47e8b68e", "sha256": "249a3e1069d140df69ec04dc307d0f171e08d699a0b18d9540314892dc5dfa26" }, "downloads": -1, "filename": "gym_super_mario_bros-7.0.0.tar.gz", "has_sig": false, "md5_digest": "0319c04ceb85117b6fa4638b47e8b68e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 197189, "upload_time": "2019-01-06T07:12:43", "url": "https://files.pythonhosted.org/packages/54/9d/56fb4135c4e0c9160db9d56b1127d057cd64bda8f0e040f0f90ce1fcf6d0/gym_super_mario_bros-7.0.0.tar.gz" } ], "7.0.1": [ { "comment_text": "", "digests": { "md5": "4b88f3eb9bbcadce47b820c5e6cad3f2", "sha256": "3fa14ff70af917b48f5acd0d7ceb183c24deb41ecb605744256a2f3fc447c3a8" }, "downloads": -1, "filename": "gym_super_mario_bros-7.0.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "4b88f3eb9bbcadce47b820c5e6cad3f2", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 195088, "upload_time": "2019-01-06T07:20:28", "url": "https://files.pythonhosted.org/packages/77/56/906e2f956f3aad3d873b4a3a3591806b837057b29aa100e1af9afafea462/gym_super_mario_bros-7.0.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ff4d13a61595aaf5e9416de6112275a7", "sha256": "dc359fabf11c13baef46487f1d034ae7c5775f7f7168e15b59de6e94ebe5b3b7" }, "downloads": -1, "filename": "gym_super_mario_bros-7.0.1.tar.gz", "has_sig": false, "md5_digest": "ff4d13a61595aaf5e9416de6112275a7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 197182, "upload_time": "2019-01-06T07:20:30", "url": "https://files.pythonhosted.org/packages/4e/32/af55fc56a2c147cf39239ad738ec946b15ff1a31385d3d37610b7282c59d/gym_super_mario_bros-7.0.1.tar.gz" } ], "7.1.0": [ { "comment_text": "", "digests": { "md5": "56b3727e2a3b50fb81df70a34bc7c542", "sha256": "dc217907723589086dd2affbd913aa09851cdcddfe996852183c119c09bd9b71" }, "downloads": -1, "filename": "gym_super_mario_bros-7.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "56b3727e2a3b50fb81df70a34bc7c542", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 197739, "upload_time": "2019-01-16T16:13:42", "url": "https://files.pythonhosted.org/packages/f3/82/1c90c169f7f0f53d6d0368006674c9ee911cff4de77381c3b6fc7b2517e3/gym_super_mario_bros-7.1.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9daa8c77513d9743fab82f3e04ed4ad7", "sha256": "2a82ca5c9225ed8e946960d54399f52387df8373c7e0738e99ab2ba17f336b73" }, "downloads": -1, "filename": "gym_super_mario_bros-7.1.0.tar.gz", "has_sig": false, "md5_digest": "9daa8c77513d9743fab82f3e04ed4ad7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 199407, "upload_time": "2019-01-16T16:13:45", "url": "https://files.pythonhosted.org/packages/04/ea/f4d7103567202147553cc5a2198f17cc486b10b2265b571f28823457789c/gym_super_mario_bros-7.1.0.tar.gz" } ], "7.1.1": [ { "comment_text": "", "digests": { "md5": "d55ea5deceeae5979c3c7bbe1997814c", "sha256": "781b99bb152260df6262198340a5ea714c6d37cf568aa0d5a79ad6d6bff02275" }, "downloads": -1, "filename": "gym_super_mario_bros-7.1.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "d55ea5deceeae5979c3c7bbe1997814c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 197739, "upload_time": "2019-01-16T16:18:04", "url": "https://files.pythonhosted.org/packages/2b/7a/dda32343bada7ce4d15a1ed5e0cb6a9a45fa67f95896ebf59c884cb1d4c5/gym_super_mario_bros-7.1.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f4f92228ad94212b5479895cb2d71a76", "sha256": "e971581df253ea899f303a199941e50eae6398c3881166dab0d64b3961c9a441" }, "downloads": -1, "filename": "gym_super_mario_bros-7.1.1.tar.gz", "has_sig": false, "md5_digest": "f4f92228ad94212b5479895cb2d71a76", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 199424, "upload_time": "2019-01-16T16:18:06", "url": "https://files.pythonhosted.org/packages/f6/33/39048b466fed909d3314ea65dd9670da4a121e84c5d77005f70fe5cb6601/gym_super_mario_bros-7.1.1.tar.gz" } ], "7.1.2": [ { "comment_text": "", "digests": { "md5": "a06ab9947a9c9352fca6b6a529cc8d4b", "sha256": "4abb2ece711d05746f1d7adb34ae164ec3e2c0c8b4ef2eedc746932a4f7169a5" }, "downloads": -1, "filename": "gym_super_mario_bros-7.1.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a06ab9947a9c9352fca6b6a529cc8d4b", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 197745, "upload_time": "2019-01-21T02:53:28", "url": "https://files.pythonhosted.org/packages/0a/0b/cb4bdb2092f5ebd123ed267493fd188bd3042bf09e1414615ac06496a4d5/gym_super_mario_bros-7.1.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7cc88ca9269ac8a64a455d4cd709efa6", "sha256": "6d80a7d6a1f9140fc6ee5b54c8b31386652470524050b5c191c699ebb2846a6f" }, "downloads": -1, "filename": "gym_super_mario_bros-7.1.2.tar.gz", "has_sig": false, "md5_digest": "7cc88ca9269ac8a64a455d4cd709efa6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 199441, "upload_time": "2019-01-21T02:53:30", "url": "https://files.pythonhosted.org/packages/c0/79/3d569bc10a63818588571fe4172a8a4d525ca7a367c7a6bd10459be0a175/gym_super_mario_bros-7.1.2.tar.gz" } ], "7.1.3": [ { "comment_text": "", "digests": { "md5": "7df65ddfd43d0bec9a78232cf3571f83", "sha256": "58f793a0f4e3b0ce5b0f8b42893d78b374291d476c1c31016ca2f5386661fc77" }, "downloads": -1, "filename": "gym_super_mario_bros-7.1.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7df65ddfd43d0bec9a78232cf3571f83", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 197656, "upload_time": "2019-01-21T02:57:35", "url": "https://files.pythonhosted.org/packages/df/22/4b4de8cec9499be4914fac789c6b13a0d29ba0c2ca1952e4b1c926a43ede/gym_super_mario_bros-7.1.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8fc20dc61a00152ec8f8df524773cb55", "sha256": "d1d38621a9f8abbdcb9fd5770fbfe9b163cc2c66cba810d11d5fff5c5791f727" }, "downloads": -1, "filename": "gym_super_mario_bros-7.1.3.tar.gz", "has_sig": false, "md5_digest": "8fc20dc61a00152ec8f8df524773cb55", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 199355, "upload_time": "2019-01-21T02:57:37", "url": "https://files.pythonhosted.org/packages/8a/d2/01097019014abadfd5208c19408d1cb2bf0e529af27a3bf41ba2769682d4/gym_super_mario_bros-7.1.3.tar.gz" } ], "7.1.5": [ { "comment_text": "", "digests": { "md5": "b65d22ef69dec76ee461fa79eb4a9e09", "sha256": "8de9a9227ccd4ad795ee62407a5d7d09421e4cc5500f7230640838d0380ffee4" }, "downloads": -1, "filename": "gym_super_mario_bros-7.1.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b65d22ef69dec76ee461fa79eb4a9e09", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 197695, "upload_time": "2019-01-21T03:16:14", "url": "https://files.pythonhosted.org/packages/eb/d2/2e034d5a660e5258517c9b8e024557ed2fd18707e44c9b8fbe4ae093750e/gym_super_mario_bros-7.1.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "024435464d850662cbd003e0733a0b72", "sha256": "05c3ccaf335dc5d2fc4bd31180e14df2a7a10baa6a34eccf29dc8e2c2bcebaa5" }, "downloads": -1, "filename": "gym_super_mario_bros-7.1.5.tar.gz", "has_sig": false, "md5_digest": "024435464d850662cbd003e0733a0b72", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 199387, "upload_time": "2019-01-21T03:16:16", "url": "https://files.pythonhosted.org/packages/88/ea/6c88b0d9d5e7a712f894a6327ff00d6586d66d0e6cdd02335697f611c660/gym_super_mario_bros-7.1.5.tar.gz" } ], "7.1.6": [ { "comment_text": "", "digests": { "md5": "0fa36c7eec04a7a0d480bff1b60dddbe", "sha256": "c9f7ebdd46ab34fd5aad53bd258848f719ff478482c74fea9922901f41f145ee" }, "downloads": -1, "filename": "gym_super_mario_bros-7.1.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "0fa36c7eec04a7a0d480bff1b60dddbe", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 197725, "upload_time": "2019-01-22T02:40:43", "url": "https://files.pythonhosted.org/packages/9f/50/450837ede945b73b6caebd52cb15e1caf1d5fe30c6e745a655a943075502/gym_super_mario_bros-7.1.6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6d9378734fbe781c18b6035385881de1", "sha256": "7d3227324b78abeefb5f73bf74de189ec09a592d672e8b03d70a4a707b17d702" }, "downloads": -1, "filename": "gym_super_mario_bros-7.1.6.tar.gz", "has_sig": false, "md5_digest": "6d9378734fbe781c18b6035385881de1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 199417, "upload_time": "2019-01-22T02:40:45", "url": "https://files.pythonhosted.org/packages/c6/dd/b2c132c1753c9319943c6b4cfa08566a8d16374bd16bd649d3542d5a9822/gym_super_mario_bros-7.1.6.tar.gz" } ], "7.2.1": [ { "comment_text": "", "digests": { "md5": "03a2d1b35c9ea4818d7d59c91beb73d8", "sha256": "669e2c6fbfa3b0b990f537969590141d595f28b3fea941ce9b5b12773534370d" }, "downloads": -1, "filename": "gym_super_mario_bros-7.2.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "03a2d1b35c9ea4818d7d59c91beb73d8", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 197848, "upload_time": "2019-04-30T20:18:05", "url": "https://files.pythonhosted.org/packages/df/31/f35dc1f8ef0090bfb0803d81d465828ab6441dc8048a76ef54c3812364b6/gym_super_mario_bros-7.2.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5d68e58bb2f5fed438e9ceb617555614", "sha256": "bba3311ede9b1edcd99939e5c147ef121a65cf8f344432226292119d42938b2d" }, "downloads": -1, "filename": "gym_super_mario_bros-7.2.1.tar.gz", "has_sig": false, "md5_digest": "5d68e58bb2f5fed438e9ceb617555614", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 199520, "upload_time": "2019-04-30T20:18:10", "url": "https://files.pythonhosted.org/packages/7d/6b/89b587519dad88c94b1d4a16e5ed425468b635dc075303d0866fb5ff0162/gym_super_mario_bros-7.2.1.tar.gz" } ], "7.2.3": [ { "comment_text": "", "digests": { "md5": "71b0f3702b3ef01909a9e9700683f9e2", "sha256": "0fdfc8c2ad28da4fe6f074e554ac45dd046f825da75215184c0cd02417d2d77a" }, "downloads": -1, "filename": "gym_super_mario_bros-7.2.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "71b0f3702b3ef01909a9e9700683f9e2", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 198531, "upload_time": "2019-06-02T17:57:38", "url": "https://files.pythonhosted.org/packages/2b/8e/a4a752e0dc7b194620192ebe8682776a4676a57662b3f998ddbcd0660e1c/gym_super_mario_bros-7.2.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "bb53b5a1493cc6d6d9947ed92c17f901", "sha256": "6d6d5494205825b28b431595fe8dcd0e7054df653a53d63625b2195d3264300c" }, "downloads": -1, "filename": "gym_super_mario_bros-7.2.3.tar.gz", "has_sig": false, "md5_digest": "bb53b5a1493cc6d6d9947ed92c17f901", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 199061, "upload_time": "2019-06-02T17:57:41", "url": "https://files.pythonhosted.org/packages/b1/5a/d48fd0a9843212dfd6f55cf984aa5ff829fa5660dd16a60bd860f26c8ac3/gym_super_mario_bros-7.2.3.tar.gz" } ], "7.3.0": [ { "comment_text": "", "digests": { "md5": "36d582bd9149ceae3eb7b3d5c42b0276", "sha256": "774f3b112c9329e524060f0bcaee4cac76fdb359c047a0d3b9112a415b69f8dc" }, "downloads": -1, "filename": "gym_super_mario_bros-7.3.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "36d582bd9149ceae3eb7b3d5c42b0276", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 198554, "upload_time": "2019-09-29T04:43:34", "url": "https://files.pythonhosted.org/packages/a0/b8/07460212c2568f78b02995834e7bdc25349e586473919e2983e01b984abf/gym_super_mario_bros-7.3.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a9c286cf45776b5ad96c42cd9515afcf", "sha256": "e0338f700716d35b5c0f0b76b770a02342eabd31f4092520c6da30014c401c5f" }, "downloads": -1, "filename": "gym_super_mario_bros-7.3.0.tar.gz", "has_sig": false, "md5_digest": "a9c286cf45776b5ad96c42cd9515afcf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 199089, "upload_time": "2019-09-29T04:43:37", "url": "https://files.pythonhosted.org/packages/10/7d/08edaa89fda7ba279d70066514bd9b3ac8442560051d8394e5559912ad18/gym_super_mario_bros-7.3.0.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "36d582bd9149ceae3eb7b3d5c42b0276", "sha256": "774f3b112c9329e524060f0bcaee4cac76fdb359c047a0d3b9112a415b69f8dc" }, "downloads": -1, "filename": "gym_super_mario_bros-7.3.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "36d582bd9149ceae3eb7b3d5c42b0276", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 198554, "upload_time": "2019-09-29T04:43:34", "url": "https://files.pythonhosted.org/packages/a0/b8/07460212c2568f78b02995834e7bdc25349e586473919e2983e01b984abf/gym_super_mario_bros-7.3.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a9c286cf45776b5ad96c42cd9515afcf", "sha256": "e0338f700716d35b5c0f0b76b770a02342eabd31f4092520c6da30014c401c5f" }, "downloads": -1, "filename": "gym_super_mario_bros-7.3.0.tar.gz", "has_sig": false, "md5_digest": "a9c286cf45776b5ad96c42cd9515afcf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 199089, "upload_time": "2019-09-29T04:43:37", "url": "https://files.pythonhosted.org/packages/10/7d/08edaa89fda7ba279d70066514bd9b3ac8442560051d8394e5559912ad18/gym_super_mario_bros-7.3.0.tar.gz" } ] }