Work Blog
Notebook
Travel
Recipes
Misc
Code
Websites
Bookmarks
Welcome
Notebook
Django Pages
Building queries in Django and other database-adjacent topics
Building queries in Django and other database-adjacent topics
By Dan Aukes
Database
Django
Queries
Python
External Resources
databases
mariadb:
https://www.digitalocean.com/community/tutorials/how-to-use-mysql-or-mariadb-with-your-django-application-on-ubuntu-14-04
queries
https://docs.djangoproject.com/en/5.2/topics/db/queries/
datetime issues:
timezone missing in a timezone aware site:
https://stackoverflow.com/questions/18622007/runtimewarning-datetimefield-received-a-naive-datetime
convert timezone:
https://stackoverflow.com/questions/5452555/converting-timezone-aware-datetime-to-local-time-in-python#5452709
convert date to datetime:
https://coderivers.org/blog/python-convert-date-to-datetime/
strptime
https://www.digitalocean.com/community/tutorials/python-string-to-datetime-strptime
https://www.analyticsvidhya.com/blog/2024/01/python-datetime-strptime-function/
https://pythonguides.com/convert-string-to-date-python/
django filters, queries, expressions:
https://docs.djangoproject.com/en/6.0/topics/db/examples/many_to_many/
https://docs.djangoproject.com/en/6.0/topics/db/queries/
https://docs.djangoproject.com/en/6.0/ref/models/querysets/
https://docs.djangoproject.com/en/6.0/ref/models/expressions/
https://www.django-rest-framework.org/api-guide/filtering/
filter django items by month
https://www.geeksforgeeks.org/python/how-can-we-filter-a-date-of-a-datetimefield-in-django/
https://dnmtechs.com/filtering-django-queryset-by-specified-month-and-year-in-date-range/
get all months in posts:
https://stackoverflow.com/questions/76265539/categorize-posts-by-months-and-years-in-django
get the year from a datetime object with ExtractYear:
https://stackoverflow.com/questions/49907266/django-extract-only-year-from-date-time-in-queryset
create date string in filter:
https://stackoverflow.com/questions/17085898/conversion-of-datetime-field-to-string-in-django-queryset-values-list/60924664#60924664