Metadata-Version: 2.1
Name: gif2ascii
Version: 0.0.1
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 ascii_gif import AsciiGif

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

#### Available Options to constructor
```
    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)
```
