Metadata-Version: 2.1
Name: nodeps
Version: 0.0.7
Summary: Python helpers and utilities with no dependencies
Author-email: José Antonio Puértolas Montañés <63794670+j5pu@users.noreply.github.com>
License: MIT
Project-URL: Homepage, https://github.com/j5pu/nodeps
Requires-Python: >=3.11
Description-Content-Type: text/markdown
License-File: LICENSE
Provides-Extra: all
Requires-Dist: nodeps[ansi] ; extra == 'all'
Requires-Dist: nodeps[echo] ; extra == 'all'
Requires-Dist: nodeps[log] ; extra == 'all'
Requires-Dist: nodeps[pickle] ; extra == 'all'
Requires-Dist: nodeps[repo] ; extra == 'all'
Requires-Dist: nodeps[requests] ; extra == 'all'
Provides-Extra: ansi
Requires-Dist: strip-ansi <1,>=0.1.1 ; extra == 'ansi'
Provides-Extra: dev
Requires-Dist: pproj[all] ; extra == 'dev'
Provides-Extra: echo
Requires-Dist: typer[all] <1,>=0.9 ; extra == 'echo'
Provides-Extra: log
Requires-Dist: loguru <1,>=0.7.2 ; extra == 'log'
Provides-Extra: pickle
Requires-Dist: jsonpickle <4,>=3.0.2 ; extra == 'pickle'
Requires-Dist: structlog <24,>=23.1.0 ; extra == 'pickle'
Provides-Extra: repo
Requires-Dist: gitpython <4,>=3.1.37 ; extra == 'repo'
Provides-Extra: requests
Requires-Dist: beautifulsoup4 <5,>=4.12.2 ; extra == 'requests'
Requires-Dist: requests <3,>=2.31.0 ; extra == 'requests'

# NoDeps

[![PyPI](https://img.shields.io/pypi/v/nodeps.svg)][pypi status]
[![Status](https://img.shields.io/pypi/status/nodeps.svg)][pypi status]
[![Python Version](https://img.shields.io/pypi/pyversions/nodeps)][pypi status]
[![License](https://img.shields.io/pypi/l/nodeps)][license]

[![Read the documentation at https://sbit.readthedocs.io/](https://img.shields.io/readthedocs/nodeps/latest.svg?label=Read%20the%20Docs)][read the docs]
[![Tests](https://github.com/j5pu/nodeps/workflows/Tests/badge.svg)][tests]
[![Codecov](https://codecov.io/gh/j5pu/nodeps/branch/main/graph/badge.svg)][codecov]

[pypi status]: https://pypi.org/project/nodeps/

[read the docs]: https://nodeps.readthedocs.io/

[tests]: https://github.com/j5pu/nodeps/actions?workflow=Tests

[codecov]: https://app.codecov.io/gh/j5pu/nodeps

[pre-commit]: https://github.com/pre-commit/pre-commit

[black]: https://github.com/psf/black

## Features

Extras:
- `ansi`: for `getstdout` and `strip` function using `strip-ansi` library
- `echo`: for `echo` package using `click` library
- `log`: for `logger` function using `loguru` library
- `pickle`: for `cache` function using `jsonpickle` and `structlog` libraries
- `repo`: for `Repo` class using `gitpython` library
- `requests`: for `python_latest`, `python_versions` and `request_x_api_key_json` functions that use the `requests` and `beautifulsoup4` libraries

Test imports uninstalling: `pip uninstall loguru beautifulsoup4 click jsonpickle strip_ansi structlog typer`

## Installation

You can install _nodeps_ via [pip] from [PyPI]:

```console
$ pip install nodeps
```

You can install _nodeps_ with extras [pip] from [PyPI]:

```console
$ pip install nodeps[repo]
```

To install all extras (not including development extras):

```console
$ pip install nodeps[all]
```

## License

Distributed under the terms of the [MIT license][license],
_nodeps_ is free and open source software.

## Issues

If you encounter any problems,
please [file an issue] along with a detailed description.

## Credits

[@j5pu]: https://github.com/j5pu

[pypi]: https://pypi.org/

[file an issue]: https://github.com/j5pu/pproj/issues

[pip]: https://pip.pypa.io/

<!-- github-only -->

[license]: https://github.com/j5pu/pproj/blob/main/LICENSE
