16 lines
256 B
Python
16 lines
256 B
Python
# -*- Mode: Python; -*-
|
|
# -*- coding: utf-8 -*-
|
|
# vi:si:et:sw=2:sts=2:ts=2
|
|
|
|
from urllib import quote
|
|
import re
|
|
|
|
from BeautifulSoup import BeautifulSoup
|
|
|
|
|
|
def search(query):
|
|
'''search for torrents on scrapetorrent
|
|
'''
|
|
torrents = []
|
|
return torrents
|
|
|