Metadata-Version: 2.1
Name: word-gen.py
Version: 1.0
Summary: generate word file with random data
Home-page: https://github.com/Cherloy/Word_gen
Author: Cherloy
Author-email: sideswipe8@mail.ru
License: MIT
Platform: UNKNOWN
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# Word generator package

#### This project generates a random picture, typing a table and puts it in a word file.
#### You can specify a clear length of the generated text and the path where the generated file will be saved.
***
## Installing
pip install word_gen
## How to use
```python
from word_gen.word_gen import word

random_drawing() #This function generates a random picture from geometric shapes
get_table() #This function generates a random fixed-sized table of numbers
generate_random_string(length) #length- number of letters of random text. This function generates a random set of letters of a given length
merge(path) #path- selected save path. This function combines several word files into one single file at the specified path. Possibly can be used as a standalone helper library or smth idk ВЇ\_(гѓ„)_/ВЇ
trash_clean() #This function cleans up intermediate files
```
# Example
```python
from word_gen.word_gen import word

random_drawing() 
get_table() 
generate_random_string(12) 
merge(r"C:\Users\Cherloy\Desktop\testing\result.docx") 
trash_clean() 
```


