Skip to main content

django app for organizing users through memberships

Project description

Anorganization uses membership, and organization models to group users. Support for Ariadne graphQL with pre-defined types and basic resolvers.

Requirements

  • Python 3.10+

  • django 4.0+

  • pillow 9.4.0+

Settings

Store uploaded file with tokenize file name, default to False

  • ANORGANIZATION_USE_TOKEN_FILENAME = True

Django admin mixins

Use predefined mixins to construct the admin class.

  • OrganizationAdminMixin

  • MembershipAdminMixin

from django.contrib import admin

from anorganization.models import Organization
from anorganization.mixins import OrganizationAdminMixin


@admin.register(Organization)
class OrganizationAdmin(OrganizationAdminMixin, ModelAdmin):
    ...

Ariadne types and resolvers

Integrate predefined types and resolvers to scheme.

Requirements

  • ariadne 0.16.0+

  • ariadne-relay 0.1.0a8+

schema

from anorganization.graphqls import anorganization_schema
  • anarticle/graphqls/article.graphql

  • anarticle/graphqls/tag.graphql

types

from anorganization.graphqls import anorganization_bindables
  • anorganization

  • anorganization_membership

resolvers

Async version

from anorganization.graphqls import resolve_anorganization_instance, \
        resolve_anorganization_member_connection, resolve_anorganizations

anorganization.set_instance_resolver(resolve_anorganization_instance)
anorganization.set_connection('members', resolve_anorganization_member_connection)

query.set_field('organizations', resolve_anorganizations)
  • resolve_anorganization_instance

  • resolve_anorganization_member_connection

  • resolve_anorganization_membership_instance

  • resolve_anorganizations

  • resolve_anorganization_memberships

Sync version

  • resolve_anorganization_instance_sync

  • resolve_anorganization_member_connection_sync

  • resolve_anorganization_membership_instance_sync

  • resolve_anorganizations_sync

  • resolve_anorganization_memberships_sync

License

django-anarticle is released under the terms of Apache license. Full details in LICENSE file.

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-anorganization-0.1.0rc3.tar.gz (10.5 kB view hashes)

Uploaded Source

Built Distribution

django_anorganization-0.1.0rc3-py3-none-any.whl (12.8 kB view hashes)

Uploaded Python 3

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