Question:
Am I not understanding how db.prefix() works correctly? I’m getting no matches on line 55, even when the date is entered correctly.
Repl link:
https://replit.com/@KurtHoernig/Day62100Days#main.py
year = input('Year? > ')
month = input('Month? > ')
day = input('Day? > ')
date = (f'{year}-{month}-{day}')
print(f'Searching for: {date}')
time.sleep(1)
matches = db.prefix(date)