Skip to main content

A django app for institutions model fields

Project description

django-institutions

A Django application that provides a university institution field for models and a serializer.

Installation

  • pip install django-institutions
  • Add django_institutions to your INSTALLED_APPS

Usage

InstitutionField

An institution field for Django models with choices from: https://github.com/Hipo/university-domains-list

InstitutionField is based on Django's CharField.

Consider the following model user InstitutionField:

from django.db import models
from django_institutions.fields import InstitutionField

class User(models.Model):
    name = models.CharField(max_length=255)
    institution = InstitutionField()

A User instance will have a institution attribute where you can get the details of the institution.

>>> user = User(name='John Doe', institution='University of London')
>>> user.institution
Institution(name='University of London', country='United Kingdom', etc)
>>> user.institution.name
'University of London'
>>> user.institution.country
'United Kingdom'

Django Rest Framework field

To serialize the institution field, you can use the InstitutionField serializer field. For example:

from django_institutions.serializer_fields import InstitutionField

class UserSerializer(serializers.ModelSerializer):
    institution = InstitutionField()

REST output format

The serialized output will look like the following:

{"name": "University of London"}

Either the dict output or simply the name of the institution is acceptable as intputs.

Acknowledgements

This project is inspired by django-countries

Thanks to SmileyChris for the inspiration.

Data

The institution data is sourced from university-domains-list

Notes

This project is still very in early development. Help is welcome :)

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_institutions-0.0.6.tar.gz (205.9 kB view details)

Uploaded Source

Built Distribution

django_institutions-0.0.6-py3-none-any.whl (210.6 kB view details)

Uploaded Python 3

File details

Details for the file django_institutions-0.0.6.tar.gz.

File metadata

  • Download URL: django_institutions-0.0.6.tar.gz
  • Upload date:
  • Size: 205.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.3

File hashes

Hashes for django_institutions-0.0.6.tar.gz
Algorithm Hash digest
SHA256 f16dc9d8fc16b211038d46f6f6a97aefa45781a4c38fa6beaece2e6c32b58843
MD5 8b6d353ee77ff699183f0239182141f6
BLAKE2b-256 a3703919238f9bfb2c72ce2da71ed5199c305f208f5a5bb1bf03371220ad081f

See more details on using hashes here.

File details

Details for the file django_institutions-0.0.6-py3-none-any.whl.

File metadata

File hashes

Hashes for django_institutions-0.0.6-py3-none-any.whl
Algorithm Hash digest
SHA256 85acb80ef7c873154e4ceb7ec4a8e7a037da93573b740979376734f944eb743c
MD5 413583a67c7591a9b99ab15239693fe4
BLAKE2b-256 66504b342b6a695aa7d4ba7b0f43ef52b9cdff82bca83b5c635cf04f8f0ab751

See more details on using hashes here.

Supported by

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