Metadata-Version: 2.1
Name: gif2ascii
Version: 0.0.6
Summary: Gif to ASCII
Author: Shobhit Bhosure
Author-email: <shobhitbhosure7@gmail.com>
Keywords: python,ascii gif,terminal gif,ascii art,terminal art
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: Unix
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Description-Content-Type: text/markdown


## ascii_gif

#### Example

```python
from gif2ascii import GifAscii

file_name = 'test.gif'
width = 80
GifAscii(file_name, width).output()
```

#### Available Options to constructor
```
file_name - Name of the file to convert
-- optional params --
width - width in chars for output
frame_delay - Delay between frames in GIF while rendering to terminal
fit_terminal - Ignores width, takes the entire terminal size
chars - specify chars for ASCII text (fat characters gives better results)
loop_gif - you know what it is :p (ctrl + c to end)
```

