Metadata-Version: 2.1
Name: patlet
Version: 0.0.2
Summary: Beautiful Pattern Letters
Home-page: https://github.com/anorprogrammer/patlet
Author: Shahobiddin Anorboyev
Author-email: anorprogrammer1127@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Description-Content-Type: text/markdown
License-File: LICENSE

# Pattern Letters
## Geting started

This library has been tested with Python 3.6-3.10 and Pypy 3.
+ Installation using pip<br>
`$ pip install patlet`

## Use
#### horizontal printing
  ```python
  from patlet import PatLet
  
  # output the entered text to the console
  PL = PatLet("PatLet")
  PL.printer(char='*')
  ```
#### writing .txt file
  ```python
  from patlet import PatLet
  
  # write the entered text to a .txt file
  PL = PatLet("i am reading a book")
  PL.writer(char="*", filename="book")
  ```


