freegames


Namefreegames JSON
Version 2.5.3 PyPI version JSON
download
home_page
SummaryFree Python Games
upload_time2022-12-28 07:34:42
maintainer
docs_urlNone
author
requires_python>=3.7
licenseApache 2.0
keywords free games
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            Free Python Games
=================

`Free Python Games`_ is an Apache2 licensed collection of free Python games
intended for education and fun. The games are written in simple Python code and
designed for experimentation and changes. Simplified versions of several
classic arcade games are included.

Python is one of the top-five most popular programming languages in the world
and available for free from `Python.org <https://www.python.org/>`_. Python
includes an extensive Standard Library distributed with your installation. The
Standard Library has a module called Turtle which is a popular way to introduce
programming to kids. Turtle was part of the original Logo programming language
developed by Wally Feurzig and Seymour Papert in 1966. All of the games in
`Free Python Games`_ are implemented using Python and its Turtle module.

Starting in 2012, `Free Python Games`_ began as an after school program to
teach programming to inner-city youth. The goal was to have fun as much as it
was to learn. Since then the games have been improved and used in a variety of
settings ranging from classrooms to summer day-camps.

The games run anywhere Python can be installed which includes desktop computers
running Windows, Mac OS, or Linux and older or low-power hardware such as the
Raspberry Pi. Kids across the United States in grades 6th-12th have enjoyed
learning about topics such as encryption and projectile motion through games.

Each game is entirely independent from the others and includes comments along
with a list of exercises to work through with students. Creativity and
flexibility is important. There is no right or wrong way to implement a new
feature or behavior! You never know which games students will engage with best.

.. _`Free Python Games`: https://grantjenks.com/docs/freegames/


Testimonials
------------

*"I love Free Python Games because the games are fun and they're easy to
understand and change. I like making my own games now."*

-- Luke Martin, Student

*"Free Python Games inspired and introduced a new hobby to our son. Thank you so
much for exposing him to coding. He is having so much fun!"*

-- Mary Lai, Parent

*"Free Python Games are great because they really engage students and let them
learn at their own pace."*

-- Rick Schertle, Teacher, Steindorf STEAM School

*"Free Python Games combines play and learning in a flexible environment that
reduces the stress of a difficult topic like programming."*

-- Brett Bymaster, Youth Pastor, The River Church Community

*"Free Python Games is great for students, is highly organized and flexible,
and seeks to unleash inquiry and understanding."*

-- Terri Furton, Principal, Downtown College Prep


Features
--------

- Fun to play!
- Simple Python code
- Easy to install
- Designed for education
- Depends only on the Python Standard Library
- Used in hundreds of hours of classroom instruction
- Fully Documented
- 100% Test Coverage
- Developed on Python 3.10
- Tested on CPython 3.6, 3.7, 3.8, 3.9, 3.10
- Tested on Linux, Mac OS X, and Windows
- Tested using GitHub Actions

.. image:: https://github.com/grantjenks/free-python-games/workflows/integration/badge.svg
   :target: https://grantjenks.com/docs/freegames/


Quickstart
----------

Installing Free Python Games is simple with `pip
<https://pypi.python.org/pypi/pip>`_::

  $ python3 -m pip install freegames

Free Python Games supports a command-line interface (CLI). Help for the CLI is
available using::

  $ python3 -m freegames --help

The CLI supports three commands: list, copy, and show. For a list of all games
run::

  $ python3 -m freegames list

Any of the listed games may be played by executing the Python module from the
command-line. To reference the Python module, combine "freegames" with the name
of the game. For example, to play the "snake" game run::

  $ python3 -m freegames.snake

Games can be modified by copying their source code. The copy command will
create a Python file in your local directory which you can edit. For example,
to copy and play the "snake" game run::

  $ python3 -m freegames copy snake
  $ python3 snake.py

