16 lines
291 B
Python
Executable File
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)
|