Metadata-Version: 2.1
Name: PicSeek
Version: 1.0.0
Summary: A simple Python image search library
Home-page: https://github.com/Mr-Abood/PicSeek
Author: PicSeek
Author-email: abodawad1111@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests

# PicSeek

PicSeek is a Python library for searching for images on IStock and Flickr. It provides a simple and easy-to-use interface for accessing these services and retrieving images based on various search parameters.

## Installation

Use the package manager [pip](https://pip.pypa.io/en/stable/) to install PicSeek.

```bash
pip install PicSeek
```

## Examples
### Search in Flickr
``` python
from picseek import Flickr

flickr = Flickr()

for img in flickr.search(text="cat", page=1, per_page=2):
	print(img.link)
	#print(img.content)
	#print(img.base64)
	#img.save(filename="img.png")
```

### Search in IStock
``` python
from picseek import IStock

istock = IStock()

for img in istock.search(text="cat", page=1):
	print(img.link)
	#print(img.content)
	#print(img.base64)
	#img.save(filename="img.png")
```

## Developer
Telegram: [https://t.me/O0O0I](https://t.me/O0O0I)