Python includes a built-in text editor named IDLE which can also execute Python
code. To launch the editor and make changes to the "snake" game run::

  $ python3 -m idlelib.idle snake.py

You can also access documentation in the interpreter with Python's built-in
help function::

  >>> import freegames
  >>> help(freegames)

Free Python Games also provides an entry-point script for compatibility with
`pipx <https://pypa.github.io/pipx/>`_::

  $ pipx install freegames
  $ freegames play life


Free Games
----------

Paint
.....

`Paint`_ -- draw lines and shapes on the screen. Click to mark the start of a
shape and click again to mark its end. Different shapes and colors can be
selected using the keyboard.

.. image:: https://grantjenks.com/docs/freegames/_static/paint.gif
   :alt: Paint Free Python Game

.. _`Paint`: https://grantjenks.com/docs/freegames/paint.html

Snake
.....

`Snake`_ -- classic arcade game. Use the arrow keys to navigate and eat the
green food. Each time the food is consumed, the snake grows one segment
longer. Avoid eating yourself or going out of bounds!

.. image:: https://grantjenks.com/docs/freegames/_static/snake.gif
   :alt: Snake Free Python Game

.. _`Snake`: https://grantjenks.com/docs/freegames/snake.html

Pacman
......

`Pacman`_ -- classic arcade game. Use the arrow keys to navigate and eat all
the white food. Watch out for red ghosts that roam the maze.

.. image:: https://grantjenks.com/docs/freegames/_static/pacman.gif
   :alt: Pacman Free Python Game

.. _`Pacman`: https://grantjenks.com/docs/freegames/pacman.html

Cannon
......

`Cannon`_ -- projectile motion. Click the screen to fire your cannnonball. The
cannonball pops blue balloons in its path. Pop all the balloons before they can
cross the screen.

.. image:: https://grantjenks.com/docs/freegames/_static/cannon.gif
   :alt: Cannon Free Python Game

.. _`Cannon`: https://grantjenks.com/docs/freegames/cannon.html

Connect
.......

`Connect`_ -- Connect 4 game. Click a row to drop a disc. The first player to
connect four discs vertically, horizontally, or diagonally wins!

.. image:: https://grantjenks.com/docs/freegames/_static/connect.gif
   :alt: Connect 4 Free Python Game

.. _`Connect`: https://grantjenks.com/docs/freegames/connect.html

Flappy
......

`Flappy`_ -- Flappy-bird inspired game. Click the screen to flap your
wings. Watch out for black ravens as you fly across the screen.

.. image:: https://grantjenks.com/docs/freegames/_static/flappy.gif
   :alt: Flappy Bird Free Python Game

.. _`Flappy`: https://grantjenks.com/docs/freegames/flappy.html

Memory
......

`Memory`_ -- puzzle game of number pairs. Click a tile to reveal a
number. Match two numbers and the tiles will disappear to reveal an image.

.. image:: https://grantjenks.com/docs/freegames/_static/memory.gif
   :alt: Memory Free Python Game

.. _`Memory`: https://grantjenks.com/docs/freegames/memory.html

Pong
....

`Pong`_ -- classic arcade game. Use the keyboard to move your paddle up and
down. The first player to miss the ball loses.

.. image:: https://grantjenks.com/docs/freegames/_static/pong.gif
   :alt: Pong Free Python Game

.. _`Pong`: https://grantjenks.com/docs/freegames/pong.html

Simon Says
..........

`Simon Says`_ -- classic memory puzzle game. Click the screen to start. Watch
the pattern and then click the tiles in the same order. Each time you get the
sequence right the pattern gets one step longer.

.. image:: https://grantjenks.com/docs/freegames/_static/simonsays.gif
   :alt: Simon Says Free Python Game

.. _`Simon Says`: https://grantjenks.com/docs/freegames/simonsays.html

Tic Tac Toe
...........

`Tic Tac Toe`_ -- classic game. Click the screen to place an X or O. Connect
three in a row and you win!

