Metadata-Version: 2.1
Name: turtledov
Version: 0.1.3
Summary: Learn Python the creative way
Home-page: https://github.com/HirushaPramuditha/turtledov
Author: Hirusha Pramuditha
Author-email: hirushapramuditha26@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown

# TurtleDov

![PyPI](https://img.shields.io/pypi/v/turtledov?color=blue)
![PyPI - Downloads](https://img.shields.io/pypi/dm/turtledov)
<img src="https://img.shields.io/static/v1?label=python&message=3.6 | 3.7 | 3.8 | 3.9&color=blue">
![PyPI - Wheel](https://img.shields.io/pypi/wheel/turtledov)
![GitHub](https://img.shields.io/github/license/HirushaPramuditha/turtledov)

Learn Python the creative way

## Installation

To install TurtleDov, Run this command on terminal

```
$ pip install turtledov
```

## How to use

```python
from turtledov import *
```

`*` for import all fuctions from turtleDov

### Example

Let's draw a square using **turtledov**

```python
from turtledov import *

start()
moveForward(100)
turnRight(90)
moveForward(100)
turnRight(90)
moveForward(100)
turnRight(90)
moveForward(100)
end()
```

You should use `start()` at the start and `end()` at the end

You can see a full list of funtions [here](https://gist.github.com/HirushaPramuditha/5a63ff7b4b0c767ec95190f04dd73340)


