В общем написал программу и хотел выложить её,но не тут то было!
При компиляции появляется вот эта ошибка -
AttributeError: 'str' object has no attribute 'items'
Вот код программы -
from tkinter import *
from gtts import gTTS
root = Tk()
root.title("Create Sound")
root.geometry("400x350")
def save_song():
text = gTTS(text=entry_text.get(),lang="ru")
text.save(entry_save.get())
entry_text = Entry()
entry_text.insert(0,'Текст')
entry_text.place(relx=.3,rely=.1, anchor="c")
entry_save = Entry()
entry_save.insert(0,'Имя файла')
entry_save.place(relx=.3,rely=.2, anchor="c")
savesong = Button(text="Сохранить",command=save_song,background="#000000",foreground="#ffffff",font="Arial 15")
savesong.place(relx=.4, rely=.3, anchor="c")
info = Label(font="Arial 10",text="Имя файла должно заканчиваться на .mp3\n\nФайл сохранится в папку с программой!")
info.place(relx=.5,rely=.5,anchor="c")
root.mainloop()
Спасайте!
Уже не первый раз такая ошибка
Компилирую с pyinstaller
компилировал вот этой командой - pyinstaller -w -F -i"Тут я указал путь к иконке" sound.py