Metadata-Version: 2.4
Name: pylookyloo
Version: 1.39.1
Summary: Python CLI and module for Lookyloo
License-Expression: GPL-2.0-or-later
License-File: LICENSE
Author: Raphaël Vinot
Author-email: raphael.vinot@circl.lu
Requires-Python: >=3.10,<3.15
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Intended Audience :: Information Technology
Classifier: Intended Audience :: Science/Research
Classifier: Intended Audience :: Telecommunications Industry
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Topic :: Internet
Classifier: Topic :: Security
Provides-Extra: docs
Provides-Extra: examples
Requires-Dist: deprecated (>=1.3.1,<2.0.0) ; python_version < "3.13"
Requires-Dist: lookyloo-models (>=0.2.7)
Requires-Dist: pydantic (>=2.12.5,<3.0.0)
Requires-Dist: pylacus (>=1.24.4) ; extra == "examples"
Requires-Dist: requests (>=2.33.1)
Requires-Dist: sphinx (>=9.1.0) ; (python_version >= "3.12") and (extra == "docs")
Requires-Dist: urllib3 (>=2.6.3,<3.0.0)
Project-URL: Documentation, https://pylookyloo.readthedocs.io/en/latest/
Project-URL: Repository, https://github.com/lookyloo/PyLookyloo
Project-URL: issues, https://github.com/lookyloo/PyLookyloo/issues
Description-Content-Type: text/markdown

[![Documentation Status](https://readthedocs.org/projects/pylookyloo/badge/?version=latest)](https://pylookyloo.readthedocs.io/en/latest/?badge=latest)

# PyLookyloo

This is the client API for [Lookyloo](https://www.lookyloo.eu).

## Installation

```bash
pip install pylookyloo
```

## Usage

### Command line

You can use the `lookyloo` command to enqueue a URL.

```bash
usage: lookyloo [-h] [--url URL] --query QUERY

Enqueue a URL on Lookyloo.

optional arguments:
  -h, --help     show this help message and exit
  --url URL      URL of the instance (defaults to https://lookyloo.circl.lu/,
                 the public instance).
  --query QUERY  URL to enqueue.
  --listing      Should the report be publicly listed.
  --redirects    Get redirects for a given capture.

The response is the permanent URL where you can see the result of the capture.
```

### Library

See [API Reference](https://pylookyloo.readthedocs.io/en/latest/api_reference.html)

