find the first date entry for a month python dates code example
Example: first day of the month python
from datetime import datetime
datetime.today().replace(day=1)
from datetime import datetime
datetime.today().replace(day=1)