-
Fetch input url from user through a webpage and then create QR code based on it. Display it in the same webpage.
-
Most apps use global settings named `APPNAME_foo`.
A fixture `app_settings` could create a renaming proxy in which `app_settings.FOO` maps to `settings.APPNAME_FOO`.
Also , the fixture could det…
-
Which framework should be learned after python?
-
For my current job we need bulk upsert of records, and I'm thinking of forking your package and implementing bulk_upsert myself. If/when I do that, I'd like to do it in the manner that's most likely t…
-
Let's assume I have a model with an autogenerated field:
```python
token = models.CharField(
verbose_name=_("token"),
help_text=_("Auto-generated token"),
max_length…
-
Hey Richard,
Kindly upgrade to boto3? Thank you.
https://django-storages.readthedocs.io/en/latest/backends/amazon-S3.html
Migration from the boto-based to boto3-based backend should be straight…
-
Hello everyone, I got inspiration from a code over internet and I subclassed the Pipeline Storage to avoid the raise of the ValueError in case of problem processing the css.
```
import logging
from p…
-
@baldrige is documenting the business logic; transactions already exist as models, now we just need to use signals and post-save hooks to do as much work as possible for each of the transaction types.
-
Hello. Do you plan to add Mailtrap as a supported ESP?
https://mailtrap.io/
-
Hi,
How possible to filter on multiple fields with OR condition!?
For example:
`first_name = foo OR last_name = bar`
Equivalent to:
`model.objects.filter(Q(first_name=foo) | Q(last_name=bar))`