.. image:: https://grantjenks.com/docs/freegames/_static/tictactoe.gif
   :alt: Tic Tac Toe Free Python Game

.. _`Tic Tac Toe`: https://grantjenks.com/docs/freegames/tictactoe.html

Tiles
.....

`Tiles`_ -- puzzle game of sliding numbers into place. Click a tile adjacent to
the empty square to swap positions. Can you make the tiles count one to fifteen
from left to right and bottom to top?

.. image:: https://grantjenks.com/docs/freegames/_static/tiles.gif
   :alt: Tiles Free Python Game

.. _`Tiles`: https://grantjenks.com/docs/freegames/tiles.html

Tron
....

`Tron`_ -- classic arcade game. Use the keyboard to change the direction of
your Tron player. Avoid touching the line drawn by your opponent.

.. image:: https://grantjenks.com/docs/freegames/_static/tron.gif
   :alt: Tron Free Python Game

.. _`Tron`: https://grantjenks.com/docs/freegames/tron.html

Life
....

`Life`_ -- Conway's Game of Life. The classic, zero-player, cellular automation
created in 1970 by John Conway.

.. image:: https://grantjenks.com/docs/freegames/_static/life.gif
   :alt: Game of Life Free Python Game

.. _`Life`: https://grantjenks.com/docs/freegames/life.html

Maze
....

`Maze`_ -- move from one side to another. Inspired by `A Universe in One Line
of Code with 10 PRINT`_. Tap the screen to trace a path from one side to
another.

.. image:: https://grantjenks.com/docs/freegames/_static/maze.gif
   :alt: Maze Free Python Game

.. _`Maze`: https://grantjenks.com/docs/freegames/maze.html
.. _`A Universe in One Line of Code with 10 PRINT`: https://www.makeartwithpython.com/blog/10-print-in-python/

Fidget
......

`Fidget`_ -- fidget spinner inspired animation. Click the screen to accelerate
the fidget spinner.

.. image:: https://grantjenks.com/docs/freegames/_static/fidget.gif
   :alt: Fidget Spinner Free Python Game

.. _`Fidget`: https://grantjenks.com/docs/freegames/fidget.html

Illusion
........

`Illusion`_ -- an optical illusion.

.. image:: https://grantjenks.com/docs/freegames/_static/illusion.gif
   :alt: Optical Illusion Free Python Game

.. _`Illusion`: https://grantjenks.com/docs/freegames/illusion.html

Typing
......

`Typing`_ -- practice typing while letters fall down the screen.

.. image:: https://grantjenks.com/docs/freegames/_static/typing.gif
   :alt: Typing Free Python Game

.. _`Typing`: https://grantjenks.com/docs/freegames/typing.html


User Guide
----------

For those wanting more details, this part of the documentation describes
curriculum, API, and development.

* `Talk: Give the Gift of Python`_
* `Free Python Games Curriculum`_
* `Free Python Games API Reference`_
* `Free Python Games Development`_

.. _`Talk: Give the Gift of Python`: https://grantjenks.com/docs/freegames/give-gift-python.html
.. _`Free Python Games Curriculum`: https://grantjenks.com/docs/freegames/curriculum.html
.. _`Free Python Games API Reference`: https://grantjenks.com/docs/freegames/api.html
.. _`Free Python Games Development`: https://grantjenks.com/docs/freegames/development.html


References
----------

* `Free Python Games Documentation`_
* `Free Python Games at PyPI`_
* `Free Python Games at GitHub`_
* `Free Python Games Issue Tracker`_

.. _`Free Python Games Documentation`: https://grantjenks.com/docs/freegames/
.. _`Free Python Games at PyPI`: https://pypi.python.org/pypi/freegames
.. _`Free Python Games at GitHub`: https://github.com/grantjenks/free-python-games
.. _`Free Python Games Issue Tracker`: https://github.com/grantjenks/free-python-games/issues


Free Python Games License
-------------------------

