{"id":23611,"library":"django-vies","title":"Django VIES","description":"Validate and store VAT Information Exchange System (VIES) data in Django. Current version 6.3.0, requires Python >=3.10 and Django >=4.2. Active maintenance.","status":"active","version":"6.3.0","language":"python","source_language":"en","source_url":"https://github.com/benkonrath/django-vies","tags":["django","vies","vat","validation","soap"],"install":[{"cmd":"pip install django-vies","lang":"bash","label":"PyPI"}],"dependencies":[{"reason":"Core Django requirement","package":"django","optional":false},{"reason":"HTTP requests to VIES SOAP service","package":"requests","optional":true},{"reason":"SOAP client used for VIES validation","package":"suds-py3","optional":true}],"imports":[{"wrong":"from django_vies.fields import VATINField","symbol":"VATINField","correct":"from vies import VATINField"}],"quickstart":{"code":"from django_vies.fields import VATINField\nfrom django.db import models\n\nclass Company(models.Model):\n    name = models.CharField(max_length=100)\n    vat = VATINField(blank=True, null=True)\n\n# Usage:\nfrom django_vies.validators import VATINValidator\nvalidator = VATINValidator()\ntry:\n    validator('DE123456789')\n    print('Valid VAT')\nexcept Exception as e:\n    print('Invalid:', e)","lang":"python","description":"Add a VIES-validated VAT field to a Django model."},"warnings":[{"fix":"Change imports: from django_vies.models import VATINField (not VATINModelField)","message":"In v6, the model field no longer has a separate VATINModelField; use VATINField from models module.","severity":"breaking","affected_versions":">=6.0.0"},{"fix":"Set blank=True, null=True to allow empty VAT numbers; handle validation asynchronously if needed.","message":"VIES SOAP service may be slow or unreliable; fields accept 'None' for offline fallback.","severity":"gotcha","affected_versions":"all"},{"fix":"Upgrade to v6 and ensure no custom SOAP backend configuration.","message":"The suds-py3 dependency is deprecated; use requests-based backend (default since v5).","severity":"deprecated","affected_versions":"<5.0.0"}],"env_vars":null,"search_vec":"'3.10':19 '4.2':22 '6.3.0':16 'activ':23 'current':14 'data':11 'django':1,13,21,25 'exchang':8 'inform':7 'mainten':24 'python':18 'requir':17 'soap':29 'store':5 'system':9 'valid':3,28 'vat':6,27 'version':15 'vie':2,10,26","created_at":"2026-05-01T08:08:40.814108+00:00","updated_at":"2026-05-01T08:08:40.814108+00:00","problems":{"verify_error":"Traceback (most recent call last):\n  File \"<string>\", line 1, in <module>\nImportError: cannot import name 'VATINField' from 'vies' (/tmp/tmp3desre2v/venv/lib/python3.12/site-packages/vies/__init__.py)"},"ecosystem":"pypi","meta_description":null,"install_score":null,"quickstart_score":null,"quickstart_tag":null,"pypi_latest":"6.3.0","cli_name":"","cli_version":null,"type":"library","homepage":"https://django-vies.readthedocs.io","github":null,"docs":null,"changelog":null,"pypi":"https://pypi.org/project/django-vies/","npm":null,"openapi_spec":null,"status_page":null,"smithery":null,"categories":["web-framework","auth-security","serialization"],"base_url":null,"auth_type":null,"provenance":{"verified_status":"import_fail","verified_at":"2026-07-03","last_verified":"2026-07-03","next_check":"2026-07-10","install_tag":null}}