Как сделать солнце в качестве первого дня в календаре Python

import calendar

# to set the first weekday to SUNDAY.
calendar.setfirstweekday(calendar.SUNDAY)
print(calendar.month(2020, 10 ))
Alpha