使用bidi双向传送model.txt

时间:2019-04-20 12:37:26

标签: python arabic bidi farsi

我想在代码中使用model.txt的行,但是行中的所有单词都是波斯语(从右到左)。我使用此代码来纠正它们,但它给了我错误。 我知道如何解决错误,但是如果我将行更改为字符串,则无法纠正其形状和方向。有帮助吗?

import arabic_reshaper

from bidi.algorithm import get_display


def readFile():
    with open('D:/visual stadio/python/captcha maker/test/model.txt','r') as file:
        lines= file.readlines()

    reshaped_text = arabic_reshaper.reshape(lines) 
       #if i use reshaped_text = arabic_reshaper.reshape(str(lines)) it will 
       #work fine but it will give me this answer: ['سلام\n', 
       #'سلامس\n', 'آدامس\n', 'پنیر\n', 'چتر\n','پاوه'] this are my words in model.txt but not fixed.
    bidi_text = get_display(reshaped_text)         

    return bidi_text 
bidi_text=readFile()
print(bidi_text)

1 个答案:

答案 0 :(得分:0)

解决了! 我为我的文件使用编码,它是固定的! 感谢我的朋友阿明告诉我我的错误。

import arabic_reshaper
import codecs
from bidi.algorithm import get_display


def readFile():
    with open('D:/visual stadio/python/captcha maker/test/model.txt','r',encoding='utf8') as file:
        lines= file.readlines()
        lista=[]

        for line in lines:
                reshaped_text = arabic_reshaper.reshape(line) 
                bidi_text = get_display(reshaped_text)         
                lista.append(bidi_text)
        return lista
lista=readFile()
print(lista)