mirror of
https://github.com/SickGear/SickGear.git
synced 2024-11-15 01:15:05 +00:00
e56303798c
Initial SickGear for Python 3.
39 lines
1.2 KiB
Python
39 lines
1.2 KiB
Python
#
|
|
# This file is part of SickGear.
|
|
#
|
|
# SickGear is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# SickGear is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with SickGear. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
from __future__ import with_statement
|
|
|
|
import threading
|
|
import sickgear
|
|
|
|
|
|
class ProperSearcher(object):
|
|
def __init__(self):
|
|
self.lock = threading.Lock()
|
|
self.amActive = False
|
|
|
|
@staticmethod
|
|
def is_enabled():
|
|
# type: (...) -> bool
|
|
return sickgear.DOWNLOAD_PROPERS
|
|
|
|
def run(self):
|
|
self.amActive = True
|
|
|
|
propersearch_queue_item = sickgear.search_queue.ProperSearchQueueItem()
|
|
sickgear.search_queue_scheduler.action.add_item(propersearch_queue_item)
|
|
|
|
self.amActive = False
|