django-taggit-serializer icon indicating copy to clipboard operation
django-taggit-serializer copied to clipboard

The Django Taggit Serializer Created for the Django REST Framework

Results 26 django-taggit-serializer issues
Sort by recently updated
recently updated
newest added

Hey, Thanks for creating this serializer. I'm getting deprecation warnings when running my tests, so I thought I'll quickly fix it. Cheers

Hello, The only thing I'm personally see wrong with Treebeard and Django 3.0 is that 3.0 officially deprecated ugettext_lazy, and if you run python -Wall, you'll get a ton of...

I use drf-yasg to create the swagger page,but it shows that tags filed is a string. And I tried to make a new filed by: class MyTagListSerializerField(TagListSerializerField, serializers.ListField): pass and...

Do to some depreciated methods this no longer works, is someone actively maintaining this or should I create a fork?

Since there has been no activity since 2018, I have created a new fork where I'll be maintaining this. Feel free to open new pull requests. https://github.com/adriangzz/dj-taggit-serializer

``` django-taggit==2.0.0 django-taggit-serializer==0.1.7 ``` ``` class Blabla(TaggitSerializer, serializers.ModelSerializer): tags = TagListSerializerField() ... ``` ``` ...site-packages/taggit_serializer/serializers.py", line 108, in _save_tags getattr(tag_object, key).set(*tag_values) TypeError: set() takes 2 positional arguments but 3 were...

When I try to create object from test client I get this error `{'tag': ['Invalid json list. A tag list submitted in string form must be valid json.']}`. Here is...

How to make taggit tags api endpoints with taggit-serializer