32👍
✅
Most web framework consider string representation as utf-8, so bytes in Python 3 (like Django, and Pyramid). In python3 needs to decode(‘utf-8’) for body in:
req = json.loads( request.body.decode('utf-8') )
- If I send a python 'Signal' object from a function, what should the "sender" argument be?
- Django does django have an automatic timestamp create/update field like cakephp?
- Is there any way to use GUIDs in django?
- About index and primary key in SQL?
Source:stackexchange.com