TRoboto / datacamp-downloader

Download your completed courses on Datacamp easily!
MIT License
182 stars 51 forks source link

Python 3.9 AttributeError: 'Thread' object has no attribute 'isAlive' #22

Closed eekmagik closed 3 years ago

eekmagik commented 3 years ago

When I run python downloader.py -t YOUR_DATACAMP_AUTH_TOKEN -l C, I receive AttributeError: 'Thread' object has no attribute 'isAlive'

I changed isAlive to is_alive on line 115 of downloader.py and everything works.

isAlive is deprecated as of Python 3.9, use is_alive instead.

TRoboto commented 3 years ago

Closing this issue since it has been solved.