TRoboto / datacamp-downloader

Download your completed courses on Datacamp easily!

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

eekmagik opened this issue · comments

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.

Closing this issue since it has been solved.