60 lines
2 KiB
Python
60 lines
2 KiB
Python
# -*- coding: utf-8 -*-
|
|
|
|
# Copyright(C) 2012 Romain Bignon
|
|
#
|
|
# This file is part of weboob.
|
|
#
|
|
# weboob is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU Affero General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# weboob 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 Affero General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU Affero General Public License
|
|
# along with weboob. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
import urllib
|
|
|
|
from weboob.capabilities.translate import ICapTranslate, Translation, TranslationFail, LanguageNotSupported
|
|
from weboob.tools.backend import BaseBackend
|
|
from weboob.tools.browser import StandardBrowser
|
|
|
|
|
|
__all__ = ['EbonicsBackend']
|
|
|
|
|
|
class EbonicsBackend(BaseBackend, ICapTranslate):
|
|
NAME = 'ebonics'
|
|
MAINTAINER = 'Romain Bignon'
|
|
EMAIL = 'romain@weboob.org'
|
|
VERSION = '0.d'
|
|
LICENSE = 'AGPLv3+'
|
|
DESCRIPTION = u'English to Ebonics translation service'
|
|
BROWSER = StandardBrowser
|
|
|
|
def translate(self, lan_from, lan_to, text):
|
|
if lan_from != 'English' or lan_to != 'Nigger!':
|
|
raise LanguageNotSupported()
|
|
|
|
with self.browser:
|
|
data = {'English': text.encode('utf-8')}
|
|
doc = self.browser.location('http://joel.net/EBONICS/Translator', urllib.urlencode(data))
|
|
try:
|
|
text = doc.getroot().cssselect('div.translateform div.bubble1 div.bubblemid')[0].text
|
|
except IndexError:
|
|
raise TranslationFail()
|
|
|
|
if text is None:
|
|
raise TranslationFail()
|
|
|
|
translation = Translation(0)
|
|
translation.lang_src = unicode(lan_from)
|
|
translation.lang_dst = unicode(lan_to)
|
|
translation.text = unicode(text).strip()
|
|
|
|
return translation
|