GithubHelp home page GithubHelp logo

Comments (2)

safwanrahman avatar safwanrahman commented on May 23, 2024 1

Yap. In python 3.x, by default it is byte rather than string. In python 2.x, its string.
I dont know python 3.x and I think the approach you have taken, is suitable for both python 2.x and python 3.x

from django-webpush.

arogachev avatar arogachev commented on May 23, 2024

I investigated issue more deeply. It's not about request.body, it's always a byte string. The reason is json.loads() in Python 3 allows only strings:

if not isinstance(s, str):
    raise TypeError('the JSON object must be str, not {!r}'.format(s.__class__.__name__))

Check this SO question for example:

The request body, request.body, is a byte string. In Python 3, json.loads() will only accept a unicode string, so you must decode request.body before passing it to json.loads().

body_unicode = request.body.decode('utf-8')
body_data = json.loads(body_unicode)

In Python 2, json.loads will accept a unicode string or a byte sting, so the decode step is not necessary.

So decoding to unicode string will work for both Python 2 and 3 (even for version 2 is not required), also this is shorter and more elegant solution in my opinion.

But it will be better to have some tests.

from django-webpush.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.