django-rest-witchcraft
django-rest-witchcraft copied to clipboard
Django REST Framework integration with SQLAlchemy
Pull Request #66 refactored by [Sourcery](https://sourcery.ai/github/). Since the original Pull Request was opened as a fork in a contributor's repository, we are unable to create a Pull Request branching from...
This can go wrong if you use a list to store validators. With shallow copy the validators list is maintained even if a new request is being processed. The result...
I'm a little confused about the intended way to use `allow_create` and `allow_nested_updates`. From what I can understand `allow_create` means that if there isn't a related record a blank model...
I have a class like this one: ```python from sqlalchemy import CHAR, Column, ForeignKey, String, TIMESTAMP, Table, text from sqlalchemy.dialects.mysql import INTEGER, LONGBLOB, LONGTEXT, SMALLINT class CSITECONTENT(Base): __tablename__ = 'C_SITE_CONTENT'...
Hi all, I'm struggling to understand the workflow of the documentation. 1. Is the first model example the `models.py` models, or is that inside `serializers.py`? 2. Do I import that...
I got a problem using this implementation. All insert queries happens on the console correctly. However, the commit is not being called and data never gets flushed into the database....