Python Forum
Convert calendarweek into date
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Convert calendarweek into date
#2
Calculate the week from current datetime/date:
import datetime
year, week, day = datetime.datetime.now().isocalendar()
# weekday is from 1 - 7

# converting back to datetime/date
the_date = datetime.date.fromisocalendar(year, week, day)
the_datetime = datetime.datetime.fromisocalendar(year, week, day)
Now getting for date X the start date of the week and the end date of the week:

def get_week(date_or_datetime):
    MONDAY, SUNDAY = 1, 7
    calendar = datetime.date.fromisocalendar
    year, week, _ = date_or_datetime.isocalendar()
    return calendar(year, week, MONDAY), calendar(year, week, SUNDAY)
I assigned inside the function datetime.date.fromisocalendar to calendar.
Just to keep it shorter.
Almost dead, but too lazy to die: https://sourceserver.info
All humans together. We don't need politicians!
Reply


Messages In This Thread
Convert calendarweek into date - by and2handles - Jun-30-2020, 02:03 PM
RE: Convert calendarweek into date - by DeaD_EyE - Jun-30-2020, 02:42 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Compare current date on calendar with date format file name Fioravanti 1 248 Mar-26-2024, 08:23 AM
Last Post: Pedroski55
  Python date format changes to date & time 1418 4 618 Jan-20-2024, 04:45 AM
Last Post: 1418
  Review my code: convert a HTTP date header to a datetime object stevendaprano 1 2,006 Dec-17-2022, 12:24 AM
Last Post: snippsat
  Convert Date to another format lonesoac0 2 1,679 Mar-17-2022, 11:26 AM
Last Post: DeaD_EyE
  Date format and past date check function Turtle 5 4,279 Oct-22-2021, 09:45 PM
Last Post: deanhystad
  How to add previous date infront of every unique customer id's invoice date ur_enegmatic 1 2,244 Feb-06-2021, 10:48 PM
Last Post: eddywinch82
  Convert date integers (ex. 43831) to regular format Galven 2 2,642 Nov-15-2020, 11:38 PM
Last Post: bowlofred
  How to add date and years(integer) to get a date NG0824 4 2,885 Sep-03-2020, 02:25 PM
Last Post: NG0824
  Convert weekly sequences to date and time. SinPy 0 1,451 Nov-23-2019, 05:20 PM
Last Post: SinPy
  convert strings of date to datetime exported from CSV GiorgosPap31 1 3,992 Oct-31-2019, 02:37 PM
Last Post: buran

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020