Files
addon/lib/PTN/__init__.py
2020-04-27 20:31:31 +02:00

16 lines
291 B
Python
Executable File

#!/usr/bin/env python
# -*- coding: utf-8 -*-
from .parse import PTN
# https://github.com/divijbindlish/parse-torrent-name
__author__ = 'Divij Bindlish'
__email__ = 'dvjbndlsh93@gmail.com'
__version__ = '1.1.1'
__license__ = 'MIT'
ptn = PTN()
def parse(name):
return ptn.parse(name)