As an introduction into Luigi, I am following this tutorial with some modifications, e.g. installation using conda.
The problems and solutions described in the examples below have led to the development of sciluigi,
| from datetime import datetime | |
| from pytz import timezone | |
| format = "%Y-%m-%d %H:%M:%S %Z%z" | |
| print("----------------DateTime to timezone Local time---------------") | |
| date_str = "2018-12-17 17:04:10" | |
| datetime_obj_naive = datetime.strptime(date_str, "%Y-%m-%d %H:%M:%S") |
As an introduction into Luigi, I am following this tutorial with some modifications, e.g. installation using conda.
The problems and solutions described in the examples below have led to the development of sciluigi,