Пример #1
0
def test_strip_accents():
    assert leaf.strip_accents(u'ЁёЇїIiӒӓЎўй') == u'ЕеІіIiАаУуй', "Strip accents from a string"
Пример #2
0
def test_strip_accents():
    assert leaf.strip_accents(
        u'ЁёЇїIiӒӓЎўй') == u'ЕеІіIiАаУуй', "Strip accents from a string"
Пример #3
0
def get_document(raw_html_schedule):
    return leaf.parse(leaf.strip_symbols(leaf.strip_accents(show(raw_html_schedule))))
Пример #4
0
def get_document(raw_html_schedule):
    return leaf.parse(
        leaf.strip_symbols(leaf.strip_accents(show(raw_html_schedule))))