Skip to main content

A Django app to query models.

Project description

What problem does it solve?

  1. It’s a simple django package which can help developers to create APIs faster without writing views.

  2. It works quite similar to GraphQL, but it’s not GraphQL. It’s just a simple package which can help you to create APIs with url configurations only.

  3. So next time when you want to create an API, you don’t need to write views, you just need to write url configurations.

  4. Even frontend folks can create or tweak APIs without writing views.

Setup

  1. In urls.py:

    from django.urls import path, include
    
    urlpatterns = [
        path('rudra/', include('rudra.urls')),
    ]
  2. In somepath/response.py:

    '''
        Sample success and error response functions
        Configure how you want to return success and error responses
    '''
    
    from typing import Union
    from django.http import JsonResponse
    
    def success_response(data: Union[dict, list], has_next: bool = None) -> JsonResponse:
        '''
            :param data: either dict or list, depending on the response
            :param has_next: if the response is paginated, then this will be True or False
        '''
        return JsonResponse({'data': data, 'status': 'success', 'has_next': has_next})
    
    def error_response(error: Exception) -> JsonResponse:
        return JsonResponse({'error': str(error), 'status': 'error'})
  3. In settings.py:

    '''
        Configure Rudra settings
        Register your models with serializer in settings
    '''
    
    from rudra.settings import RudraBaseSettings, RudraMetaSettings, SerializerSettings
    
    # other settings
    ...
    
    INSTALLED_APPS = [
        ...
        'rudra',
    ]
    
    # other settings
    ...
    
    class RudraSettings(RudraBaseSettings):
        success_path = 'somepath/response.success_response'
        error_path = 'somepath/response.error_response'
    
    
        # Register your models here
        # You can pass multiple models and their configurations in this list
        meta_settings = [
            RudraMetaSettings(
                model_path='django.contrib.auth.models.User',
                methods_allowed=['get', 'post', 'put', 'patch', 'delete'],
    
                # Either pass serializer_path or map_serializer
                # with map_serializer, you can pass different serializers for different request methods
                # with serializer_context you can pass context to serializer
                serializer_settings=SerializerSettings(
                    serializer_path='user.serializer.UserSerializer',
                    serializer_context=lambda request: {'request': request},
                    map_serializer={
                        'get': 'user.serializer.UserSerializerGet',
                        'post': 'user.serializer.UserSerializerPost',
                    }
                )
            )
        ]
    
    RUDRASETTINGS = RudraSettings()

How to use

  1. Get all registered models and their configurations:

    GET: https://{{base_url}}/rudra/models
    
    Sample Response:
    # Note: Response will contain json with key as model and value will be the list of fiedls(and their configurations)
    {
        "User": [
            {
                "name": "logentry",
                "type": "ForeignKey",
                "related_model": "LogEntry",
                "description": null
            },
            {
                "name": "id",
                "type": "AutoField",
                "related_model": null,
                "description": "Integer"
            },
            {
                "name": "password",
                "type": "CharField",
                "related_model": null,
                "description": "String (up to %(max_length)s)"
            },
            {
                "name": "last_login",
                "type": "DateTimeField",
                "related_model": null,
                "description": "Date (with time)"
            },
            {
                "name": "is_superuser",
                "type": "BooleanField",
                "related_model": null,
                "description": "Boolean (Either True or False)"
            },
            {
                "name": "username",
                "type": "CharField",
                "related_model": null,
                "description": "String (up to %(max_length)s)"
            },
            {
                "name": "first_name",
                "type": "CharField",
                "related_model": null,
                "description": "String (up to %(max_length)s)"
            },
            {
                "name": "last_name",
                "type": "CharField",
                "related_model": null,
                "description": "String (up to %(max_length)s)"
            },
            {
                "name": "email",
                "type": "CharField",
                "related_model": null,
                "description": "Email address"
            },
            {
                "name": "is_staff",
                "type": "BooleanField",
                "related_model": null,
                "description": "Boolean (Either True or False)"
            },
            {
                "name": "is_active",
                "type": "BooleanField",
                "related_model": null,
                "description": "Boolean (Either True or False)"
            },
            {
                "name": "date_joined",
                "type": "DateTimeField",
                "related_model": null,
                "description": "Date (with time)"
            },
            {
                "name": "groups",
                "type": "ManyToManyField",
                "related_model": "Group",
                "description": "Many-to-many relationship"
            },
            {
                "name": "user_permissions",
                "type": "ManyToManyField",
                "related_model": "Permission",
                "description": "Many-to-many relationship"
            }
        ]
    }
  2. Querying models:

    GET: https://{{base_url}}/rudra/{{model_name}}
    Query Params:
    # add your filters in query params
    {
        'pk': 1,
        'username': 'admin',
        'email': 'someemail@email.com',
        ...
        # you can add any field name and its value
        # you can also add filters similar to django queryset
        # for example:
        'username__icontains': 'ad',
    
        # you can also add pagination
        'page': 1,
        'page_size': 10,
    
        # you can also add ordering
        'order_by': 'username',
    
        # if you want to receive all results, then
        'all': True
        # else you will receive only single result
    }
  3. Use other request methods:

    {{METHOD}}: https://{{base_url}}/rudra/{{model_name}}
    
    # Note: You can use any request method, eg: POST, PUT, PATCH, DELETE
    
    # Note: You can also pass data in request body
    
    # Note: For DELETE request, make sure you pass filters in request body
  4. Deep query models:

    # This api is used to query models with more configurations
    # More configurations will be added soon
    
    POST: https://{{base_url}}/rudra/query/{{model_name}}/
    Query Params:
    {
        'page': 1,
        'page_size': 10,
        'all': True # if you want to receive all results
        # don't pass anything if you want to receive single result
    }
    
    BODY:
    {
        'filters': {
            # Add your filters here
            'pk': 1,
            'username': 'admin',
            'email': 'someemail@email.com',
            'last_name': null
        },
        'order_by_list': [
            'id',
            '-username',
        ],
        'select_related': [
            'logentry',
            'groups',
            'user_permissions',
        ],
        'prefetch_related': [
            'logentry',
            'groups',
            'user_permissions',
        ],
    }

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-rudra-0.1.1.tar.gz (7.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

django_rudra-0.1.1-py3-none-any.whl (9.2 kB view details)

Uploaded Python 3

File details

Details for the file django-rudra-0.1.1.tar.gz.

File metadata

  • Download URL: django-rudra-0.1.1.tar.gz
  • Upload date:
  • Size: 7.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.0

File hashes

Hashes for django-rudra-0.1.1.tar.gz
Algorithm Hash digest
SHA256 3214ef23a5b154473d5926ae4c997a1af45f28ba30a26336a35bde491f21049a
MD5 9f59214d85a29739cd8b902d2871864d
BLAKE2b-256 621c3bae6f78ca326c2f59f5753a2229aeb7d6f0e0ca622f025ebe6d6e29c2e2

See more details on using hashes here.

File details

Details for the file django_rudra-0.1.1-py3-none-any.whl.

File metadata

  • Download URL: django_rudra-0.1.1-py3-none-any.whl
  • Upload date:
  • Size: 9.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.0

File hashes

Hashes for django_rudra-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 4888f23f5e7f5c6e40790dc92063fc27449b1f8db4b9050dbfafbce48a07e2e8
MD5 1c57f4e205581ade3efba0aa83b72f32
BLAKE2b-256 33de653f7891a392cf3e29dec1b1959925aff2282e104ad0603ed526176706ad

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page