Countries States Cities models for Django.
Project description
django-countries-states-cities
1. Installation
The preferred installation method is directly from pypi:
# Create promgen setting directory.
$ pip install -U django-countries-states-cities
2. Quickstart
In settings.py
:
INSTALLED_APPS = [
'modeltranslation',
'django.contrib.admin',
...,
'import_export',
'countries_states_cities'
]
def gettext_noop(s):
return s
LANGUAGES = [ # supported languages
("en", gettext_noop("English")),
("ja", gettext_noop("Japanese")),
("ko", gettext_noop("Korean")),
]
- In
urls.py
:
from django.urls import path, include
urlpatterns = [
...,
path('csc/', include('countries_states_cities.urls')),
]
- Run
python manage.py migrate
Create the countries_states_cities models.
$ python manage.py migrate
3. Configuration
- Language setting: Todo
4. Importing Data
This package comes with two custom Django management commands to import data from CSV files and update translations. Follow the steps below to execute these commands:
Importing Basic Data
-
Ensure your CSV files are placed in the correct directory (e.g.,
./countries_states_cities/data/
). -
Run the following command to import data from the CSV files into your Django models:
$ python manage.py import_csv
This command will import regions, subregions, countries, states, and cities data from the respective CSV files into the Django models.
- Updating Translations
$ python manage.py import_translate_csv
5. Update Package
In setup.cfg
, upgrade version
[metadata]
name = django-countries-states-cities
version = x.x.x
...
Build package
$ python setup.py sdist bdist_wheel
Deploy package
$ twine upload --verbose dist/django-countries-states-cities-x.x.x.tar.gz
The MIT License
Copyright (c) 2023 Runners Co.,Ltd.
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Hashes for django-countries-states-cities-0.2.6.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5cb9b7d6661ff02fd946d255ea3a5b744eb98b0122a3fb54e11884deee264371 |
|
MD5 | 101d0d80d47a7553ff1530de10007d94 |
|
BLAKE2b-256 | 58b9d3827feb08eb635f480564ff6565da2d170c2c47629529ae2deb8c45a50f |