I have
import arrow s = \'2015/12/1 19:00:00\' tz = \'Asia/Hong_Kong\'
How can I parse this with Arrow such that I get an Arrow object with the
This is working for me as of 0.10.0:
import arrow s = '2015/12/1 19:00:00' tz = 'Asia/Hong_Kong' arrow.get(s, 'YYYY/M/D HH:mm:ss', tzinfo=tz) #
However, arrow.get('2018-01-29 14:46', tzinfo='US/Central') (i.e. without the format string) ignores the tzinfo parameter.
arrow.get('2018-01-29 14:46', tzinfo='US/Central')
tzinfo