Metadata-Version: 2.4
Name: requre
Version: 0.9.1
Summary: Library for testing Python code that allows to store output of various objects and use the stored data for testing.
Project-URL: Homepage, https://github.com/packit/requre
Author-email: Red Hat <packit@redhat.com>
License-Expression: MIT
License-File: LICENSE
Keywords: persistent_storage,session_storage,testing
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Topic :: Software Development
Classifier: Topic :: Utilities
Requires-Python: >=3.6
Requires-Dist: click
Requires-Dist: gitpython
Requires-Dist: httpx
Requires-Dist: pytest
Requires-Dist: pyyaml
Requires-Dist: requests
Provides-Extra: testing
Requires-Dist: pytest; extra == 'testing'
Description-Content-Type: text/markdown

[![PyPI version](https://badge.fury.io/py/requre.svg)](https://badge.fury.io/py/requre)

# REQUest REcording

Requre \[rekure\]

Is a library for storing output of various function and methods to
persistent storage and be able to replay the stored output to functions
back

[Documentation](https://requre.readthedocs.io/en/latest/)

## Plan and current status

- Used for testing [packit-service](https://github.com/packit-service) organization projects
  - ogr
  - packit

## Installation

On Fedora:

```
$ dnf install python3-requre
```

Or from PyPI:

```
$ pip3 install --user requre
```

You can also install `requre` from `main` branch, if you are brave enough:

You can use our [`packit/packit-dev` Copr repository](https://copr.fedorainfracloud.org/coprs/packit/packit-dev/):

```
$ dnf copr enable packit/packit-dev
$ dnf install python3-requre
```

Or

```
$ pip3 install --user git+https://github.com/packit/requre.git
```
