11 lines
193 B
Python
11 lines
193 B
Python
#!/usr/bin/env python3.6
|
|
# -*- encoding: utf-8 -*-
|
|
|
|
"""Python Torrent Searcher/Scraper."""
|
|
|
|
from sys import path
|
|
from os.path import dirname
|
|
path.append(dirname(__file__))
|
|
|
|
__version__ = '0.1'
|