Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Full Database of Uzbekistan Regions, Districts & Quarters with Latin, Cyrillic and Russian versions.
Full Database of Uzbekistan Regions, Districts & Quarters with Latin, Cyrillic and Russian versions.
Total Regions : 14
Total Regions/Cities : 205
Total Towns/Districts : 2,183+
Last Updated On : 5th June 2022
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
A new version available that includes many updates.
Suggestions & Feedbacks are Most Welcome
That's all Folks. Enjoy😊!
FAQs
Full Database of Uzbekistan Regions, Districts & Quarters with Latin, Cyrillic and Russian versions.
We found that uzbekistan demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.