D
D
deadshumz2020-12-23 22:47:12
Python
deadshumz, 2020-12-23 22:47:12

Changing the design of the vk api group?

Is it possible to change the design of the group depending on the time of day in any time zone, if so, how?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
I
Ivan, 2020-12-24
@mlneko

datetime module
or you can use time

while True:
    hour = time.time().tm_hour
    if hour >= 0 and hour =< 6 or hour < 24 and hour >= 20:
        #устанавливаешь ночную обложкy
    else: ...
    time.sleep(3600)

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question