Metadata-Version: 2.1
Name: file-convertion-tools
Version: 0.0.16
Summary: common file conversions
Author: Gustav Rasmussen
Requires-Python: >=3.11,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Dist: moviepy (>=1.0.3,<2.0.0)
Requires-Dist: pandas (>=2.2.3,<3.0.0)
Requires-Dist: py7zr (>=0.22.0,<0.23.0)
Requires-Dist: pypdf (>=5.1.0,<6.0.0)
Requires-Dist: pytest (>=8.3.3,<9.0.0)
Requires-Dist: pytest-cov (>=6.0.0,<7.0.0)
Requires-Dist: pyyaml (>=6.0.2,<7.0.0)
Requires-Dist: tabula-py (>=2.10.0,<3.0.0)
Requires-Dist: tabulate (>=0.9.0,<0.10.0)
Description-Content-Type: text/markdown


<a href="https://pypi.org/project/file-convertion-tools/">
<img src="https://img.shields.io/pypi/v/file-convertion-tools.svg">
</a>
<a href="https://github.com/TheNewThinkTank/msgspec/blob/main/LICENSE">
<img src="https://img.shields.io/github/license/TheNewThinkTank/file-tools.svg">
</a>

![PyPI Downloads](https://img.shields.io/pypi/dm/file-convertion-tools)
![CI](https://github.com/TheNewThinkTank/file-tools/actions/workflows/wf.yml/badge.svg)
[![codecov](https://codecov.io/gh/TheNewThinkTank/file-tools/graph/badge.svg?token=hCgj5V8QwP)](https://codecov.io/gh/TheNewThinkTank/file-tools)
![commit activity](https://img.shields.io/github/commit-activity/m/TheNewThinkTank/file-tools)
[![GitHub repo size](https://img.shields.io/github/repo-size/TheNewThinkTank/file-tools?style=flat&logo=github&logoColor=whitesmoke&label=Repo%20Size)](https://github.com/TheNewThinkTank/file-tools/archive/refs/heads/main.zip)

# file-tools

common file conversions

## Installation

```BASH
pip install file-convertion-tools
```

## Usage example

Importing example

```Python
from file_convertion_tools.load_toml import load_toml
```

Usage

```Python
from pprint import pprint as pp

data: dict = load_toml("some_file.toml")
pp(data, sort_dicts=False)
```

<!--
## Create a new release

example:

```BASH
git tag 0.0.1
git push origin --tags
```

release a patch:

```BASH
poetry version patch
```

then `git commit`, `git push` and

```BASH
git tag 0.0.2
git push origin --tags
```
-->

