Metadata-Version: 2.1
Name: kwiksand
Version: 1.1.0
Summary: a thing to write text character by character
Description-Content-Type: text/markdown

# kwiksand
### an efficient, simple text engine
types text character by character

### **NOW WITH EMOJI SUPPORT!** 😃🚄✈️📱💾💀

# Kwikstart
```py
import kwiksand as k
k.kwik("Hello World!", 0.06)
```
Will type "Hello World!" with a 0.06 delay between characters. 
# Usage
```py
kwik(text, delay=0.05)
```
#### Parameters
`text`: the text you want to write.

`delay`: the delay between characters (sec). Default value is `0.05` seconds.


# Examples
#### Basic
```py
kwik("hello")
# will type "hello" with a default of 0.05s delay between characters.
```
#### Predefined Text
```py
kwik("hello", 0.5)
# will type "hello" with a 0.5s delay between characters
```