Copyright 2017-2023 Grant Jenks

Licensed under the Apache License, Version 2.0 (the "License"); you may not use
this file except in compliance with the License.  You may obtain a copy of the
License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed
under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
CONDITIONS OF ANY KIND, either express or implied.  See the License for the
specific language governing permissions and limitations under the License.

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "freegames",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": "",
    "keywords": "free,games",
    "author": "",
    "author_email": "Grant Jenks <contact@grantjenks.com>",
    "download_url": "https://files.pythonhosted.org/packages/28/64/954007440f54bc98578976f7d1ce1a4f95ae3890d7197871d52b9f98f6f9/freegames-2.5.3.tar.gz",
    "platform": null,
    "description": "Free Python Games\n=================\n\n`Free Python Games`_ is an Apache2 licensed collection of free Python games\nintended for education and fun. The games are written in simple Python code and\ndesigned for experimentation and changes. Simplified versions of several\nclassic arcade games are included.\n\nPython is one of the top-five most popular programming languages in the world\nand available for free from `Python.org <https://www.python.org/>`_. Python\nincludes an extensive Standard Library distributed with your installation. The\nStandard Library has a module called Turtle which is a popular way to introduce\nprogramming to kids. Turtle was part of the original Logo programming language\ndeveloped by Wally Feurzig and Seymour Papert in 1966. All of the games in\n`Free Python Games`_ are implemented using Python and its Turtle module.\n\nStarting in 2012, `Free Python Games`_ began as an after school program to\nteach programming to inner-city youth. The goal was to have fun as much as it\nwas to learn. Since then the games have been improved and used in a variety of\nsettings ranging from classrooms to summer day-camps.\n\nThe games run anywhere Python can be installed which includes desktop computers\nrunning Windows, Mac OS, or Linux and older or low-power hardware such as the\nRaspberry Pi. Kids across the United States in grades 6th-12th have enjoyed\nlearning about topics such as encryption and projectile motion through games.\n\nEach game is entirely independent from the others and includes comments along\nwith a list of exercises to work through with students. Creativity and\nflexibility is important. There is no right or wrong way to implement a new\nfeature or behavior! You never know which games students will engage with best.\n\n.. _`Free Python Games`: https://grantjenks.com/docs/freegames/\n\n\nTestimonials\n------------\n\n*\"I love Free Python Games because the games are fun and they're easy to\nunderstand and change. I like making my own games now.\"*\n\n-- Luke Martin, Student\n\n*\"Free Python Games inspired and introduced a new hobby to our son. Thank you so\nmuch for exposing him to coding. He is having so much fun!\"*\n\n-- Mary Lai, Parent\n\n*\"Free Python Games are great because they really engage students and let them\nlearn at their own pace.\"*\n\n-- Rick Schertle, Teacher, Steindorf STEAM School\n\n*\"Free Python Games combines play and learning in a flexible environment that\nreduces the stress of a difficult topic like programming.\"*\n\n-- Brett Bymaster, Youth Pastor, The River Church Community\n\n*\"Free Python Games is great for students, is highly organized and flexible,\nand seeks to unleash inquiry and understanding.\"*\n\n-- Terri Furton, Principal, Downtown College Prep\n\n\nFeatures\n--------\n\n- Fun to play!\n- Simple Python code\n- Easy to install\n- Designed for education\n- Depends only on the Python Standard Library\n- Used in hundreds of hours of classroom instruction\n- Fully Documented\n- 100% Test Coverage\n- Developed on Python 3.10\n- Tested on CPython 3.6, 3.7, 3.8, 3.9, 3.10\n- Tested on Linux, Mac OS X, and Windows\n- Tested using GitHub Actions\n\n.. image:: https://github.com/grantjenks/free-python-games/workflows/integration/badge.svg\n   :target: https://grantjenks.com/docs/freegames/\n\n\nQuickstart\n----------\n\nInstalling Free Python Games is simple with `pip\n<https://pypi.python.org/pypi/pip>`_::\n\n  $ python3 -m pip install freegames\n\nFree Python Games supports a command-line interface (CLI). Help for the CLI is\navailable using::\n\n  $ python3 -m freegames --help\n\nThe CLI supports three commands: list, copy, and show. For a list of all games\nrun::\n\n  $ python3 -m freegames list\n\nAny of the listed games may be played by executing the Python module from the\ncommand-line. To reference the Python module, combine \"freegames\" with the name\nof the game. For example, to play the \"snake\" game run::\n\n  $ python3 -m freegames.snake\n\nGames can be modified by copying their source code. The copy command will\ncreate a Python file in your local directory which you can edit. For example,\nto copy and play the \"snake\" game run::\n\n  $ python3 -m freegames copy snake\n  $ python3 snake.py\n\nPython includes a built-in text editor named IDLE which can also execute Python\ncode. To launch the editor and make changes to the \"snake\" game run::\n\n  $ python3 -m idlelib.idle snake.py\n\nYou can also access documentation in the interpreter with Python's built-in\nhelp function::\n\n  >>> import freegames\n  >>> help(freegames)\n\nFree Python Games also provides an entry-point script for compatibility with\n`pipx <https://pypa.github.io/pipx/>`_::\n\n  $ pipx install freegames\n  $ freegames play life\n\n\nFree Games\n----------\n\nPaint\n.....\n\n`Paint`_ -- draw lines and shapes on the screen. Click to mark the start of a\nshape and click again to mark its end. Different shapes and colors can be\nselected using the keyboard.\n\n.. image:: https://grantjenks.com/docs/freegames/_static/paint.gif\n   :alt: Paint Free Python Game\n\n.. _`Paint`: https://grantjenks.com/docs/freegames/paint.html\n\nSnake\n.....\n\n`Snake`_ -- classic arcade game. Use the arrow keys to navigate and eat the\ngreen food. Each time the food is consumed, the snake grows one segment\nlonger. Avoid eating yourself or going out of bounds!\n\n.. image:: https://grantjenks.com/docs/freegames/_static/snake.gif\n   :alt: Snake Free Python Game\n\n.. _`Snake`: https://grantjenks.com/docs/freegames/snake.html\n\nPacman\n......\n\n`Pacman`_ -- classic arcade game. Use the arrow keys to navigate and eat all\nthe white food. Watch out for red ghosts that roam the maze.\n\n.. image:: https://grantjenks.com/docs/freegames/_static/pacman.gif\n   :alt: Pacman Free Python Game\n\n.. _`Pacman`: https://grantjenks.com/docs/freegames/pacman.html\n\nCannon\n......\n\n`Cannon`_ -- projectile motion. Click the screen to fire your cannnonball. The\ncannonball pops blue balloons in its path. Pop all the balloons before they can\ncross the screen.\n\n.. image:: https://grantjenks.com/docs/freegames/_static/cannon.gif\n   :alt: Cannon Free Python Game\n\n.. _`Cannon`: https://grantjenks.com/docs/freegames/cannon.html\n\nConnect\n.......\n\n`Connect`_ -- Connect 4 game. Click a row to drop a disc. The first player to\nconnect four discs vertically, horizontally, or diagonally wins!\n\n.. image:: https://grantjenks.com/docs/freegames/_static/connect.gif\n   :alt: Connect 4 Free Python Game\n\n.. _`Connect`: https://grantjenks.com/docs/freegames/connect.html\n\nFlappy\n......\n\n`Flappy`_ -- Flappy-bird inspired game. Click the screen to flap your\nwings. Watch out for black ravens as you fly across the screen.\n\n.. image:: https://grantjenks.com/docs/freegames/_static/flappy.gif\n   :alt: Flappy Bird Free Python Game\n\n.. _`Flappy`: https://grantjenks.com/docs/freegames/flappy.html\n\nMemory\n......\n\n`Memory`_ -- puzzle game of number pairs. Click a tile to reveal a\nnumber. Match two numbers and the tiles will disappear to reveal an image.\n\n.. image:: https://grantjenks.com/docs/freegames/_static/memory.gif\n   :alt: Memory Free Python Game\n\n.. _`Memory`: https://grantjenks.com/docs/freegames/memory.html\n\nPong\n....\n\n`Pong`_ -- classic arcade game. Use the keyboard to move your paddle up and\ndown. The first player to miss the ball loses.\n\n.. image:: https://grantjenks.com/docs/freegames/_static/pong.gif\n   :alt: Pong Free Python Game\n\n.. _`Pong`: https://grantjenks.com/docs/freegames/pong.html\n\nSimon Says\n..........\n\n`Simon Says`_ -- classic memory puzzle game. Click the screen to start. Watch\nthe pattern and then click the tiles in the same order. Each time you get the\nsequence right the pattern gets one step longer.\n\n.. image:: https://grantjenks.com/docs/freegames/_static/simonsays.gif\n   :alt: Simon Says Free Python Game\n\n.. _`Simon Says`: https://grantjenks.com/docs/freegames/simonsays.html\n\nTic Tac Toe\n...........\n\n`Tic Tac Toe`_ -- classic game. Click the screen to place an X or O. Connect\nthree in a row and you win!\n\n.. image:: https://grantjenks.com/docs/freegames/_static/tictactoe.gif\n   :alt: Tic Tac Toe Free Python Game\n\n.. _`Tic Tac Toe`: https://grantjenks.com/docs/freegames/tictactoe.html\n\nTiles\n.....\n\n`Tiles`_ -- puzzle game of sliding numbers into place. Click a tile adjacent to\nthe empty square to swap positions. Can you make the tiles count one to fifteen\nfrom left to right and bottom to top?\n\n.. image:: https://grantjenks.com/docs/freegames/_static/tiles.gif\n   :alt: Tiles Free Python Game\n\n.. _`Tiles`: https://grantjenks.com/docs/freegames/tiles.html\n\nTron\n....\n\n`Tron`_ -- classic arcade game. Use the keyboard to change the direction of\nyour Tron player. Avoid touching the line drawn by your opponent.\n\n.. image:: https://grantjenks.com/docs/freegames/_static/tron.gif\n   :alt: Tron Free Python Game\n\n.. _`Tron`: https://grantjenks.com/docs/freegames/tron.html\n\nLife\n....\n\n`Life`_ -- Conway's Game of Life. The classic, zero-player, cellular automation\ncreated in 1970 by John Conway.\n\n.. image:: https://grantjenks.com/docs/freegames/_static/life.gif\n   :alt: Game of Life Free Python Game\n\n.. _`Life`: https://grantjenks.com/docs/freegames/life.html\n\nMaze\n....\n\n`Maze`_ -- move from one side to another. Inspired by `A Universe in One Line\nof Code with 10 PRINT`_. Tap the screen to trace a path from one side to\nanother.\n\n.. image:: https://grantjenks.com/docs/freegames/_static/maze.gif\n   :alt: Maze Free Python Game\n\n.. _`Maze`: https://grantjenks.com/docs/freegames/maze.html\n.. _`A Universe in One Line of Code with 10 PRINT`: https://www.makeartwithpython.com/blog/10-print-in-python/\n\nFidget\n......\n\n`Fidget`_ -- fidget spinner inspired animation. Click the screen to accelerate\nthe fidget spinner.\n\n.. image:: https://grantjenks.com/docs/freegames/_static/fidget.gif\n   :alt: Fidget Spinner Free Python Game\n\n.. _`Fidget`: https://grantjenks.com/docs/freegames/fidget.html\n\nIllusion\n........\n\n`Illusion`_ -- an optical illusion.\n\n.. image:: https://grantjenks.com/docs/freegames/_static/illusion.gif\n   :alt: Optical Illusion Free Python Game\n\n.. _`Illusion`: https://grantjenks.com/docs/freegames/illusion.html\n\nTyping\n......\n\n`Typing`_ -- practice typing while letters fall down the screen.\n\n.. image:: https://grantjenks.com/docs/freegames/_static/typing.gif\n   :alt: Typing Free Python Game\n\n.. _`Typing`: https://grantjenks.com/docs/freegames/typing.html\n\n\nUser Guide\n----------\n\nFor those wanting more details, this part of the documentation describes\ncurriculum, API, and development.\n\n* `Talk: Give the Gift of Python`_\n* `Free Python Games Curriculum`_\n* `Free Python Games API Reference`_\n* `Free Python Games Development`_\n\n.. _`Talk: Give the Gift of Python`: https://grantjenks.com/docs/freegames/give-gift-python.html\n.. _`Free Python Games Curriculum`: https://grantjenks.com/docs/freegames/curriculum.html\n.. _`Free Python Games API Reference`: https://grantjenks.com/docs/freegames/api.html\n.. _`Free Python Games Development`: https://grantjenks.com/docs/freegames/development.html\n\n\nReferences\n----------\n\n* `Free Python Games Documentation`_\n* `Free Python Games at PyPI`_\n* `Free Python Games at GitHub`_\n* `Free Python Games Issue Tracker`_\n\n.. _`Free Python Games Documentation`: https://grantjenks.com/docs/freegames/\n.. _`Free Python Games at PyPI`: https://pypi.python.org/pypi/freegames\n.. _`Free Python Games at GitHub`: https://github.com/grantjenks/free-python-games\n.. _`Free Python Games Issue Tracker`: https://github.com/grantjenks/free-python-games/issues\n\n\nFree Python Games License\n-------------------------\n\nCopyright 2017-2023 Grant Jenks\n\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use\nthis file except in compliance with the License.  You may obtain a copy of the\nLicense at\n\n    http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed\nunder the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR\nCONDITIONS OF ANY KIND, either express or implied.  See the License for the\nspecific language governing permissions and limitations under the License.\n",
    "bugtrack_url": null,
    "license": "Apache 2.0",
    "summary": "Free Python Games",
    "version": "2.5.3",
    "split_keywords": [
        "free",
        "games"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "md5": "6cfa4a2e38f9560464b780e9bfff7f37",
                "sha256": "ab5a34298d36226cd286398c6589577ec19a4709d368006c37d9a2acca1d98c1"
            },
            "downloads": -1,
            "filename": "freegames-2.5.3-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "6cfa4a2e38f9560464b780e9bfff7f37",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 112792,
            "upload_time": "2022-12-28T07:34:40",
            "upload_time_iso_8601": "2022-12-28T07:34:40.906613Z",
            "url": "https://files.pythonhosted.org/packages/b9/22/3da53ac5d408c88ce53c589eb5a7a0e18cccdd6a8b0be40616635db18ca3/freegames-2.5.3-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "21ecf9c9d0acee4a73ad3b3c458ecd4a",
                "sha256": "a988eefff46fe55cf070980dc901dbc9f153b724a0d3810979e5907b97fa5506"
            },
            "downloads": -1,
            "filename": "freegames-2.5.3.tar.gz",
            "has_sig": false,
            "md5_digest": "21ecf9c9d0acee4a73ad3b3c458ecd4a",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 109781,
            "upload_time": "2022-12-28T07:34:42",
            "upload_time_iso_8601": "2022-12-28T07:34:42.226385Z",
            "url": "https://files.pythonhosted.org/packages/28/64/954007440f54bc98578976f7d1ce1a4f95ae3890d7197871d52b9f98f6f9/freegames-2.5.3.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2022-12-28 07:34:42",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "lcname": "freegames"
}
        
Elapsed time: 0.02454s