Skip to main content

Domain name model field and form field for Django.

Project description

django-domainname

django-dominname is a simple django app including a model field and a form field to deal with Domain names.

Getting Started

1.Installation:

  git clone https://github.com/MehdioKhan/django-domainname
  cd djanago-domainname
  python setup.py install

or

  pip install django-domainname

2.Add django_dnf to installed list in settings file:

        INSTALLED_APPS = [
        ...
        'django_dnf',
        ]

3.Use DomainNameField in your models and forms:

models.py

        from django.db import models
        from django_dnf.fields import DomainNameField

        class MyModel(models.Model):
              doamin = DomainNameField(blank=True)
              ...

forms.py

        from django import forms
        from django_dnf.formfields import DomainNameField

        class MyForm(forms.Form):
        doamin = DomainNameField(blank=True)
        ...

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

django_domainname-0.1.1-py2.py3-none-any.whl (17.1 kB view hashes)

Uploaded Python 2 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