Metadata-Version: 2.1
Name: pytemplate-reverse
Version: 0.0.3
Summary: Reverse-engineer the values of a string based on a template
Home-page: https://github.com/yvdlima/pytemplate-reverse
Author: Yuri Vinicius Didone de Lima
Author-email: yuri.vdl@gmail.com
License: MIT License
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3
Description-Content-Type: text/markdown

# pytemplate-reverse

[![PyPI version](https://badge.fury.io/py/pytemplate-reverse.svg)](https://badge.fury.io/py/pytemplate-reverse)
[![Build Status](https://img.shields.io/endpoint.svg?url=https%3A%2F%2Factions-badge.atrox.dev%2Fyvdlima%2Fpytemplate-reverse%2Fbadge%3Fref%3Dmaster&style=flat)](https://actions-badge.atrox.dev/yvdlima/pytemplate-reverse/goto?ref=master)
[![codecov](https://codecov.io/gh/yvdlima/pytemplate-reverse/branch/master/graph/badge.svg)](https://codecov.io/gh/yvdlima/pytemplate-reverse)

A package to "reverse-enginner" simple strings based on a template.

Reverse-engineer a string based on a template, can be usefull to extract information from a generated string when you know how the information will be formated in said string, like the a file name. 

Usage sample:

``` python
from template_reverse import ReverseTemplate

segments = [
    "shrek3_0_600.avi",
    "shrek3_1_560.avi",
    "shrek3_2_780.avi"
]
rt = ReverseTemplate("{video_name}_{segment_id}_{segment_duration_in_secs}.avi")

total_duration = 0

for segment in segments:
    values = rt.reverse(segment)
    print("Checking out movie", values["video_name"], "part ", values["segment_id"])
    total_duration += int(values["segment_duration_in_secs"])

print("Total video duration so far", total_duration)
```

## Build locally

Requires Python 3.

This package is simple enough that it should work with any version. I recommend you to install python using [pyenv](https://github.com/pyenv/pyenv) with [pyenv-virtualenv](https://github.com/pyenv/pyenv-virtualenv). If you are on windows check [pyenv-win](https://github.com/pyenv-win/pyenv-win) out.

### Install 

``` bash
cd /path/to/pytemplate-reverse
pip install . # Thats it :)
```

If you want to develop on it and run tests use the following:

``` bash
pip install -r test-requirements.txt -e .
# `-r test-requirements.txt` Will install the dependencies required to run the tests
# `-e .` Install in editable mode, so you can edit the contents of /src/pytemplate_reverse without having to install the package again to see changes
pytest
```

To get coverage and lint run pytest with the following plugins:

``` bash
pytest --black --cov=template_reverse
```


