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