This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 = [ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.""" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from django.db.models import IntegerField, Subquery | |
class SubqueryCount(Subquery): | |
template = "(SELECT COUNT(*) FROM (%(subquery)s) _count)" | |
output_field = IntegerField() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Code coverage badges |