I have timezone string 'CST' and try to use it within pytz.
Unfortunately this fails:
cst = pytz.timezone('CST')
File "/home/user/venv/numba/lib/python3.6/site-packages/pytz/__init__.py", line 181, in timezone
  raise UnknownTimeZoneError(zone)
pytz.exceptions.UnknownTimeZoneError: 'CST'
What do I have to do to avoid this error?
 
     
    