Metadata-Version: 2.1
Name: exifstrip
Version: 0.0.3
Summary: Remove EXIF data from images.
Home-page: https://github.com/bradendubois/exif-strip
Author: Braden Dubois
Author-email: braden.dubois@usask.ca
License: UNKNOWN
Keywords: exif image python
Platform: UNKNOWN
Description-Content-Type: text/markdown

# exifstrip

A command-line tool to strip EXIF data from images.

## Requirements

- [Python 3](https://python.org)
- [pip](https://packaging.python.org/tutorials/installing-packages/)

## Installation

Install the package from [PyPI](https://pypi.org), available as [exif-strip](https://pypi.org/project/exif-strip/), using [pip](https://packaging.python.org/tutorials/installing-packages/).

```shell
pip install exifstrip
```

## Usage

```shell
usage: exifstrip [-h] [--overwrite] [images ...]

positional arguments:
  images

optional arguments:
  -h, --help   show this help message and exit
  --overwrite
```

To create a new file without EXIF data:

```shell
exifstrip path/to/img1.jpeg path/to/img2.heic
```

This will create two files, `path/to/img1.jpeg.stripped` and `path/to/img2.heic.stripped`.

To *overwrite the original file*, include the `--overwrite` flag. All files specified will be overwritten.

```shell
exif-strip path/to/img1.jpeg path/to/img2.heic --overwrite
```


