You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

16 lines
281 B

import datetime
import enum
PANERA_DATE_FORMAT = "%Y-%m-%d"
BASE_URL = "https://pnra.panerabread.com/boh/self_service/schedule/week/{date}"
WEEK = datetime.timedelta(days=7)
class WEEKDAYS(enum.IntEnum):
MO = 0
TU = 1
W = 2
TH = 3
F = 4
S = 5
SU = 6