You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Goal was to delete downloaded Youtube video after watching them, but many have unusual characters in the file name and always generate a crash while trying to delete them.
Example:
:[DELETE] - Movie - 8H Rain Inside Car 🌧️ Harry Potter ASMR Ambience 🌧️ Flying Car with Harry & R on - Back to Hogwarts - Unknown - Played <1 day ago - Play Count: 1 - Created <1 day ago - Favorite: False - WhiteTag: False - BlackTag: False - Whitelisted: False - Blacklisted: True - MovieID: 846917
Traceback (most recent call last):
File "C:\Users\Richard\Desktop\MUMC-MUMC\mumc.py", line 8595, in
movie_dict,movie_found=get_media_items('movie',config_dict,movie_dict,user_key)
File "C:\Users\Richard\Desktop\MUMC-MUMC\mumc.py", line 6037, in get_media_items
build_print_media_item_details(item,mediaType,output_state_dict)
File "C:\Users\Richard\Desktop\MUMC-MUMC\mumc.py", line 5043, in build_print_media_item_details
print_byType(':[DELETE] - ' + item_output_details,print_media_delete_info)
File "C:\Users\Richard\Desktop\MUMC-MUMC\mumc.py", line 107, in print_byType
appendTo_DEBUG_log(string_to_print,1)
File "C:\Users\Richard\Desktop\MUMC-MUMC\mumc.py", line 99, in appendTo_DEBUG_log
save_file(str(string_to_save),GLOBAL_DEBUG_FILE_NAME,"a")
File "C:\Users\Richard\Desktop\MUMC-MUMC\mumc.py", line 1476, in save_file
f.write(dataInput)
File "C:\Users\Richard\AppData\Local\Programs\Python\Python310\lib\encodings\cp1252.py", line 19, in encode
return codecs.charmap_encode(input,self.errors,encoding_table)[0]
UnicodeEncodeError: 'charmap' codec can't encode characters in position 40-41: character maps to
The text was updated successfully, but these errors were encountered:
@netcaretx Looks like you have debug on and it is crashing when it is trying to write Cyrillic and emojis to the debug log. If debug is not needed please turn it off.
Python uses unicode by default. So it should be able to handle Cyrillic and emjoi without any issues. As you can see in your post the "cloudy-rainy" emoji printed.
Goal was to delete downloaded Youtube video after watching them, but many have unusual characters in the file name and always generate a crash while trying to delete them.
Example:
:[DELETE] - Movie - 8H Rain Inside Car 🌧️ Harry Potter ASMR Ambience 🌧️ Flying Car with Harry & R on - Back to Hogwarts - Unknown - Played <1 day ago - Play Count: 1 - Created <1 day ago - Favorite: False - WhiteTag: False - BlackTag: False - Whitelisted: False - Blacklisted: True - MovieID: 846917
Traceback (most recent call last):
File "C:\Users\Richard\Desktop\MUMC-MUMC\mumc.py", line 8595, in
movie_dict,movie_found=get_media_items('movie',config_dict,movie_dict,user_key)
File "C:\Users\Richard\Desktop\MUMC-MUMC\mumc.py", line 6037, in get_media_items
build_print_media_item_details(item,mediaType,output_state_dict)
File "C:\Users\Richard\Desktop\MUMC-MUMC\mumc.py", line 5043, in build_print_media_item_details
print_byType(':[DELETE] - ' + item_output_details,print_media_delete_info)
File "C:\Users\Richard\Desktop\MUMC-MUMC\mumc.py", line 107, in print_byType
appendTo_DEBUG_log(string_to_print,1)
File "C:\Users\Richard\Desktop\MUMC-MUMC\mumc.py", line 99, in appendTo_DEBUG_log
save_file(str(string_to_save),GLOBAL_DEBUG_FILE_NAME,"a")
File "C:\Users\Richard\Desktop\MUMC-MUMC\mumc.py", line 1476, in save_file
f.write(dataInput)
File "C:\Users\Richard\AppData\Local\Programs\Python\Python310\lib\encodings\cp1252.py", line 19, in encode
return codecs.charmap_encode(input,self.errors,encoding_table)[0]
UnicodeEncodeError: 'charmap' codec can't encode characters in position 40-41: character maps to
The text was updated successfully, but these errors were encountered: