Metadata-Version: 2.1
Name: flaticon
Version: 1.0.0
Summary: Scrape icons from flaticon.com
Home-page: https://github.com/yedhrab/flaticon
Author: Yunus Emre Ak
Author-email: yemreak.com@gmail.com
License: Apache Software License 2.0
Project-URL: Source, https://github.com/yedhrab/flaticon/
Project-URL: Changelog, https://github.com/yedhrab/flaticon/releases
Project-URL: Issue Tracker, https://github.com/yedhrab/flaticon/issues
Keywords: flaticon,icon,scrape
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Topic :: Utilities
Requires-Python: >=3.9.6
Description-Content-Type: text/markdown
Provides-Extra: dev
License-File: LICENSE

# FlatIcon Client

Simple FlatIcon Client for that I use for my own projects.

```bash
pip install flaticon
```

## 🤔 How It's Work?

- Search `query` on flaticon (for more specific settings, change shape or order_by in `main.py`)
- Creates `flaticon` folder to `HOME` directory and store every query it's own folder
- Download all image results if it's not exists

## ⭐️ Example

```python
from flaticon import FlatIconClient

with FlatIconClient() as client:
    images = client.search_for_images("cat", count=2)
    for image in images:
        client.download_image(image)
```

## 🪪 License

```
Copyright 2022 Yunus Emre Ak ~ YEmreAk.com

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
```
