Skip to content
View JackAtOmenApps's full-sized avatar
💭
Happily typing away
💭
Happily typing away

Organizations

@watervize

Block or report JackAtOmenApps

Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. OmenApps/django-postgresql-dag OmenApps/django-postgresql-dag Public

    Directed Acyclic Graphs with a variety of methods for both Nodes and Edges, and multiple exports (NetworkX, Pandas, etc). This project is the foundation for a commercial product, so expect regular …

    Python 48 6

  2. OmenApps/django-calendardate OmenApps/django-calendardate Public

    A calendar model with date metadata for querying against.

    Python 19 4

  3. Example of the new django 3.0 TextCh... Example of the new django 3.0 TextChoices enumeration types
    1
    from django.db import models
    2
    
                  
    3
    class Animal(models.Model):
    4
    
                  
    5
        class AnimalType(models.TextChoices):
  4. Django and HTMX Preferences Example Django and HTMX Preferences Example
    1
    from django.db import models
    2
    from django.contrib.auth.models import AbstractBaseUser
    3
    from django.utils.translation import ugettext_lazy as _
    4
    
                  
    5