Create CLI-based games.
Project description
Pyclim Engine
Easy to use library for creating CLI-based games in Python.
This project is for fun/learn purposes.
Example
Note: Pyclim Engine is very experimental and there are millions of bugs floating there. Help me fixing them by contributing.
import threading
import time
import os
import pyclim
screen = pyclim.Screen()
# A prefab of a controller that moves in 4 directions
player = pyclim.Player(parent=screen)
thread = threading.Thread(target=player.move).start()
# Main game loop
while True:
print(screen.update(player)) # Printing the latest update of the screen
time.sleep(0.25)
os.system("cls") # Clears the command line. For linux use "clear"
Read more here...
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pyclim_engine-0.0.1-py3-none-any.whl.
File metadata
- Download URL: pyclim_engine-0.0.1-py3-none-any.whl
- Upload date:
- Size: 6.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4fb3e3d4a93c4d88a0e2a62d48e4154ea62ebc8e90699fcdfdfb0a91c5ffb9c5
|
|
| MD5 |
f5212e06ee582554a310541ac7629952
|
|
| BLAKE2b-256 |
056ffbc8e6ea65436344280b8b87fda1e33c894eb5891e00da7d700d3ab0ad59
|