Skip to main content

Objects representing a (non-ISO) week

Project description

CalWeek class

The calweek module provide the class CalWeek. Instances represent specific weeks spanning 7 days Sunday to Saturday except weeks at the year beginning/end may be shorter. There are 53 or 54 numbered weeks in a year. Week 1 is always starts on January 1 of the year.

This is a traditional week number system different from the ISO 8601 standard. ISO 8601 week numbering is now more predominate, but still sometimes software needs to work with the old system.

For ISO 8601 week support in Python, use the isoweek module on which this code was based.

The CalWeek instances are light weight and immutable with an interface similar to the datetime.date objects. Example code:

from calweek import CalWeek
w = CalWeek(2011, 20)
print "Week %s starts on %s" % (w, w.day(0))

print "Current week number is", CalWeek.thisweek().week
print "Next week is", CalWeek.thisweek() + 1

weeknum() function

The calweek module also includes a weeknum() function compatible with Microsoft Excel's WEEKNUM formula function.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

calweek-0.4.2-py2.py3-none-any.whl (5.3 kB view hashes)

Uploaded Python 2 Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page