Dean-Christian-Armada

Results 22 issues of Dean-Christian-Armada

This is a great documentation library for DRF! However, you will get an error of: ``` ImportError: No module named raml_codec ``` When you just follow the steps on the...

Hi, my app currently have the Oauth2.0 Authentication on my default settings. ``` REST_FRAMEWORK = { 'EXCEPTION_HANDLER': 'jaguar.utils.custom_exception_handler', 'DEFAULT_AUTHENTICATION_CLASSES': ( 'oauth2_provider.ext.rest_framework.OAuth2Authentication', ), 'DEFAULT_PERMISSION_CLASSES': ( 'rest_framework.permissions.IsAuthenticated', ), 'DEFAULT_PAGINATION_CLASS': 'rest_framework.pagination.LimitOffsetPagination', 'DEFAULT_FILTER_BACKENDS': ('rest_framework.filters.DjangoFilterBackend',)...

This is one of my items in my urlpatterns ``` url(r'^(?P[0-9]+)/$', views.artist_detail, name='artists-detail') ``` It says here **string** when it should be an integer according to the artist_id regex

Hi, kindly update this import from "import simplejson as json" to "import json"

I don't know why but I got this error ``` >>> tweets = cache.get_or_set('tweets', 'x', timeout=300) Traceback (most recent call last): File "", line 1, in File "/Users/deanchristianarmada/Desktop/projects/asian_gaming/radar/lib/python2.7/site-packages/redis_cache/backends/base.py", line 33,...

The current `double` rule only allows a specific decimal place like: ``` ``` It currently only allows values such as `14.20`, I was hoping it can also allow `14.2`

✨ enhancement

Have you ever tried creating a rule like if the node went down then it will throw an alert?

An example of this is when you want to avoid adding a suffix for every filename you to add `unique_filename: False` in the dictionary value of `options` variable in `_upload`....

How do I set the field descriptions in views.py on function based views? **This is my syntax:** @api_view(['GET', 'POST']) def api_section(request): """ GET request gets the section and its details........