New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

uzbekistan

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

uzbekistan

Full Database of Uzbekistan Regions, Districts & Quarters with Latin, Cyrillic and Russian versions.

  • 2.7.2
  • PyPI
  • Socket score

Maintainers
1

🌍 Regions, Districts & Quarters Database

PyPI Version Django Version

Full Database of Uzbekistan Regions, Districts & Quarters with Latin, Cyrillic and Russian versions.

Insights

Total Regions : 14
Total Regions/Cities : 205
Total Towns/Districts : 2,183+

Last Updated On : 5th June 2022

Installation

You can install your app via pip:

pip install uzbekistan

Add it to your Django project's INSTALLED_APPS:


INSTALLED_APPS = [
    # ...
    'uzbekistan',
]

Configure views and models to which feature you want to use in your project. You can enable/disable models and views for regions, districts and villages.

UZBEKISTAN = {
    'models': {
        'region': True,
        'district': True,
        'village': False,
    },
    'views': {
        'region': True,
        'district': True,
        'village': False,
    }
}

Include URL Configuration in the Project's urls.py

urlpatterns = [
    # ...
    path('', include('uzbekistan.urls'), name='uzbekistan'),
]

Load the data into your database

python3 manage.py loaddata regions
python3 manage.py loaddata districts

Change logs

A new version available that includes many updates.

  • Added Villages to the database
  • Added Dynamic URLs for all models
  • Added Dynamic Views for all models
  • Added Models to Django Admin panel
  • English translations added to Region

Suggestions / Feedbacks

Suggestions & Feedbacks are Most Welcome

That's all Folks. Enjoy😊!

Keywords

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc