Instagrapi Error
- Κυριακή, 7 Ιανουαρίου 2024 - 5:12 μ.μ. -
Καλησπέρα,
Αν το Instagram.ipynb σας βγάζει το παρακάτω error:
AttributeError: 'pydantic_core._pydantic_core.Url' object has no attribute 'decode'
Η λύση είναι να αλλάξετε τις 2 παρακάτω γραμμες:
cl.video_download_by_url(post.video_url, filename=str(count), folder='cristiano')
cl.photo_download_by_url(post.thumbnail_url, filename=str(count), folder='cristiano')
σε:
cl.video_download_by_url(str(post.video_url), filename=str(count), folder='cristiano')
cl.photo_download_by_url(str(post.thumbnail_url), filename=str(count), folder='cristiano')
To Error αυτό δεν εμφανίζεται σε όλους, είναι πιο πιθανό να σας βγει αν δουλεύτε σε Google Colab ή σε Mac
T