Period.
week
Get the week of the year on the given Period.
See also
Period.dayofweek
Get the day component of the Period.
Period.weekday
Examples
>>> p = pd.Period("2018-03-11", "H") >>> p.week 10
>>> p = pd.Period("2018-02-01", "D") >>> p.week 5
>>> p = pd.Period("2018-01-06", "D") >>> p.week 1