Skip to main content

Countries for django

Project description

Django Country Kit

Django Country Kit is a Django app that provides country-related functionality, including a custom model field for storing country codes, a form widget for selecting countries, and associated tests.

Features

  • Country Model Field: Easily store and retrieve country codes in your Django models.
  • Country Widget: A form widget for rendering a dropdown list of countries in your Django forms.

Installation

  1. Install Django Country Kit using pip:

    pip install django-country-kit
    
  2. Add 'django_country_kit' to your INSTALLED_APPS in your Django project's settings:

    INSTALLED_APPS = [
        # ...
        'django_country_kit',
        # ...
    ]
    
  3. Run collectstatic:

    python manage.py collectstatic
    

Usage

Country Model Field

In your models, use the CountryField to store country codes:

from django.db import models
from django_country_kit.fields import CountryField

class YourModel(models.Model):
    country = CountryField()

For multiple selections:

from django.db import models
from django_country_kit.fields import CountryField

class YourModel(models.Model):
    countries = CountryField(multiple=True)

Country Widget

In your forms, use the CountryWidget to render a dropdown list of countries:

from django import forms
from django_country_kit.widgets import CountryWidget

class YourForm(forms.Form):
    country = forms.CharField(widget=CountryWidget())

For multiple selections:

from django import forms
from django_country_kit.widgets import MultipleCountryWidget

class YourForm(forms.Form):
    countries = forms.CharField(widget=MultipleCountryWidget())

Country Class

The Country class represents a country and provides properties for accessing its name and alpha3 code. This class is part of the Django Country Kit and offers convenient functionality for handling country-related data.

Usage

You can create an instance of the Country class to retrieve information about a specific country. Here's how you can use it:

from django_country_kit.base import Country

# Create a Country instance with a specific country code
country = Country(code='US')

# Retrieve the name of the country
country_name = country.name  # Returns 'United States'

# Retrieve the alpha3 code of the country
country_alpha3 = country.alpha3  # Returns 'USA'

Custom settings

Django Country Kit provides custom settings for further customization of country data:

  • OVERRIDE_COUNTRIES: Allows users to override specific countries with custom data.
  • EXCLUDE_COUNTRIES: Allows users to exclude specific countries from the available choices.
  • INCLUDE_COUNTRIES: Allows users to include specific countries in the available choices.

You can customize these settings in your Django project's settings file to tailor the country data according to your needs.

We appreciate your feedback and contributions to improving Django Country Kit!

Development

If you want to contribute to Django Country Kit, follow these steps to set up your development environment:

  1. Install pipenv if you haven't already:

    pip install pipenv
    
  2. Clone the repository:

    git clone https://github.com/your_username/django-country-kit.git
    
  3. Navigate to the project directory:

    cd django-country-kit
    
  4. Install development dependencies:,

    pipenv install --dev
    
  5. Activate the virtual environment:

    pipenv shell
    
  6. Run migrations:

    python manage.py migrate
    
  7. Run collectstatic:

    python manage.py collectstatic
    
  8. Start the development server:

    python manage.py runserver
    

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-country-kit-0.0.7.tar.gz (16.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

django_country_kit-0.0.7-py3-none-any.whl (17.1 kB view details)

Uploaded Python 3

File details

Details for the file django-country-kit-0.0.7.tar.gz.

File metadata

  • Download URL: django-country-kit-0.0.7.tar.gz
  • Upload date:
  • Size: 16.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.22

File hashes

Hashes for django-country-kit-0.0.7.tar.gz
Algorithm Hash digest
SHA256 65f1e999ed76897d35f1f2988a3d7608171dadcdf969aabc0746cc2c2b658cfb
MD5 2933f6df383607e0dc30fb1be6a06cbb
BLAKE2b-256 c1b63fe3e4535921db2981b21d9563e46adb5451e89e664f1d0d47ee0273e3ad

See more details on using hashes here.

File details

Details for the file django_country_kit-0.0.7-py3-none-any.whl.

File metadata

File hashes

Hashes for django_country_kit-0.0.7-py3-none-any.whl
Algorithm Hash digest
SHA256 98678603763bac819d55bbf0ac6efa8cf2fe84828938aa2c60f0afcfbab41bc7
MD5 239939dfa8f2ab7966480543be957483
BLAKE2b-256 23ee0a713f4d9836ee553de379df1bace33f0f98333ec3da5fd06f231540b882

See more details on using hashes here.

Supported by

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