# Script for restoring deleted objects in S3

Configure `bucket_name`, `prefix_path`, `point_of_restore` variables, and then run:

```bash
python3 -m venv .virtualenv \
  && source .virtualenv/bin/activate \
  && pip install --upgrade pip \
  && pip install -r requirements.txt

python restore.py
```

PS: Don't forget about MFA.

PPS: Script [origin](https://github.com/aws-samples/restore-s3-deleted-objects).
