I'm trying to create a simple function that allows a user to input basic information that will change the values of a datetime object, and I'd like to find a way to make it as clean as possible by using a variable as a keyword. This can easily be done a different way, but I figured it'd be useful to know how to replace pre-set keywords.
The datetime object has a .replace() method that takes any time value as a keyword:
datetime.replace([year[, month[, day[, hour[, minute[, second[, microsecond[, tzinfo]]]]]]]])
But I want to allow the user to specify how much of which kind of time (e.g., 2 days; 4 hours; 1 month).
I'm trying to replace any of the above keywords up to "minute" with whatever the user inputs, which is stored in the time_type variable, but I get "TypeError: 'time_type' is an invalid keyword argument for this function".
start_time = datetime.datetime(2016, 09, 16, 15, 30)
def change_time(integer, time_string):
time_type = time_string.replace("s","") # de-pluralizes input
new_time = getattr(start_time, time_type) + integer
print(start_time.replace(time_type=new_time))
change_time(2, "days")
This should print the new start_time, which is (2016, 09, 18, 15, 30), but I just get an error.