Andrea F
Andrea F
In version 1.2.0 this works fine: ``` import datetime import pytz dateparser.parse( "3pm", settings={ "TIMEZONE": "America/Los_Angeles", "TO_TIMEZONE": "America/Los_Angeles", "RETURN_AS_TIMEZONE_AWARE": True, "RELATIVE_BASE": datetime.datetime.now(), "PREFER_DATES_FROM": "future"}) ``` but this returns `None`: ```...
I need to be able to keep the credentials for one project/client separate from others. Though the documentation says the config file is stored in the user's home directory "by...