ricardorodrigues-ca / zoom-recording-downloader

Downloads and organizes all cloud recordings from your Zoom Business account
MIT License
124 stars 63 forks source link

ZoneInfo Error #53

Open mrjhnsn opened 3 months ago

mrjhnsn commented 3 months ago

Traceback (most recent call last): File "zoom-recording-downloader.py", line 27, in from zoneinfo import ZoneInfo ModuleNotFoundError: No module named 'zoneinfo'

Fixed by editing line 27: from backports.zoneinfo import ZoneInfo

behanw commented 2 months ago

Zoneinfo was introduced in Python3.9. If you can get it to work with backports, it means you're likely using a version of python which is version 3.8 or older.

https://devguide.python.org/versions/

You'll notice that python 3.9 is very old and only gets security updates now (though only until 2025-10). And python 3.8 is end-of-life in 2024-10 (which is in only 3 months at the time I'm writing this).

I would respectfully suggest that you update the version of Python you're using, as the patch you're proposing only benefits outdated or EOL versions of Python.

My vote is to Nak your patch and close this issue.