Devid
Devid
The rest framework has already a default JSON encoder, it is better to use it to allow for simplier integration.
## Description Add `SimplePathRouter` to handle Django 2.x _path converters_ (refs #6148).
## Description As explained in #8527 this PR will provide the ability to choose the output format for `DurationFields`. Since Python builtim `timedelta` object does not have any format function...
Improve readability and performace for settings. Instead of reading cloning the whole `settings` object each time a config is requested we use a proxy-class which has each config as a...
As of now this package includes a fully implementation of a [6 years old rjsmin](https://github.com/ierror/django-js-reverse/blob/master/django_js_reverse/rjsmin.py). Since rjsmin has its [own package](https://pypi.org/project/rjsmin/) on PyPi this dependecy should be defined as a...
As of now kombo default JSON encoder supports a type-conversion mechanism https://github.com/celery/kombu/blob/241b5dcff8a7c8ad411e1b325d59e47acfa9e1ed/kombu/utils/json.py#L36-L58 Also [`msgpack.packb`](https://github.com/msgpack/msgpack-python/blob/cfae52437b0d146f74a14d69cb706712c1fa2c95/msgpack/fallback.py#L672-L674) supports a _default_ callback to handle non-native-types. If msgpack serializer behaves just like JSON one than...
### Expected behaviour Use a single python JWT library. ### Actual behaviour As of now this package relies upon two different JWT python lirbaries: - `PyJWT`, declared in `requirements-base` file,...
As of now FCM notifications are sent to `https://fcm.googleapis.com/fcm/send` which is a [legacy API](https://firebase.google.com/docs/cloud-messaging/http-server-ref). Messages should be sent to [current API endpoint](https://firebase.google.com/docs/reference/fcm/rest/v1/projects.messages/send): ``` https://fcm.googleapis.com/v1/{parent=projects/*}/messages:send ```
The license should be specified in setup file. In this way it could be better indexed on PyPi.
As of now some calendars ([Netherlands](https://github.com/workalendar/workalendar/blob/4f8644484d6ba56c66e4bb82c377aa19eccfc0dc/workalendar/europe/netherlands.py#L142), [Malaysia](https://github.com/workalendar/workalendar/blob/b83d6d6938b0d321a15f8d27bfb8a21891424cb4/workalendar/asia/malaysia.py#L93-L101), [Singapore](https://github.com/workalendar/workalendar/blob/4f8644484d6ba56c66e4bb82c377aa19eccfc0dc/workalendar/asia/singapore.py#L78-L80) and [China](https://github.com/workalendar/workalendar/blob/538bf520611d56a02336cfad4860c21ec959e280/workalendar/asia/china.py#L111-L113)) needs a fixed dataset of holidays to be pre-populated and fails (with different kind of error) if a particular year...