Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/dabapps/django-readers

A lightweight function-oriented toolkit for better organisation of business logic and efficient selection and projection of data in Django projects.
https://github.com/dabapps/django-readers

django python

Last synced: 7 days ago
JSON representation

A lightweight function-oriented toolkit for better organisation of business logic and efficient selection and projection of data in Django projects.

Awesome Lists containing this project

README

        

django-readers
==============

**A lightweight function-oriented toolkit for better organisation of business logic and efficient selection and projection of data in Django projects.**

Tested against Django 3.2, 4.0, 4.1, 4.2 and 5.0 on Python 3.8, 3.9, 3.10 and 3.11.

![Build Status](https://github.com/dabapps/django-readers/workflows/CI/badge.svg?branch=main)
[![pypi release](https://img.shields.io/pypi/v/django-readers.svg)](https://pypi.python.org/pypi/django-readers)

## Installation

Install from PyPI

pip install django-readers

## Documentation

You can read the documentation at [https://www.django-readers.org](https://www.django-readers.org).

## Working on django-readers

After cloning the repo:

```shell
python -m venv env
source env/bin/activate
pip install -r dev-requirements.txt
```

(the following commands assume you have the virtualenv activated)

Running tests:

```shell
./runtests
```

Running code autoformatters:

```shell
./format
```

Working on the docs (built with [MkDocs](https://www.mkdocs.org/) and [Material for MkDocs](https://squidfunk.github.io/mkdocs-material/)):

```shell
pip install -r docs-requirements.txt
mkdocs serve
```

## Code of conduct

For guidelines regarding the code of conduct when contributing to this repository please review [https://www.dabapps.com/open-source/code-of-conduct/](https://www.dabapps.com/open-source/code-of-conduct/)