ウィンドウで入力した文字列で検索した画像を取得し、その文字列のフォルダ名に入れたいです。一度作ってみたのですが、エラーで動きません。助けてくださいお願いします。
python
1import tkinter as tk 2from icrawler.builtin import BingImageCrawler 3 4root = tk.Tk() 5root.geometry("400x240") 6 7def getTextInput(): 8 9 test=textExample.get("1.0","end") 10 crawler = BingImageCrawler(storage={"root_dir":test}) 11 crawler.crawl(keyword=test, max_num=100) 12 13 14textExample=tk.Text(root, height=10) 15textExample.pack() 16btnRead=tk.Button(root, height=1, width=10, text="Read", 17 command=getTextInput) 18 19btnRead.pack() 20 21root.mainloop()
山と入力すると以下のエラーが出ました。
error
1OSError: [Errno 22] Invalid argument: '山\n\000001.jpg'
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/12/26 07:27