Metadata-Version: 2.1
Name: pyeupi
Version: 1.1
Summary: Python API for the European Union anti-phishing initiative.
Home-page: https://github.com/CIRCL/PyEUPI
License: BSD-3-Clause
Author: Raphaël Vinot
Author-email: raphael.vinot@circl.lu
Requires-Python: >=3.6,<4.0
Classifier: Environment :: Console
Classifier: Intended Audience :: Science/Research
Classifier: Intended Audience :: Telecommunications Industry
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Topic :: Internet
Classifier: Topic :: Security
Requires-Dist: requests (>=2.23.0,<3.0.0)
Project-URL: Repository, https://github.com/CIRCL/PyEUPI
Description-Content-Type: text/markdown

Client API for EUPI
===================

[![Build Status](https://travis-ci.org/Rafiot/PyEUPI.svg?branch=master)](https://travis-ci.org/Rafiot/PyEUPI)
[![Documentation Status](https://readthedocs.org/projects/pyeupi/badge/?version=latest)](http://pyeupi.readthedocs.org/en/latest/?badge=latest)

Client API to query the Phishing Initiative service.

Installation
============

From the repository:

```
    python setup.py install
```

Or via pip:

```
    pip install pyeupi
```

Search queries
==============

```
    from pyeupi import PyEUPI
    p = PyEUPI('<Api key>')
    p.search(content='circl')
    p.search_url(tld='lu')
    p.search_submissions()
```

