pong-arcade


Namepong-arcade JSON
Version 2.3.2 PyPI version JSON
download
home_page
SummaryPong written using pygame
upload_time2024-01-23 03:38:06
maintainer
docs_urlNone
author
requires_python>=3.7
licenseMIT License Copyright (c) 2022 Jacob Alexander Thompson Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
keywords application arcade executable game pong
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            [![Contributors][contributors-shield]][contributors-url]
[![Forks][forks-shield]][forks-url]
[![Stargazers][stars-shield]][stars-url]
[![Issues][issues-shield]][issues-url]
[![MIT License][license-shield]][license-url]


<br />
<div align="center">
  <a href="https://github.com/jacob-thompson/pong-arcade">
    <img src="https://raw.githubusercontent.com/jacob-thompson/pong-arcade/main/src/pong_arcade/data/gfx/logo.png" alt="Logo" width="80" height="80">
  </a>

  <h3 align="center">pong-arcade</h3>

  <p align="center">
    Pong written using pygame
    <br />
  </p>
</div>


## About The Project

![Pong Screenshot](https://raw.githubusercontent.com/jacob-thompson/pong-arcade/main/src/pong_arcade/data/gfx/screenshot.png)

This executable program is an implementation of [Pong](https://en.wikipedia.org/wiki/Pong), originally developed and released by [Atari](https://en.wikipedia.org/wiki/Atari,_Inc._(1972%E2%80%931992)) in 1972. This was created using [Pygame](https://www.pygame.org/wiki/about) and hand-made [resources](https://github.com/jacob-thompson/pong-arcade/tree/main/src/pong_arcade/data).


## Play

#### Install

```sh
pip install pong-arcade
```

Due to [PEP 668](https://peps.python.org/pep-0668/) compliance, `pip`, on some systems, may throw the `externally-managed-environment` error upon running `install`. In which case, the following is recommended:
```sh
pipx install pong-arcade
```

#### Run

```sh
pong
```

## Controls

#### Menu

* `Esc` Quit
* `C` Controls
* `1` Select first menu option
* `2` Select second menu option
* `3` Toggle third menu option

#### In-Game

![Controls Screenshot](https://raw.githubusercontent.com/jacob-thompson/pong-arcade/main/src/pong_arcade/data/gfx/controls.png)

###### Movement

* `W` / `I` Move up
* `S` / `K` Move down

Player1 may use either control scheme in single-player games.

###### Pause/Quit

* `P` / `Q` Pause the game
* `M` / `Z` Exit to menu


## License

Distributed under the MIT License. See [LICENSE](https://github.com/jacob-thompson/pong-arcade/blob/main/LICENSE) for more information.


## Project Links

Github - [jacob-thompson/pong-arcade](https://github.com/jacob-thompson/pong-arcade)

PyPI - [pong-arcade](https://pypi.org/project/pong-arcade/)


## Contact

Jacob Alexander Thompson - jacobalthompson@gmail.com


[contributors-shield]: https://img.shields.io/github/contributors/jacob-thompson/pong-arcade.svg?style=flat
[contributors-url]: https://github.com/jacob-thompson/pong-arcade/graphs/contributors
[forks-shield]: https://img.shields.io/github/forks/jacob-thompson/pong-arcade.svg?style=flat
[forks-url]: https://github.com/jacob-thompson/pong-arcade/network/members
[stars-shield]: https://img.shields.io/github/stars/jacob-thompson/pong-arcade.svg?style=flat
[stars-url]: https://github.com/jacob-thompson/pong-arcade/stargazers
[issues-shield]: https://img.shields.io/github/issues/jacob-thompson/Pong.svg?style=flat
[issues-url]: https://github.com/jacob-thompson/pong-arcade/issues
[license-shield]: https://img.shields.io/github/license/jacob-thompson/Pong.svg?style=flat
[license-url]: https://github.com/jacob-thompson/pong-arcade/blob/main/LICENSE
            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "pong-arcade",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": "\"Jacob A. Thompson\" <jacobalthompson@gmail.com>",
    "keywords": "application,arcade,executable,game,pong",
    "author": "",
    "author_email": "\"Jacob A. Thompson\" <jacobalthompson@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/4a/02/c90b823a3de48bc2ab10590b1afbdd9ecb2438279aea2a6a10f05107ad44/pong_arcade-2.3.2.tar.gz",
    "platform": null,
    "description": "[![Contributors][contributors-shield]][contributors-url]\n[![Forks][forks-shield]][forks-url]\n[![Stargazers][stars-shield]][stars-url]\n[![Issues][issues-shield]][issues-url]\n[![MIT License][license-shield]][license-url]\n\n\n<br />\n<div align=\"center\">\n  <a href=\"https://github.com/jacob-thompson/pong-arcade\">\n    <img src=\"https://raw.githubusercontent.com/jacob-thompson/pong-arcade/main/src/pong_arcade/data/gfx/logo.png\" alt=\"Logo\" width=\"80\" height=\"80\">\n  </a>\n\n  <h3 align=\"center\">pong-arcade</h3>\n\n  <p align=\"center\">\n    Pong written using pygame\n    <br />\n  </p>\n</div>\n\n\n## About The Project\n\n![Pong Screenshot](https://raw.githubusercontent.com/jacob-thompson/pong-arcade/main/src/pong_arcade/data/gfx/screenshot.png)\n\nThis executable program is an implementation of [Pong](https://en.wikipedia.org/wiki/Pong), originally developed and released by [Atari](https://en.wikipedia.org/wiki/Atari,_Inc._(1972%E2%80%931992)) in 1972. This was created using [Pygame](https://www.pygame.org/wiki/about) and hand-made [resources](https://github.com/jacob-thompson/pong-arcade/tree/main/src/pong_arcade/data).\n\n\n## Play\n\n#### Install\n\n```sh\npip install pong-arcade\n```\n\nDue to [PEP 668](https://peps.python.org/pep-0668/) compliance, `pip`, on some systems, may throw the `externally-managed-environment` error upon running `install`. In which case, the following is recommended:\n```sh\npipx install pong-arcade\n```\n\n#### Run\n\n```sh\npong\n```\n\n## Controls\n\n#### Menu\n\n* `Esc` Quit\n* `C` Controls\n* `1` Select first menu option\n* `2` Select second menu option\n* `3` Toggle third menu option\n\n#### In-Game\n\n![Controls Screenshot](https://raw.githubusercontent.com/jacob-thompson/pong-arcade/main/src/pong_arcade/data/gfx/controls.png)\n\n###### Movement\n\n* `W` / `I` Move up\n* `S` / `K` Move down\n\nPlayer1 may use either control scheme in single-player games.\n\n###### Pause/Quit\n\n* `P` / `Q` Pause the game\n* `M` / `Z` Exit to menu\n\n\n## License\n\nDistributed under the MIT License. See [LICENSE](https://github.com/jacob-thompson/pong-arcade/blob/main/LICENSE) for more information.\n\n\n## Project Links\n\nGithub - [jacob-thompson/pong-arcade](https://github.com/jacob-thompson/pong-arcade)\n\nPyPI - [pong-arcade](https://pypi.org/project/pong-arcade/)\n\n\n## Contact\n\nJacob Alexander Thompson - jacobalthompson@gmail.com\n\n\n[contributors-shield]: https://img.shields.io/github/contributors/jacob-thompson/pong-arcade.svg?style=flat\n[contributors-url]: https://github.com/jacob-thompson/pong-arcade/graphs/contributors\n[forks-shield]: https://img.shields.io/github/forks/jacob-thompson/pong-arcade.svg?style=flat\n[forks-url]: https://github.com/jacob-thompson/pong-arcade/network/members\n[stars-shield]: https://img.shields.io/github/stars/jacob-thompson/pong-arcade.svg?style=flat\n[stars-url]: https://github.com/jacob-thompson/pong-arcade/stargazers\n[issues-shield]: https://img.shields.io/github/issues/jacob-thompson/Pong.svg?style=flat\n[issues-url]: https://github.com/jacob-thompson/pong-arcade/issues\n[license-shield]: https://img.shields.io/github/license/jacob-thompson/Pong.svg?style=flat\n[license-url]: https://github.com/jacob-thompson/pong-arcade/blob/main/LICENSE",
    "bugtrack_url": null,
    "license": "MIT License  Copyright (c) 2022 Jacob Alexander Thompson  Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:  The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.  THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.",
    "summary": "Pong written using pygame",
    "version": "2.3.2",
    "project_urls": {
        "Bug Reports": "https://github.com/jacob-thompson/pong-arcade/issues",
        "Homepage": "https://github.com/jacob-thompson/pong-arcade"
    },
    "split_keywords": [
        "application",
        "arcade",
        "executable",
        "game",
        "pong"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bf8eac0f02d81b7d178f3df8579b86c3d68b907f269257df32e9d8cbc88b4835",
                "md5": "5fd39d966506b30e4a45bf41adc27227",
                "sha256": "b315292119443f19c50033315e3ba5204c991e4f090a43e6b291d53d55e64f0c"
            },
            "downloads": -1,
            "filename": "pong_arcade-2.3.2-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "5fd39d966506b30e4a45bf41adc27227",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 100468,
            "upload_time": "2024-01-23T03:38:04",
            "upload_time_iso_8601": "2024-01-23T03:38:04.843570Z",
            "url": "https://files.pythonhosted.org/packages/bf/8e/ac0f02d81b7d178f3df8579b86c3d68b907f269257df32e9d8cbc88b4835/pong_arcade-2.3.2-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4a02c90b823a3de48bc2ab10590b1afbdd9ecb2438279aea2a6a10f05107ad44",
                "md5": "acac941defa954adbc64dec7b6174625",
                "sha256": "3450f238e952c511ddf2ef1476b77fdf15923b14e492d452d1ed42a485536269"
            },
            "downloads": -1,
            "filename": "pong_arcade-2.3.2.tar.gz",
            "has_sig": false,
            "md5_digest": "acac941defa954adbc64dec7b6174625",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 98839,
            "upload_time": "2024-01-23T03:38:06",
            "upload_time_iso_8601": "2024-01-23T03:38:06.649513Z",
            "url": "https://files.pythonhosted.org/packages/4a/02/c90b823a3de48bc2ab10590b1afbdd9ecb2438279aea2a6a10f05107ad44/pong_arcade-2.3.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-01-23 03:38:06",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "jacob-thompson",
    "github_project": "pong-arcade",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "tox": true,
    "lcname": "pong-arcade"
}
        
Elapsed time: 0.22240s