Follow

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use
Contact

Python pendulum module returning wrong week number

The way iam trying to get the week number

import pendulum
from datetime import date

dt = pendulum.parse(str(date.today())) 

week = dt.week_of_month

print(dt)

print(week)

Result

2023-01-19T00:00:00+00:00

MEDevel.com: Open-source for Healthcare and Education

Collecting and validating open-source software for healthcare, education, enterprise, development, medical imaging, medical records, and digital pathology.

Visit Medevel

-48

The week number is -48 here, please help me to get the correct week number of the month

>Solution :

As @God is One mentioned in the above answer, there’s an issue with the current version and the rest of the versions in the 2.1.x series. But then when I tried to downgrade it to 2.0.5, this worked fine and it returned the expected value.

Maybe that’s the only option as of now if you’re to go with this library.

Add a comment

Leave a Reply

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use

Discover more from Dev solutions

Subscribe now to keep reading and get access to the full archive.

Continue reading