Metadata-Version: 2.4
Name: uzbekistan
Version: 2.8.2
Summary: A comprehensive Django package providing complete database of Uzbekistan's Regions, Districts & Quarters with multi-language support including Latin, Cyrillic, and Russian versions.
Author: jakhongir
Author-email: ganiyevuzb@gmail.com
Requires-Python: >=3.11,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Requires-Dist: django (>=5.0,<6.0)
Requires-Dist: setuptools (>=68.2.2,<69.0.0)
Requires-Dist: twine (>=4.0.2,<5.0.0)
Requires-Dist: wheel (>=0.41.3,<0.42.0)
Description-Content-Type: text/markdown

# 🌍 Uzbekistan

[![PyPI Version](https://img.shields.io/pypi/v/uzbekistan)](https://pypi.org/project/uzbekistan/)
[![Django Version](https://img.shields.io/badge/Django-5.x-green.svg)](https://www.djangoproject.com/)
[![License](https://img.shields.io/badge/License-MIT-blue.svg)](LICENSE)
[![Codecov status](https://codecov.io/gh/ganiyevuz/uzbekistan/graph/badge.svg?token=C8D9Q4GQCX)](https://codecov.io/gh/ganiyevuz/uzbekistan)

A comprehensive Django package providing complete database of Uzbekistan's Regions, Districts & Quarters with multi-language support including Latin, Cyrillic, and Russian versions.

## 📊 Database Overview

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

## ✨ Features

- Complete database of Uzbekistan's Regions, Districts & Quarters
- Multi-language support:
  - Uzbek (Latin)
  - Uzbek (Cyrillic)
  - Russian
  - English
- REST API endpoints
- Configurable model activation
- Built-in caching
- Django Admin integration

## 🚀 Quick Start

### Installation

```bash
pip install uzbekistan
```

### Basic Setup

1. Add to `INSTALLED_APPS`:
```python
INSTALLED_APPS = [
    ...
    'uzbekistan',
]
```

2. Configure in `settings.py`:
```python
UZBEKISTAN = {
    'models': {
        'region': True,  # Enable Region model
        'district': True,  # Enable District model
        'village': True,  # Enable Village model
    },
    'views': {
        'region': True,  # Enable RegionListAPIView
        'district': True,  # Enable DistrictListAPIView
        'village': True,  # Enable VillageListAPIView
    },
    'cache': {
        'enabled': True,  # Enable caching
        'timeout': 3600,  # Cache timeout (1 hour)
        'key_prefix': "uzbekistan"  # Cache key prefix
    },
    "use_authentication": False  # Disable authentication for API views (if needed)
}
```

3. Add URLs:
```python
urlpatterns = [
    path('', include('uzbekistan.urls')),
]
```

4. Run migrations:
```bash
python manage.py makemigrations
python manage.py migrate
```

5. Load data:
```bash
python manage.py loaddata regions
python manage.py loaddata districts
```

## 🔌 API Endpoints

### Available Endpoints

| Endpoint | URL Pattern | Name | Description |
|----------|-------------|------|-------------|
| Regions | `/regions` | `region-list` | List all regions |
| Districts | `/districts/<int:region_id>` | `district-list` | List districts for a specific region |
| Villages | `/villages/<int:district_id>` | `village-list` | List villages for a specific district |

### Example Usage

```python
# Get all regions
GET /regions

# Get districts for a specific region
GET /districts/1  # where 1 is the region_id

# Get villages for a specific district
GET /villages/1  # where 1 is the district_id
```

## 🛠️ Development

### Setup

```bash
# Clone repository
git clone https://github.com/ganiyevuz/uzbekistan.git
cd uzbekistan

# Create virtual environment
python -m venv .venv
source .venv/bin/activate  # Windows: .venv\Scripts\activate

# Install dependencies
pip install -e ".[dev]"
```

### Development Tools

- **Testing**: `pytest`
- **Code Style**: 
  ```bash
  black --check uzbekistan/
  ```

## 📦 Release Process

### Automated Release

1. Update version:
```bash
python scripts/update_version.py 2.7.3
```

2. Create and push tag:
```bash
git tag v2.7.3
git push origin v2.7.3
```

GitHub Actions will automatically:
- Run tests
- Build package
- Publish to PyPI

### Manual Release

```bash
# Build package
python -m build

# Check package
twine check dist/*

# Upload to PyPI
twine upload dist/*
```

## 🤝 Contributing

1. Fork the repository
2. Create feature branch (`git checkout -b feature/amazing-feature`)
3. Commit changes (`git commit -m 'Add amazing feature'`)
4. Push to branch (`git push origin feature/amazing-feature`)
5. Open Pull Request

## 📄 License

This project is licensed under the MIT License - see [LICENSE](LICENSE) for details.

## 👤 Author

Jakhongir Ganiev - [@ganiyevuz](https://github.com/ganiyevuz)

## 🙏 Acknowledgments

- All contributors who helped improve this package
- Django and DRF communities for their excellent tools and documentation
