parse torrent name

This commit is contained in:
marco
2020-04-27 20:31:31 +02:00
parent 288b900350
commit e9f6987324
5 changed files with 226 additions and 15 deletions
+15
View File
@@ -0,0 +1,15 @@
#!/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)