Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

simplejson optional #167

Closed
j-walker23 opened this issue Oct 12, 2019 · 5 comments
Closed

simplejson optional #167

j-walker23 opened this issue Oct 12, 2019 · 5 comments

Comments

@j-walker23
Copy link

Hello, great lib. Super nice and easy.

Any chance simplejson dependency can be made optional, pretty please?

Apparently everything in my app uses simplejson if it exists, and I can't figure out the endless decode errors.

Thank you.

@ej2
Copy link
Owner

ej2 commented Oct 12, 2019

Not sure if that is possible. Maybe I can help with your problem. If you will add your error to this issue, I will take a look.

@j-walker23
Copy link
Author

This was super confusing because the errors were happening in places I was already catching and sometimes expecting a JSONDecodeError.

Basically, none of my code places like below work anymore.

  from json import JSONDecodeError
  try:
    data = json.loads(data)
  except JSONDecodeError:
    pass

I would have to change them all to simplejson.errors.JSONDecodeError.

From my reading, simplejson is not used anymore in python3. And all major libs at most, make it optional.

Or remove it entirely.
psf/requests#3052

@ej2 ej2 closed this as completed Mar 6, 2023
@pablogamboa
Copy link
Contributor

@ej2 I second this, in a Py3 environment simplejson makes little sense. It's a pity because requests will start using it if it finds it installed and then breaks tests in funny ways. Could you consider a PR that removes simplejson ?

@ej2
Copy link
Owner

ej2 commented May 21, 2024

Absolutely @pablogamboa.

@pablogamboa
Copy link
Contributor

Sent a PR that removes simplejson @ej2 added rationale in the PR description. PTAL 🙏

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants