Posts by Eduardo Balbinot • 56 points
3 posts
-
2
votes1
answer3528
viewsA: Typeerror: expected string or bytes-like Object Datefield
As it became a little difficult to know at what point you are receiving this error, I try to help you reproduce the same scenario (successfully) with a model called Test, as follows: data =…
-
0
votes1
answer196
viewsA: Problem with Celery and Django/Python
Your task takes a string parameter. So, to schedule it, you must pass this parameter through the args key, as below: 'verify_post_date': { 'task': 'core.verify_post_date', 'schedule':…
-
2
votes2
answers2633
viewsA: What is the difference between the MVC architecture and Django’s MTV?
This is just a more conceptual issue. Django developers understand that the controller is the framework itself. If we stop to think this makes sense, since when you access some url of your…