Hi I'm maintaining django-vies a package for european VAT number verification and validation.
I don't use the package myself and like to give it await. Since we are on djangocon it was suggested to merge it into localflavor.
I just did a complete rewrite of the package because I wanted it to be based on a validator rather than on fields only.
It's currently translate in like 3 languages, I'd like to improve that as well. I guess with the help of you guys it should be much easier.
I think there are a couple of different options:
- You don't want it (which is ok)
- You only want the validator part, not the model and form fields or widgets
- You like it all.
I'd like to explain something, that might effect this decision:
The verification is based on regex, which can happen in a validator and works great.
The validation on the other hand is based on the VIES API. Which is great, because it tells you if a number is actually registered but it is not very reliable and should not be executed within a request.
Anyways:
The new code is HERE
Feel free to ask me anything, I'm looking forward to here your feedback.
Cheers from DjangoCon EU
Joe
Hi I'm maintaining
django-viesa package for european VAT number verification and validation.I don't use the package myself and like to give it await. Since we are on djangocon it was suggested to merge it into localflavor.
I just did a complete rewrite of the package because I wanted it to be based on a validator rather than on fields only.
It's currently translate in like 3 languages, I'd like to improve that as well. I guess with the help of you guys it should be much easier.
I think there are a couple of different options:
I'd like to explain something, that might effect this decision:
The verification is based on regex, which can happen in a validator and works great.
The validation on the other hand is based on the VIES API. Which is great, because it tells you if a number is actually registered but it is not very reliable and should not be executed within a request.
Anyways:
The new code is HERE
Feel free to ask me anything, I'm looking forward to here your feedback.
Cheers from DjangoCon EU
Joe