Metadata-Version: 2.1
Name: PyGameLab
Version: 1.0.1
Summary: PyGameLab: A versatile Python library for game development using Pygame.
Author-email: Leandro Feippe <feippe5454@gmail.com>
Project-URL: Homepage, https://github.com/PyGameLab/pygamelab/
Project-URL: Bug Tracker, https://github.com/PyGameLab/pygamelab/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENCE

# PygameLab

PygameLab is a versatile Python library for game development using Pygame.


## Features

- Simplified game development with Pygame
- Easy sprite handling and manipulation
- Efficient event handling and input management
- Flexible text rendering with alignment options
- Image loading, display, and manipulation
- Polygon drawing and shape rendering
- Timer and time-related utilities
- Random number generation and utilities
- JSON and text file handling
- Unicode character retrieval
- Console logging and debugging utilities


## Installation

You can install PygameLab using pip:

`pip install PyGameLab`


## Usage

Here's a simple example of how to use PygameLab to create a game window:

```python
from PyGameLab import Window

# Create a game window
window = Window((800, 600), "My Game")

# Main game loop
while window.running:
    for event in pygame.event.get():
        if event.type == pygame.QUIT:
            window.running = False

    window.update()

pygame.quit()
```

For more information, documentation, and examples, visit the [PyGameLab GitHub directory](https://github.com/PyGameLab/pygamelab).

