All Posts Create a Post
Django Standard API Response Middleware for DRF
As you can see, if you using django-rest-framework, you will found many different response format. This middleware to solve all of these problems with implement the Standard API Response. All …
How to implement the ForeignKey for multi databases Django
Previously i had confused how to handle this problem, this problem also already asked by someone on stackoverflow (Cross Database foreign key error) and has the best answered by someone …
Simply how to fix .rst (reStructuredText) for PyPi
Hello guys, this night i want to share simply tutorial how to fix .rst (reStructuredText) format for PyPi. This problem simple but important. previously, i was confused to handle this …
Custom redirect urls django
Example in this problem we need redirect the url http://localhost:8000/a/b/C/123/4/5/ to http://localhost:8000/abC12345 without / slash. 1. In your views.py from django.http import HttpResponse from django.views.generic.base import RedirectView from django.core.urlresolvers import …
E11000 duplicate key error index in mongodb
E11000 duplicate key error index in mongodb. I found this error after migrating my field from “unique” to “non-unique”. And in this problem we use mongoengine for flask. First, i …
How to minify HTML output in Django
So, you want to compress the size of the HTML that Django generates? Here is the Django way to do it. In order to do this, you’ll have to write …
Remove all files .pyc with recrusive method
Remove all files .pyc with recrusive method - This method simple but important. Example in your project dir is like this: project_dir/ __init__.py __init__.pyc something.py something.pyc ... core/ __init__.py __init__.pyc …
Django: Remove Duplicates Filter for Related Posts
Django: Remove Duplicates Filter for Related Posts. In yourapp/models.py class Post(models.Model): title = models.CharField(max_length=200) slug = models.SlugField(max_length=200, unique=True) tags = models.ManyToManyField('Tag') In yourapp/views.py class DetailPostView(generic.DetailView): model = Post template_name = …
Filter and Count User was Joined by Date Joined
Filter and Count User was Joined by Date Joined. This qustion hasbeen asked with someone in https://www.facebook.com/groups/DjangoID/permalink/1269996159681000/, he asked, “How to grouping and count data by date_joined from User models? …
changewords - Simply python tool to change or replace the text string in the files
changewords is Simply python tool to change or replace the text string in the files. This tool pretty nice for programmers if somehow they want to replace/change their codes for …
- 1
- 2