Metadata-Version: 2.1
Name: jpegtran
Version: 0.0.2
Summary: A Python wrapper for jpegtran.
Author-email: Saw Jing Wen <shotnothing@protonmail.ch>
Project-URL: Homepage, https://github.com/shotnothing/jpeg
Project-URL: Issues, https://github.com/shotnothing/jpeg/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE

## Installation

```python
pip install jpegtran
```

## Usage

```python
import jpeg

jpeg \
    .open('example.jpg') \
    .optimize() \
    .rotate(90) \
    .save('example-rotated.jpg')
```
