Name | iban-validation-py JSON |
Version |
0.1.8
JSON |
| download |
home_page | None |
Summary | A package to facilitate validation of IBANs and selecting Bank_id and Branch_id |
upload_time | 2025-03-18 22:09:57 |
maintainer | None |
docs_url | None |
author | Eric |
requires_python | >=3.9 |
license | MIT |
keywords |
|
VCS |
 |
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
# iban_validation_py
A package to facilitate validation of IBANs and getting the bank identifier and branch identifier in Python.
## Short examples
There are three ways to interact with the API:
- Validate the iban with `validate_iban` this does not indicate what is incorrect when the iban in invalid.
- Validate the iban with `validate_iban_with_error` does the same and give an error message when the iban is invalid.
- create an `IbanValidation` which allows to select the validated iban, the branch_id and bank_id when relevant.
See below code for illustration:
```python
import iban_validation_py
from iban_validation_py import IbanValidation
result = iban_validation_py.validate_iban('AL47212110090000000235698741')
assert(result is True)
result = iban_validation_py.validate_iban('AL47212110090000000235698741VV')
assert(result is False)
result, message = iban_validation_py.validate_iban_with_error('AL47212110090000000235698741VV')
assert(result is False)
assert(message == 'IBAN Validation failed: The length of the input Iban does match the length for that country')
# # Valid IBAN
iban = IbanValidation('AL47212110090000000235698741')
assert('AL47212110090000000235698741' == iban.stored_iban)
assert('212' == iban.iban_bank_id)
assert('11009' == iban.iban_branch_id)
```
## Credit
Cheers to the [Pyo3 Maturin](https://github.com/PyO3/maturin) project! It made this package possible.
## Changes
- 0.1.8: improve mod97 perf (cpu memory tradeof).
- 0.1.7: improve performance related to the Iban structure again.
- 0.1.6: improve performance related to the Iban structure.
- 0.1.5: added support to Python 3.13
- 0.1.4: technical update; updated polars dependency to polars 0.46.0, and py03 0.23 impacting only the Python packages.
Raw data
{
"_id": null,
"home_page": null,
"name": "iban-validation-py",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.9",
"maintainer_email": null,
"keywords": null,
"author": "Eric",
"author_email": null,
"download_url": "https://files.pythonhosted.org/packages/12/e9/2a69185f1c4975a0ff8890f65673cd0ebcd181e2327632570f80cd1f589a/iban_validation_py-0.1.8.tar.gz",
"platform": null,
"description": "# iban_validation_py\nA package to facilitate validation of IBANs and getting the bank identifier and branch identifier in Python.\n\n## Short examples\n\nThere are three ways to interact with the API:\n - Validate the iban with `validate_iban` this does not indicate what is incorrect when the iban in invalid.\n - Validate the iban with `validate_iban_with_error` does the same and give an error message when the iban is invalid.\n - create an `IbanValidation` which allows to select the validated iban, the branch_id and bank_id when relevant.\n\n See below code for illustration:\n\n```python\nimport iban_validation_py\nfrom iban_validation_py import IbanValidation\n\nresult = iban_validation_py.validate_iban('AL47212110090000000235698741')\nassert(result is True)\nresult = iban_validation_py.validate_iban('AL47212110090000000235698741VV')\nassert(result is False)\nresult, message = iban_validation_py.validate_iban_with_error('AL47212110090000000235698741VV')\nassert(result is False)\nassert(message == 'IBAN Validation failed: The length of the input Iban does match the length for that country') \n\n# # Valid IBAN\niban = IbanValidation('AL47212110090000000235698741')\nassert('AL47212110090000000235698741' == iban.stored_iban)\nassert('212' == iban.iban_bank_id)\nassert('11009' == iban.iban_branch_id)\n```\n## Credit\nCheers to the [Pyo3 Maturin](https://github.com/PyO3/maturin) project! It made this package possible.\n\n## Changes\n - 0.1.8: improve mod97 perf (cpu memory tradeof).\n - 0.1.7: improve performance related to the Iban structure again.\n - 0.1.6: improve performance related to the Iban structure.\n - 0.1.5: added support to Python 3.13\n - 0.1.4: technical update; updated polars dependency to polars 0.46.0, and py03 0.23 impacting only the Python packages.\n",
"bugtrack_url": null,
"license": "MIT",
"summary": "A package to facilitate validation of IBANs and selecting Bank_id and Branch_id",
"version": "0.1.8",
"project_urls": {
"Homepage": "https://github.com/ericqu/iban_validation",
"Issues": "https://github.com/ericqu/iban_validation/issues"
},
"split_keywords": [],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "e097f5771e13878442b4b357bb7236f035c41b49da455d1fa9895eea8c017a40",
"md5": "a98e9c5f8605a525ddcead29ce169213",
"sha256": "61b602aef6cb8235a0245d46eb3f4bd545cfb268ca6acb3fe3ebd795cf790e9c"
},
"downloads": -1,
"filename": "iban_validation_py-0.1.8-cp310-cp310-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "a98e9c5f8605a525ddcead29ce169213",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 257831,
"upload_time": "2025-03-18T22:09:28",
"upload_time_iso_8601": "2025-03-18T22:09:28.024829Z",
"url": "https://files.pythonhosted.org/packages/e0/97/f5771e13878442b4b357bb7236f035c41b49da455d1fa9895eea8c017a40/iban_validation_py-0.1.8-cp310-cp310-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ff9a3a5a4acbc8600b5e1adfbcbd7c2dfa2f1e0988ff16602e8c32835a4bcf98",
"md5": "3570b414e4d8ec18edc221975f969b69",
"sha256": "6b32a5dcbe406b3b77e65420dcf12a6847b8c25a7eb974dfb79e74ee265fb86b"
},
"downloads": -1,
"filename": "iban_validation_py-0.1.8-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "3570b414e4d8ec18edc221975f969b69",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 249798,
"upload_time": "2025-03-18T22:09:29",
"upload_time_iso_8601": "2025-03-18T22:09:29.499801Z",
"url": "https://files.pythonhosted.org/packages/ff/9a/3a5a4acbc8600b5e1adfbcbd7c2dfa2f1e0988ff16602e8c32835a4bcf98/iban_validation_py-0.1.8-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c6c8f5579a2e03f29d5bcde64860693daecb53636a8d4b05d1c46e4009585aae",
"md5": "803996a783ff3ebc3b1af5ec14d6e973",
"sha256": "cc53475d905c0ac8c40d8fc0e6f60e9e0bab406ea8326495a2373c0d611f2c06"
},
"downloads": -1,
"filename": "iban_validation_py-0.1.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "803996a783ff3ebc3b1af5ec14d6e973",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 281208,
"upload_time": "2025-03-18T22:09:30",
"upload_time_iso_8601": "2025-03-18T22:09:30.469532Z",
"url": "https://files.pythonhosted.org/packages/c6/c8/f5579a2e03f29d5bcde64860693daecb53636a8d4b05d1c46e4009585aae/iban_validation_py-0.1.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8f971725db9ed10fe5f6bbe7fd57a0ca2c96153e1b2209999e7358552d5d1b8e",
"md5": "ef2b434458518bde25d47c236bbc7ffb",
"sha256": "b760562149b3e5fb17d6501c62ccf7ee03a884ed604beafd77d00b13fa8d7dfe"
},
"downloads": -1,
"filename": "iban_validation_py-0.1.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "ef2b434458518bde25d47c236bbc7ffb",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 297004,
"upload_time": "2025-03-18T22:09:31",
"upload_time_iso_8601": "2025-03-18T22:09:31.592593Z",
"url": "https://files.pythonhosted.org/packages/8f/97/1725db9ed10fe5f6bbe7fd57a0ca2c96153e1b2209999e7358552d5d1b8e/iban_validation_py-0.1.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9765a4fd72c93d084b4f675db023cc2749c04dc3a6fd00a040f3c1bc2207b17b",
"md5": "86e94b8a3ad6861d6b68b8eca147e3cd",
"sha256": "fcdc037aaa9bd7eb1e9b267a9a539d6cdfe178c4ec653d10ad56fb4332decd85"
},
"downloads": -1,
"filename": "iban_validation_py-0.1.8-cp310-none-win_amd64.whl",
"has_sig": false,
"md5_digest": "86e94b8a3ad6861d6b68b8eca147e3cd",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 176969,
"upload_time": "2025-03-18T22:09:32",
"upload_time_iso_8601": "2025-03-18T22:09:32.902128Z",
"url": "https://files.pythonhosted.org/packages/97/65/a4fd72c93d084b4f675db023cc2749c04dc3a6fd00a040f3c1bc2207b17b/iban_validation_py-0.1.8-cp310-none-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9851043032ca2ab53302bf2e54fffc78ea0f74044db414a143ed1c75fd2d4f0c",
"md5": "879115c98c43d1dc9f7e9a0770c54fc7",
"sha256": "b890cc7ffe4be45946501bbaa64914ad0e46af8244e97fafd27ce3ee428560b3"
},
"downloads": -1,
"filename": "iban_validation_py-0.1.8-cp311-cp311-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "879115c98c43d1dc9f7e9a0770c54fc7",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 257975,
"upload_time": "2025-03-18T22:09:33",
"upload_time_iso_8601": "2025-03-18T22:09:33.830451Z",
"url": "https://files.pythonhosted.org/packages/98/51/043032ca2ab53302bf2e54fffc78ea0f74044db414a143ed1c75fd2d4f0c/iban_validation_py-0.1.8-cp311-cp311-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "fea06d0db3eb0142e740d3b3784d07208da34b4229be003afd41182e162a38bf",
"md5": "23898ffc135ff27abf7f96120ba7414b",
"sha256": "643ee3d4475f907a8034fc1884b72dec11623aa66316ee0fa1830cf61d91d687"
},
"downloads": -1,
"filename": "iban_validation_py-0.1.8-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "23898ffc135ff27abf7f96120ba7414b",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 249738,
"upload_time": "2025-03-18T22:09:34",
"upload_time_iso_8601": "2025-03-18T22:09:34.794909Z",
"url": "https://files.pythonhosted.org/packages/fe/a0/6d0db3eb0142e740d3b3784d07208da34b4229be003afd41182e162a38bf/iban_validation_py-0.1.8-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2b8390dd9d0fefe1215d53829a9636c19b9ecd4f21584ba18abc40c68d818ebd",
"md5": "b6c677f8bc608a356467cab31a76aaeb",
"sha256": "8e645f8e1a677df8a0a19731302f6b2b6f401bd354b1cabdca94a6b57f49b71b"
},
"downloads": -1,
"filename": "iban_validation_py-0.1.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "b6c677f8bc608a356467cab31a76aaeb",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 281246,
"upload_time": "2025-03-18T22:09:35",
"upload_time_iso_8601": "2025-03-18T22:09:35.774035Z",
"url": "https://files.pythonhosted.org/packages/2b/83/90dd9d0fefe1215d53829a9636c19b9ecd4f21584ba18abc40c68d818ebd/iban_validation_py-0.1.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4f92b8d160152c4d6792e9ae271da0bcd698997eecd397161200abb6414c33ef",
"md5": "26479b495f6263a59a51403c76324770",
"sha256": "27acc72c076a4530a84b17aa0bc7364872f1e089dc2a863436945728bfe93437"
},
"downloads": -1,
"filename": "iban_validation_py-0.1.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "26479b495f6263a59a51403c76324770",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 297058,
"upload_time": "2025-03-18T22:09:37",
"upload_time_iso_8601": "2025-03-18T22:09:37.133849Z",
"url": "https://files.pythonhosted.org/packages/4f/92/b8d160152c4d6792e9ae271da0bcd698997eecd397161200abb6414c33ef/iban_validation_py-0.1.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e0c1d9d9d53daa3970e7ab6d91b4df425a4e8e235cf44b9acc43f08d54ef404d",
"md5": "ecfe7295db40e3a795bd07fe616c2d92",
"sha256": "fe3018fde23af4850b2a67a4fd2a2dcc7edbce4df5945a1c3b1d9523615ea116"
},
"downloads": -1,
"filename": "iban_validation_py-0.1.8-cp311-none-win_amd64.whl",
"has_sig": false,
"md5_digest": "ecfe7295db40e3a795bd07fe616c2d92",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 176894,
"upload_time": "2025-03-18T22:09:38",
"upload_time_iso_8601": "2025-03-18T22:09:38.153943Z",
"url": "https://files.pythonhosted.org/packages/e0/c1/d9d9d53daa3970e7ab6d91b4df425a4e8e235cf44b9acc43f08d54ef404d/iban_validation_py-0.1.8-cp311-none-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ec2f14225d2b3f72ac7d069ba318c684853a7e590faaa501a99aa2f6207e8e9d",
"md5": "7b3c6cbc47167baf98ee7e580e21da02",
"sha256": "04f838069744291f0b0659b175daf6dd7b789add6c0bfcf1d8dbcf46e64e08cd"
},
"downloads": -1,
"filename": "iban_validation_py-0.1.8-cp312-cp312-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "7b3c6cbc47167baf98ee7e580e21da02",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 255846,
"upload_time": "2025-03-18T22:09:39",
"upload_time_iso_8601": "2025-03-18T22:09:39.132852Z",
"url": "https://files.pythonhosted.org/packages/ec/2f/14225d2b3f72ac7d069ba318c684853a7e590faaa501a99aa2f6207e8e9d/iban_validation_py-0.1.8-cp312-cp312-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7bfa1d9a196fb1d69efde9aa5848efa619e9d3cb7940ed49aa87b147897ab85f",
"md5": "2dedfa5b12407e79a9dba849fa5dd86e",
"sha256": "34d3e4e7d027904b7fb4f38db5756f4a38123f42fe7af50b2af7c1c657cca39e"
},
"downloads": -1,
"filename": "iban_validation_py-0.1.8-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "2dedfa5b12407e79a9dba849fa5dd86e",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 247644,
"upload_time": "2025-03-18T22:09:40",
"upload_time_iso_8601": "2025-03-18T22:09:40.202439Z",
"url": "https://files.pythonhosted.org/packages/7b/fa/1d9a196fb1d69efde9aa5848efa619e9d3cb7940ed49aa87b147897ab85f/iban_validation_py-0.1.8-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "71187112171084ae94683b8cdff793ca166cc7ee86e268f41e9a4f9af335dd84",
"md5": "facda3c544f2346d0090b6cc5f8924f0",
"sha256": "633109367c028b8c21c33f806e8e677ed1dcb02553e3178527aec8eb9bb0ecbb"
},
"downloads": -1,
"filename": "iban_validation_py-0.1.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "facda3c544f2346d0090b6cc5f8924f0",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 281271,
"upload_time": "2025-03-18T22:09:41",
"upload_time_iso_8601": "2025-03-18T22:09:41.557993Z",
"url": "https://files.pythonhosted.org/packages/71/18/7112171084ae94683b8cdff793ca166cc7ee86e268f41e9a4f9af335dd84/iban_validation_py-0.1.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9dd0bd0662dddc1aea15e7d688178c483a60f5813fadb3d4cf4dcdd14287b3ea",
"md5": "706fcf2b2acfac0e4c3337c3d595ff98",
"sha256": "e96fd60a8712afb61aedac51e2a08c1b50dabb2c8eb106721503de46cee8e6d3"
},
"downloads": -1,
"filename": "iban_validation_py-0.1.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "706fcf2b2acfac0e4c3337c3d595ff98",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 296834,
"upload_time": "2025-03-18T22:09:42",
"upload_time_iso_8601": "2025-03-18T22:09:42.558062Z",
"url": "https://files.pythonhosted.org/packages/9d/d0/bd0662dddc1aea15e7d688178c483a60f5813fadb3d4cf4dcdd14287b3ea/iban_validation_py-0.1.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e3d1ce8db2eadae05426da094f283814801487798ea60ce17d6ebcb7e6f48a46",
"md5": "63cf73029f3444f0cc3b56fd2b21318a",
"sha256": "4760c18de573ec57265ed386c188e799a928e17d74795df58a8a3de85824035a"
},
"downloads": -1,
"filename": "iban_validation_py-0.1.8-cp312-none-win_amd64.whl",
"has_sig": false,
"md5_digest": "63cf73029f3444f0cc3b56fd2b21318a",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 177356,
"upload_time": "2025-03-18T22:09:43",
"upload_time_iso_8601": "2025-03-18T22:09:43.663681Z",
"url": "https://files.pythonhosted.org/packages/e3/d1/ce8db2eadae05426da094f283814801487798ea60ce17d6ebcb7e6f48a46/iban_validation_py-0.1.8-cp312-none-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d2946718951e95cb4a264d382c74ec05174345211d4789874b40ad9a35d0f852",
"md5": "a3aabd53ab32d36b0bdc4b0fa027912c",
"sha256": "a39601f83364f34a6268b8a587a4e34b2b35c51a841eace0b006dbc35ceae570"
},
"downloads": -1,
"filename": "iban_validation_py-0.1.8-cp313-cp313-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "a3aabd53ab32d36b0bdc4b0fa027912c",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 255852,
"upload_time": "2025-03-18T22:09:44",
"upload_time_iso_8601": "2025-03-18T22:09:44.867879Z",
"url": "https://files.pythonhosted.org/packages/d2/94/6718951e95cb4a264d382c74ec05174345211d4789874b40ad9a35d0f852/iban_validation_py-0.1.8-cp313-cp313-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1f36f92e00df2e63ed9d011e7b293713671ca273dc272bdbfcb1c5e5329e1c7b",
"md5": "05d4267dc38a3f7251ec929f0d12ad77",
"sha256": "f74f4b3898e4e114a13d0612b9e3c8833300c7e3e3922d6468a7bad80611b5e4"
},
"downloads": -1,
"filename": "iban_validation_py-0.1.8-cp313-cp313-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "05d4267dc38a3f7251ec929f0d12ad77",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 247578,
"upload_time": "2025-03-18T22:09:46",
"upload_time_iso_8601": "2025-03-18T22:09:46.159652Z",
"url": "https://files.pythonhosted.org/packages/1f/36/f92e00df2e63ed9d011e7b293713671ca273dc272bdbfcb1c5e5329e1c7b/iban_validation_py-0.1.8-cp313-cp313-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b08e72f7f48ccb402478c473ad6edd13bb196ac7e6fde3bb07e0bfd8c77c5180",
"md5": "07ec98b1832e0dd5bc195e2202890143",
"sha256": "14acf6bda95eb45bc5f56906215b0f99af83ffd9cbf677ebb41c6eba8af4d7e2"
},
"downloads": -1,
"filename": "iban_validation_py-0.1.8-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "07ec98b1832e0dd5bc195e2202890143",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 281094,
"upload_time": "2025-03-18T22:09:47",
"upload_time_iso_8601": "2025-03-18T22:09:47.163023Z",
"url": "https://files.pythonhosted.org/packages/b0/8e/72f7f48ccb402478c473ad6edd13bb196ac7e6fde3bb07e0bfd8c77c5180/iban_validation_py-0.1.8-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b0a0a6f8abbc59de8dac21fbdfbd7aa4a635c4d604db14846fe1621f03094947",
"md5": "3d79b690150cc71d3459e95bf5e4d1ff",
"sha256": "d6347b8cf7e53ce2d712697d60ee87f570880e376dfaa740d2c235c8c44a3985"
},
"downloads": -1,
"filename": "iban_validation_py-0.1.8-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "3d79b690150cc71d3459e95bf5e4d1ff",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 296724,
"upload_time": "2025-03-18T22:09:48",
"upload_time_iso_8601": "2025-03-18T22:09:48.667496Z",
"url": "https://files.pythonhosted.org/packages/b0/a0/a6f8abbc59de8dac21fbdfbd7aa4a635c4d604db14846fe1621f03094947/iban_validation_py-0.1.8-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f38b207b0b64ccd9d37d40efc1162b0ec5c3f29adb98ad21fdabdcb10f46636b",
"md5": "85a431ba48112cda5b07a38cf3404650",
"sha256": "0ee9bb7d7406d2e76b5eae57bc427ab9e4aa498da1dc434f8a4087d86dd5536a"
},
"downloads": -1,
"filename": "iban_validation_py-0.1.8-cp313-none-win_amd64.whl",
"has_sig": false,
"md5_digest": "85a431ba48112cda5b07a38cf3404650",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 177245,
"upload_time": "2025-03-18T22:09:50",
"upload_time_iso_8601": "2025-03-18T22:09:50.354803Z",
"url": "https://files.pythonhosted.org/packages/f3/8b/207b0b64ccd9d37d40efc1162b0ec5c3f29adb98ad21fdabdcb10f46636b/iban_validation_py-0.1.8-cp313-none-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "dade6347e2c91468f2f240255148ab80a6a0b734e21afa1823579eb62d20c8c0",
"md5": "f287c775677f83f6393928859b724895",
"sha256": "6c1c8b0770e0028771477359cdce723a8b0929e2f2fff228002336fa0145a87f"
},
"downloads": -1,
"filename": "iban_validation_py-0.1.8-cp39-cp39-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "f287c775677f83f6393928859b724895",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 258004,
"upload_time": "2025-03-18T22:09:51",
"upload_time_iso_8601": "2025-03-18T22:09:51.304331Z",
"url": "https://files.pythonhosted.org/packages/da/de/6347e2c91468f2f240255148ab80a6a0b734e21afa1823579eb62d20c8c0/iban_validation_py-0.1.8-cp39-cp39-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e7c4480ac131171ee81046e0535e485496a4ea1892fbd967edafd486f151d5ce",
"md5": "9e4777722a815e0f17af1340193e155b",
"sha256": "5a62900743a6b595817e3a7d14015c5ca312ca8cac07b7efbcc0448659f9c10c"
},
"downloads": -1,
"filename": "iban_validation_py-0.1.8-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "9e4777722a815e0f17af1340193e155b",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 249772,
"upload_time": "2025-03-18T22:09:52",
"upload_time_iso_8601": "2025-03-18T22:09:52.366428Z",
"url": "https://files.pythonhosted.org/packages/e7/c4/480ac131171ee81046e0535e485496a4ea1892fbd967edafd486f151d5ce/iban_validation_py-0.1.8-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2c659728f8be7f40c45636756063b4c52ea9815dfe3d013515965b2dea9ecd7f",
"md5": "9686dedd78960478cc0c252d2201e0af",
"sha256": "670d1856c6755e68942342e6df5c424e095917d8f6099bc8123e05e5bd3cf95a"
},
"downloads": -1,
"filename": "iban_validation_py-0.1.8-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "9686dedd78960478cc0c252d2201e0af",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 281306,
"upload_time": "2025-03-18T22:09:53",
"upload_time_iso_8601": "2025-03-18T22:09:53.534868Z",
"url": "https://files.pythonhosted.org/packages/2c/65/9728f8be7f40c45636756063b4c52ea9815dfe3d013515965b2dea9ecd7f/iban_validation_py-0.1.8-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9813f83abc497bee7c7f965ec62327db923f102065e9d0bae5db9941872db77d",
"md5": "2d2cf180792e5171573edca258950b0a",
"sha256": "a2073efac692cc6b4805d6a6d59743b56c9d2eeebf158df24b645fad89faeabe"
},
"downloads": -1,
"filename": "iban_validation_py-0.1.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "2d2cf180792e5171573edca258950b0a",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 297008,
"upload_time": "2025-03-18T22:09:54",
"upload_time_iso_8601": "2025-03-18T22:09:54.637892Z",
"url": "https://files.pythonhosted.org/packages/98/13/f83abc497bee7c7f965ec62327db923f102065e9d0bae5db9941872db77d/iban_validation_py-0.1.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f8ce4d65d558e5ec6f0ea1ec3b07c4edf26539fee69e993d47bd738ecef77eac",
"md5": "2c2089c72d2bcf1f0cd14863b9280da3",
"sha256": "dcc38955254103379d725b6b763791f6a622b94525921fe24dea937e161333b7"
},
"downloads": -1,
"filename": "iban_validation_py-0.1.8-cp39-none-win_amd64.whl",
"has_sig": false,
"md5_digest": "2c2089c72d2bcf1f0cd14863b9280da3",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 177611,
"upload_time": "2025-03-18T22:09:55",
"upload_time_iso_8601": "2025-03-18T22:09:55.762439Z",
"url": "https://files.pythonhosted.org/packages/f8/ce/4d65d558e5ec6f0ea1ec3b07c4edf26539fee69e993d47bd738ecef77eac/iban_validation_py-0.1.8-cp39-none-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "12e92a69185f1c4975a0ff8890f65673cd0ebcd181e2327632570f80cd1f589a",
"md5": "db16b3f0b5230e15fa381c63e61270b8",
"sha256": "3a5ee07c9b2c1e5cd8167f1c479aebab462bf48b1f9734730dbf212fc66821a3"
},
"downloads": -1,
"filename": "iban_validation_py-0.1.8.tar.gz",
"has_sig": false,
"md5_digest": "db16b3f0b5230e15fa381c63e61270b8",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.9",
"size": 43453,
"upload_time": "2025-03-18T22:09:57",
"upload_time_iso_8601": "2025-03-18T22:09:57.595561Z",
"url": "https://files.pythonhosted.org/packages/12/e9/2a69185f1c4975a0ff8890f65673cd0ebcd181e2327632570f80cd1f589a/iban_validation_py-0.1.8.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-03-18 22:09:57",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "ericqu",
"github_project": "iban_validation",
"travis_ci": false,
"coveralls": false,
"github_actions": false,
"lcname": "iban-validation-py"
}