Transparently use webpack with django

django-webpack-loader Read http://owaislone.org/blog/webpack-plus-reactjs-and-django/ for a detailed step by step guide on setting up webpack with django using this library. Use webpack to generate your static bundles without django’s staticfiles or opaque wrappers. Django webpack loader consumes the output generated by webpack-bundle-tracker and lets you use the generated bundles in django. Compatibility Test cases cover Django>=2.0 on Python>=3.5. 100% code coverage is the target so we can be sure everything works anytime. It should probably work on older version of django […]

Read more

An instant remote API to your Django models data with a powerful query language

Djaq Djaq – pronounced “Jack” – provides an instant remote API to your Django models data with a powerful query language. No server-side code beyond two lines of config is required. You don’t write backend classes, serializers or any other code to be able to immediately get whatever data you want to the client. And it is blazing fast. Djaq queries are strings. A query string for our example dataset might look like this: (b.name as title, b.publisher.name as publisher) […]

Read more

Authentication Module for django rest auth

django-rest-knox Authentication Module for django rest auth Knox provides easy to use authentication for Django REST Framework The aim is to allow for common patterns in applications that are REST based, with little extra effort; and to ensure that connections remain secure. Knox authentication is token based, similar to the TokenAuthentication built in to DRF. However, it overcomes some problems present in the default implementation: DRF tokens are limited to one per user. This does not facilitate securely signing in […]

Read more

A Django App that adds Cross-Origin Resource Sharing headers to responses

A Django App that adds Cross-Origin Resource Sharing (CORS) headers to responses. This allows in-browser requests to your Django application from other origins. About CORS Adding CORS headers allows your resources to be accessed on other domains. It’s important you understand the implications before adding the headers, since you could be unintentionally opening up your site’s private data to others. Requirements Python 3.6 to 3.9 supported. Django 2.2 to 3.2 supported. Are your tests slow? Check out my book Speed […]

Read more

Pydantic models for Django

Djantic Documentation: https://jordaneremieff.github.io/djantic/ Requirements: Python 3.7+, Django 3.0+ Pydantic models for Django. This project should be considered a work-in-progress. It should be okay to use, but no specific version support has been determined (#16) and the default model generation behaviour may change across releases. Please use the issues tracker to report any bugs, or if something seems incorrect. Quickstart Install using pip: pip install djantic Generating schemas from models Configure a custom ModelSchema class for a Django model to generate […]

Read more

Self hosted FLOSS fitness/workout, nutrition and weight tracker written with Django

wger wger (ˈvɛɡɐ) Workout Manager is a free, open source web application that help you manage your personal workouts, weight and diet plans and can also be used as a simple gym management utility. It offers a REST API as well, for easy integration with other projects and tools. Mobile app Installation These are the basic steps to install and run the application locally on a Linuxsystem. There are more detailed instructions, other deployment options as wellas an administration guide […]

Read more
1 7 8 9