Skip to content

fix: consider months and days in years_old #11234

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
TODAY = datetime.utcnow()
  • Loading branch information
cclauss authored Jan 12, 2024
commit 0c0b057be4cc625d7919e171b4ef1723e8b6579c
2 changes: 1 addition & 1 deletion web_programming/get_top_billionaires.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
from rich import table as rich_table

LIMIT = 10
TODAY = datetime.utc_now()
TODAY = datetime.utcnow()
API_URL = (
"https://www.forbes.com/forbesapi/person/rtb/0/position/true.json"
"?fields=personName,gender,source,countryOfCitizenship,birthDate,finalWorth"
Expand Down