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, pages: int = None, count: int = None, page_size: int = 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. 'pages': pages, 'count': count, 'page_size': page_size})
    
    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'
        user_serializer_path = 'user.serializer.UserSerializer' # Serializer to be used for user model
        fixed_page_number = 9999999 # If you want to set a fixed page number for pagination
    
        # 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',
        ],
    }
  5. Get User:

    GET: https://{{base_url}}/rudra/get-user/

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.4.tar.gz (8.3 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.4-py3-none-any.whl (9.6 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: django-rudra-0.1.4.tar.gz
  • Upload date:
  • Size: 8.3 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.4.tar.gz
Algorithm Hash digest
SHA256 0805cf9b7715a2a7aaa2429ba9bca609ed11c15e6af7e4b2a0ffff11f59c1f5e
MD5 833b91cdbff9f2501fcda9d698149edb
BLAKE2b-256 15eb7b172474c90b662e2b3b120ded94e17afef3796366f0c4dfc295fb78e82d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: django_rudra-0.1.4-py3-none-any.whl
  • Upload date:
  • Size: 9.6 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.4-py3-none-any.whl
Algorithm Hash digest
SHA256 8b6220bdbb9d782d665727cf9376c9f7c7ef69addf96034261dcae46c924cc48
MD5 758485987f53ffe8ca2b786817533848
BLAKE2b-256 a009feb109a5ec7f5783662594ad920c484e91e4e5194336b98280b6ff0aa4c9

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