Metadata-Version: 2.1
Name: BetterTurtle
Version: 0.0.3
Summary: A better turtle module for python. Uses turtle module to create a turtle object with additional functionality.
Description-Content-Type: text/markdown
License-File: LICENSE

# Better-Turtle

## Installation
```
pip install BetterTurtle
```

## Updating
```
pip install --force-reinstall BetterTurtle
```

## Basic usage
```python
from BetterTurtle import BetterTurtle
screen = BetterTurtle()
t = screen.get_turtle()

for i in range(10):
    t.forward(100)
    t.right(90)

screen.not_exit()
```

The `BetterTurtle` class can get additional args. Theese are ` title: str="BetterTurtle", geometry: str="500x500", active_control: bool=True`.
  * `title` is a string that will set be set as the title of the window
  * `geometry` is a string that will set the initial size of the window
  * `active_control` is a bool that manages if the buttons work or not. This can be changed after creating the object

## `gui_input(type: str, title: str, prompt: str) -> (str | None)`
Opens a small window where the user can do an input. Returns the input.
### type
Can be `str`, `int` or `float`
