feat(parsers): sync RU proxies from proxy-tools
Some checks failed
CI/CD Pipeline / Telegram Notify Success (push) Has been cancelled
CI/CD Pipeline / Run Tests (push) Has been cancelled
CI/CD Pipeline / Code Quality Checks (push) Has been cancelled

This commit is contained in:
2026-03-23 10:47:34 +01:00
parent b4260d53cb
commit 7d4c54636b
13 changed files with 705 additions and 15 deletions

View File

@@ -351,6 +351,20 @@ class Proxy(TimestampMixin, models.Model):
blank=True,
help_text=_("Описание прокси (провайдер, локация и т.д.)"),
)
source = models.CharField(
_("источник"),
max_length=50,
default="manual",
db_index=True,
help_text=_("Источник прокси (например: manual, proxy-tools)"),
)
country_code = models.CharField(
_("код страны"),
max_length=2,
default="RU",
db_index=True,
help_text=_("ISO-3166 код страны прокси, например RU"),
)
class Meta:
db_table = "parsers_proxy"