Metadata-Version: 2.4
Name: scratch_syntax
Version: 0.6.1
Summary: A syntax library designed to help scratch users transition to python
Author-email: Cade <cadey.matignas@gmail.com>
Project-URL: Homepage, https://github.com/cadeymatignas-source/scratch_syntax
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# Scratch_Syntax

## This is a custom Python library designed make python syntax more like scratch.

# Installation

```bash

pip install scratch_syntax

```

you can do anything with this library, mod it, break it, anything, but don't sue me

## Update 0.2.0 notes

I removed the forever and repeat functions because they didnt work and added the stop_all() function. You can use **for _ in range():** for repeat and **while True:** for forever

# Updating

```bash

pip install --upgrade scratch_syntax

```

## Update 0.3.0 notes
* I added the list functions



## Update 0.4.0 notes

### Added new say_for_seconds() function

* I also added Github Respitory

## Update 0.5.0
* Added new wait_until() function


## Update 0.6.0. ReRun's UPDATE!!!
* The return of classic repeats... in a different way!!!
* Added new repeat_until() function!!!
* Now needs the lambda function. etc:
 ```bash

 repeat(lambda: say("hello!"), 5)
 forever(lambda: say("hiya!"))
 repeat_until(lambda: say("do you like this?"), condition())

 ```

Also btw don't forget to put from scratch_syntax import * so the functions run correctly as is
 
# All Functions

```bash
say(), ask(), wait(), pick_random_number_from(), stop_all(), add_to_list(), insert_in_list(), delete_from_list(), delete_all_from_list(), replace_from_list(), answer(), say_for_seconds(), wait_until(), repeat(), forever(), repeat_until()

```
