djacobs / PyAPNs

Python library for interacting with the Apple Push Notification service (APNs)
http://pypi.python.org/pypi/apns/
MIT License
1.22k stars 374 forks source link

Remove dependency on simplejson #173

Closed sharmaeklavya2 closed 8 years ago

sharmaeklavya2 commented 8 years ago

Python has the json module from version 2.6 onwards. So we don't need simplejson. simplejson is PyAPNs' only external dependency now and removing it will make it completely independent of external libraries.

The version of simplejson in the requirements file is so old that it doesn't install on python 3.4. We would have anyways had to change it. I think it's better if we just remove it.

djacobs commented 8 years ago

Thanks.