Metadata-Version: 2.1
Name: betterlib
Version: 0.2.0
Summary: A useful collection of various tools and libraries for anyone to use in their projects.
Author-email: Henry Martin <n3rdl0rd@proton.me>
Project-URL: Homepage, https://github.com/HENRYMARTIN5/betterlib
Project-URL: Bug Tracker, https://github.com/HENRYMARTIN5/betterlib/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: The Unlicense (Unlicense)
Classifier: Operating System :: OS Independent
Requires-Python: >=3.5
Description-Content-Type: text/markdown
License-File: LICENSE

# BetterLib

BetterLib is a useful collection of utilities for Python developers to use in their projects. It is licensed under the Unlicense, so you can use it in any project, commercial or otherwise, without any restrictions whatsoever. (Yes, that means you can steal any part of it and pass it off as your own. I won't judge.)

## Installation

BetterLib is available on PyPI, so you can install it with pip:

```sh
pip install betterlib
```

## Usage

BetterLib is split into several modules, each of which contains a collection of related utilities. You can import the entire library, or just the modules you need.

```py
# Import the entire library...
import betterlib
# or import just the modules you need.
from betterlib import logging, config, ip...
```

## Modules

See the [documentation](https://henrymartin5.github.io/betterlib).

## Contributing

See [contributing](https://henrymartin5.github.io/betterlib/contribute)
