Metadata-Version: 2.1
Name: gli99
Version: 0.0.18
Home-page: https://github.com/TomTkacz/gli99
Author: Tom Tkacz
Author-email: thomasatkacz@gmail.com
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.10
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >3.10.0
Description-Content-Type: text/markdown
Provides-Extra: dev
License-File: LICENSE.txt

# gli99 (GIF Like It's '99)

Web scraper for gifcities.org

## Installation

Run the following to install:

```python
pip install gli99
```

## Usage

```python
from gli99 import GifScraper

gs = GifScraper(browser="firefox")
gs.load(query="brazil",amount=5)
gs.download("D:/GifsFolder/")
```

# Developing gli99

To install gli99, along with the tools you need to develop and run tests, run the following in your virtualenv:

```bash
$ pip install -e .[dev]
```
