Skip to content

Instantly share code, notes, and snippets.

View tim-schilling's full-sized avatar

Tim Schilling tim-schilling

View GitHub Profile
@tim-schilling
tim-schilling / modelform_validate_unique.py
Created March 18, 2025 16:19
Validate UniqueConstraint on a non-field for a Django ModelFOrm
class MyModelForm(ModelForm):
def validate_unique(self):
"""
Call the instance's validate_unique() method and update the form's
validation errors if any were raised.
"""
exclude = self._get_validation_exclusions()
# Don't exclude validation constraints on the basis of the Endpoint
# field. The value is set before .is_valid() is called, so we want
@tim-schilling
tim-schilling / lettuce_to_availabilities.py
Created February 3, 2025 15:59
Script from Claude to convert lettuce meeting poll to UTC hourly availabilities
from datetime import datetime, timedelta
import pytz
# Reference point: Monday at midnight UTC
# TODO: Update to the starting time of the meetup poll.
reference_point = datetime(2025, 2, 16, tzinfo=pytz.UTC)
# TODO: You'll need to reshape the availabilities from the lettuce
# meet GraphQL response to match the following
availabilities = [
@tim-schilling
tim-schilling / availability_parser.py
Last active January 31, 2025 14:26
Djangonaut Space applicant availability parser
import csv
DAYS = ["Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Sunday"]
# Monday is 0 and Sunday is 6 for weekday.
SHIFTS = {
day: i*24
for i, day in enumerate(DAYS)
}
MAX_HOURS = 168 # 24 * 7
@tim-schilling
tim-schilling / admin_meta.py
Last active September 20, 2024 07:55
Helper classes and a monkeypatch to always register a model's field in the admin as raw_id_fields. This is useful when you have models with 1000+ rows to avoid massive select elements.
from functools import wraps
from django.contrib import admin
class AdminMeta:
"""
Use this Meta class on a model since we can't add
custom fields to Model.Meta
@tim-schilling
tim-schilling / update_or_create only on changes.py
Created May 2, 2024 19:27
Django update_or_create method that will only update when there are changes
import warnings
from django.db import models, transaction
from django.db.models.fields import Field
from django.db.models.utils import resolve_callables
class QuerySet(models.QuerySet):
"""A QuerySet with a conditional update or create method."""
@tim-schilling
tim-schilling / subquery_count.py
Created September 8, 2023 18:24
Subquery Count
from django.db.models import IntegerField, Subquery
class SubqueryCount(Subquery):
template = "(SELECT COUNT(*) FROM (%(subquery)s) _count)"
output_field = IntegerField()
@tim-schilling
tim-schilling / gist:827e3892ebbe5b82355f9a7257bc0f6d
Created June 21, 2023 14:12
Continuning 2023-2024 PSF Board nomination links
https://www.python.org/nominations/elections/2021-python-software-foundation-board/nominees/debora-azevedo/
https://www.python.org/nominations/elections/2021-python-software-foundation-board/nominees/tania-allard/
https://www.python.org/nominations/elections/2022-python-software-foundation-board/nominees/kushal-das/
https://www.python.org/nominations/elections/2022-python-software-foundation-board/nominees/jannis-leidel/
https://www.python.org/nominations/elections/2021-python-software-foundation-board/nominees/joannah-nanjekye/
https://www.python.org/nominations/elections/2022-python-software-foundation-board/nominees/dawn-wages/
https://www.python.org/nominations/elections/2022-python-software-foundation-board/nominees/simon-willison/
@tim-schilling
tim-schilling / admin.py
Last active November 11, 2022 16:38
Django admin annotate the page's objects rather than the queryset
# There will come a time when you want to show more information on the admin
# list view, but performing the annotation on the entire queryset kills
# performance. These classes will allow you to apply a QuerySet annotation
# to only those objects that are rendered on the current page.
# Constraints:
# - This adds one additional query to your request.
# - The annotated columns can't be used in ordering.
# - You need to define functions to access the annotated fields on the object.
Code coverage badges