From e267aee286348be85d28caf8c07dd2cadd0857f6 Mon Sep 17 00:00:00 2001 From: Lacey Henschel Date: Thu, 11 Jul 2024 10:05:27 -0700 Subject: [PATCH] :books: Generate internal readmes --- django/README.md | 1 + python/README.md | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/django/README.md b/django/README.md index 9130a1c..7d95aa6 100644 --- a/django/README.md +++ b/django/README.md @@ -22,5 +22,6 @@ - [Using `defer()` to limit the data you get from your models](defer.md) - [Using `django-admin-env-notice` to add an envioronment notice to the frontend](add_env_banner_to_frontend.md) - [Using `django-countries`](django_countries.md) +- [Using `iterator()` to loop through large querysets efficiently](iterator.md) - [Using inline formsets with `inlineformset_factory`](using_inline_formsets.md) - [Why won't my Django file URLs come back signed from S3?](aws_signed_urls.md) \ No newline at end of file diff --git a/python/README.md b/python/README.md index 8d9c870..2b1f306 100644 --- a/python/README.md +++ b/python/README.md @@ -5,4 +5,5 @@ - [Generate a markdown file with a table of contents in Python](generate-toc.md) - [Generating a clickable table-of-contents for each directory in my TILs](generate_toc_for_subdirectory.md) - [How to sort a Python dictionary by key or value](sort_dictionary.md) -- [How to sort a Python dictionary by multiple values](sort_dict_multiple_keys.md) \ No newline at end of file +- [How to sort a Python dictionary by multiple values](sort_dict_multiple_keys.md) +- [Using `Decimal.quantize`](decimal_quantize.md) \ No newline at end of file