Metadata-Version: 2.1
Name: resticpy
Version: 0.1.0
Summary: Restic backup Python wrapper
Home-page: https://github.com/mtlynch/resticpy.git
Author: Michael Lynch
Author-email: michael@mtlynch.io
License: MIT
Project-URL: repository, https://github.com/mtlynch/resticpy
Keywords: backup
Platform: UNKNOWN
Requires-Python: >=3.7
Description-Content-Type: text/markdown

# resticpy

[![CircleCI](https://circleci.com/gh/mtlynch/resticpy.svg?style=svg)](https://circleci.com/gh/mtlynch/resticpy) [![Coverage Status](https://coveralls.io/repos/github/mtlynch/resticpy/badge.svg?branch=master)](https://coveralls.io/github/mtlynch/resticpy?branch=master) [![License](http://img.shields.io/:license-mit-blue.svg?style=flat-square)](LICENSE)

## Overview

Minimal Python wrapper around the [restic](https://restic.readthedocs.io/) backup command-line interface.

## Installation

```bash
git clone https://github.com/mtlynch/resticpy.git
cd resticpy
pip install .
```

## Quick start

Back up a file:

```python
import restic
repo = restic.Repo(path='/srv/restic-repo', password='12345678')
repo.backup('file-to-backup.txt')
```

## API Documentation

Coming soon.

## Acknowledgments

This project is forked from [jstzwj/resticpy](https://github.com/jstzwj/resticpy).


