Name | iban-validation-polars JSON |
Version |
0.1.8
JSON |
| download |
home_page | None |
Summary | A package to facilitate validation of IBANs and selecting Bank identifier and Branch identifier as a Polars plugin |
upload_time | 2025-03-18 22:09:56 |
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_polars
A package to facilitate validation of IBANs and getting bank identifier and branch identifier as a Polars plugin.
Leveraging Polars Multi-threaded feature to split IBANs
Example:
```python
import polars as pl
from iban_validation_polars import process_ibans
import os
inputfile = r'iban_validation_rs/data/IBAN Examples.txt'
outputfile = r'iban_validation_polars/examples/test_file.csv'
# File generation
df = pl.read_csv(inputfile).sample(10000000, with_replacement=True)
df.write_csv(outputfile)
print('writing to file complete')
# using the library
df = pl.scan_csv(outputfile)\
.with_columns(
validated=process_ibans('IBAN Examples').str.split_exact(',',2)\
.struct.rename_fields(['valid_ibans', 'bank_id', 'branch_id'])
).unnest('validated').sort(by='IBAN Examples', descending=True)
# show some results
print(df.collect(streaming=True))
# cleanup
os.remove(outputfile)
```
## Credits
Cheers to the [pyo3-polars project](https://github.com/pola-rs/pyo3-polars)! It made this library 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: add support to Python 3.13
- 0.1.4: technical update; updated polars dependency to polars 0.46.0, pyo3-polars 0.20, and py03 0.23.
Raw data
{
"_id": null,
"home_page": null,
"name": "iban-validation-polars",
"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/89/95/a694b3da81fa87689a819a55a5e63e376f784c3f9cdb57af1e364c24aff0/iban_validation_polars-0.1.8.tar.gz",
"platform": null,
"description": "# iban_validation_polars\nA package to facilitate validation of IBANs and getting bank identifier and branch identifier as a Polars plugin.\n\nLeveraging Polars Multi-threaded feature to split IBANs\n\nExample:\n```python\nimport polars as pl\nfrom iban_validation_polars import process_ibans\nimport os\n\ninputfile = r'iban_validation_rs/data/IBAN Examples.txt'\noutputfile = r'iban_validation_polars/examples/test_file.csv'\n\n# File generation \ndf = pl.read_csv(inputfile).sample(10000000, with_replacement=True)\ndf.write_csv(outputfile)\nprint('writing to file complete')\n\n# using the library\ndf = pl.scan_csv(outputfile)\\\n .with_columns(\n validated=process_ibans('IBAN Examples').str.split_exact(',',2)\\\n .struct.rename_fields(['valid_ibans', 'bank_id', 'branch_id'])\n).unnest('validated').sort(by='IBAN Examples', descending=True)\n\n# show some results\nprint(df.collect(streaming=True))\n\n# cleanup\nos.remove(outputfile)\n```\n## Credits\nCheers to the [pyo3-polars project](https://github.com/pola-rs/pyo3-polars)! It made this library 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: add support to Python 3.13\n - 0.1.4: technical update; updated polars dependency to polars 0.46.0, pyo3-polars 0.20, and py03 0.23.\n",
"bugtrack_url": null,
"license": "MIT",
"summary": "A package to facilitate validation of IBANs and selecting Bank identifier and Branch identifier as a Polars plugin",
"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": "c5599c3847ff7a02700300289ccff46111003d7ac11f3fb1fa9ba40317b8c46a",
"md5": "c68967b8311f23d0773f8bca46bff52c",
"sha256": "dd235eb24c56c3145cc1196c5bb2a40ba3a8f648e838f9346d7a4183f3dc5bcc"
},
"downloads": -1,
"filename": "iban_validation_polars-0.1.8-cp310-cp310-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "c68967b8311f23d0773f8bca46bff52c",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 3318531,
"upload_time": "2025-03-18T22:08:17",
"upload_time_iso_8601": "2025-03-18T22:08:17.086415Z",
"url": "https://files.pythonhosted.org/packages/c5/59/9c3847ff7a02700300289ccff46111003d7ac11f3fb1fa9ba40317b8c46a/iban_validation_polars-0.1.8-cp310-cp310-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0a8df8cb4cd8e400a25b921c3c4da8faa2c27af305a640d7b6f3f4a0219fbe85",
"md5": "ff083dda867bde312e49cb43d1deda46",
"sha256": "b61475e6f2d7bfab266e7cd5e65ba237266cc94d3b3e606bdf091f0516b2c8ca"
},
"downloads": -1,
"filename": "iban_validation_polars-0.1.8-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "ff083dda867bde312e49cb43d1deda46",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 3014819,
"upload_time": "2025-03-18T22:08:25",
"upload_time_iso_8601": "2025-03-18T22:08:25.172160Z",
"url": "https://files.pythonhosted.org/packages/0a/8d/f8cb4cd8e400a25b921c3c4da8faa2c27af305a640d7b6f3f4a0219fbe85/iban_validation_polars-0.1.8-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a191f995a44cf0d0e222b60d22cf5683964a5ffe6e81b356255749bf171f0bd4",
"md5": "931aabea0d2ee11b53faed4bb9850edd",
"sha256": "2ef35ab6aebe4126006df23e9ccc95f2db810476865cb251bcea3eb1473560b4"
},
"downloads": -1,
"filename": "iban_validation_polars-0.1.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "931aabea0d2ee11b53faed4bb9850edd",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 3380487,
"upload_time": "2025-03-18T22:08:28",
"upload_time_iso_8601": "2025-03-18T22:08:28.140336Z",
"url": "https://files.pythonhosted.org/packages/a1/91/f995a44cf0d0e222b60d22cf5683964a5ffe6e81b356255749bf171f0bd4/iban_validation_polars-0.1.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c1039359d1ccf78f7c65650c5a0934fe86d078096adce2caa9757978f894d6f4",
"md5": "6751bfef9cf5d24ff68b60b795decd83",
"sha256": "993a09a06fa6bb027a25368ff18db14f6ae782911baa8a8134ee4f6bf7c773bd"
},
"downloads": -1,
"filename": "iban_validation_polars-0.1.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "6751bfef9cf5d24ff68b60b795decd83",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 3794130,
"upload_time": "2025-03-18T22:08:30",
"upload_time_iso_8601": "2025-03-18T22:08:30.704863Z",
"url": "https://files.pythonhosted.org/packages/c1/03/9359d1ccf78f7c65650c5a0934fe86d078096adce2caa9757978f894d6f4/iban_validation_polars-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": "f4bd57074af5d4d69332d01ebcdca4b29f899043f4bb10ac2ace79275d9aa467",
"md5": "5c6db88b8d8397b40f73e928a154b041",
"sha256": "7282223ae2a3842ed2d5a4b51ac00e8b8eec1683b8688add33ca1e21ef549d51"
},
"downloads": -1,
"filename": "iban_validation_polars-0.1.8-cp310-none-win_amd64.whl",
"has_sig": false,
"md5_digest": "5c6db88b8d8397b40f73e928a154b041",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 3698548,
"upload_time": "2025-03-18T22:08:32",
"upload_time_iso_8601": "2025-03-18T22:08:32.957050Z",
"url": "https://files.pythonhosted.org/packages/f4/bd/57074af5d4d69332d01ebcdca4b29f899043f4bb10ac2ace79275d9aa467/iban_validation_polars-0.1.8-cp310-none-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f726be3df58d1fbfdbc45a35bb226e718008d7b87302127bfe7b46a1bb23a665",
"md5": "b25872faf1189a007d95f21d958ba821",
"sha256": "aeadb844d82351b967c780b617f46fc5ac624e7cba5f5e5dadd6646d15eca9a6"
},
"downloads": -1,
"filename": "iban_validation_polars-0.1.8-cp311-cp311-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "b25872faf1189a007d95f21d958ba821",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 3318533,
"upload_time": "2025-03-18T22:08:35",
"upload_time_iso_8601": "2025-03-18T22:08:35.353431Z",
"url": "https://files.pythonhosted.org/packages/f7/26/be3df58d1fbfdbc45a35bb226e718008d7b87302127bfe7b46a1bb23a665/iban_validation_polars-0.1.8-cp311-cp311-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "30b2fdf0fa00b8090514769d7ff7d86d82dd7c22ecf5a6c46ff54bfbdd1dd190",
"md5": "82ed7afee95af1e799bb2e98b7b899ff",
"sha256": "873903466980411c6bb2e577178d90ac528341cb262db59805d05f77e0723a2f"
},
"downloads": -1,
"filename": "iban_validation_polars-0.1.8-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "82ed7afee95af1e799bb2e98b7b899ff",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 3014819,
"upload_time": "2025-03-18T22:08:37",
"upload_time_iso_8601": "2025-03-18T22:08:37.876343Z",
"url": "https://files.pythonhosted.org/packages/30/b2/fdf0fa00b8090514769d7ff7d86d82dd7c22ecf5a6c46ff54bfbdd1dd190/iban_validation_polars-0.1.8-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "eee4d3523f4fcd0716897f9e53f7664784ef100b12da128b93f7f3271625e05d",
"md5": "fe16cda1d7e94c7283d24c4a1137caaf",
"sha256": "cdbe84f6fb1dff40899899094e342398a20f7b53cf7042816d285941f330b39d"
},
"downloads": -1,
"filename": "iban_validation_polars-0.1.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "fe16cda1d7e94c7283d24c4a1137caaf",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 3380452,
"upload_time": "2025-03-18T22:08:40",
"upload_time_iso_8601": "2025-03-18T22:08:40.582837Z",
"url": "https://files.pythonhosted.org/packages/ee/e4/d3523f4fcd0716897f9e53f7664784ef100b12da128b93f7f3271625e05d/iban_validation_polars-0.1.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8425f5345820a0569d27fad27d496cb0e9d12899b9a47015ba970a6230ff2954",
"md5": "bcd8598d2c00ca0786807aaccd0c87ad",
"sha256": "d629b86773c2f31682df3850166b40ef66f5a70d39921b5ad89e5b4a7e9676df"
},
"downloads": -1,
"filename": "iban_validation_polars-0.1.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "bcd8598d2c00ca0786807aaccd0c87ad",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 3794179,
"upload_time": "2025-03-18T22:08:43",
"upload_time_iso_8601": "2025-03-18T22:08:43.461780Z",
"url": "https://files.pythonhosted.org/packages/84/25/f5345820a0569d27fad27d496cb0e9d12899b9a47015ba970a6230ff2954/iban_validation_polars-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": "9d2bb0dc0561ce2aced8844ed054ad8c646e354419e8546b4e972fc5ae7e3895",
"md5": "960e375ec790760d3fd373260630b5f0",
"sha256": "e7efbe1ce1e0d2839b747e70fc5d18f4ebf2386b368e94aaa55ba1797ebc76a1"
},
"downloads": -1,
"filename": "iban_validation_polars-0.1.8-cp311-none-win_amd64.whl",
"has_sig": false,
"md5_digest": "960e375ec790760d3fd373260630b5f0",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 3698552,
"upload_time": "2025-03-18T22:08:45",
"upload_time_iso_8601": "2025-03-18T22:08:45.928380Z",
"url": "https://files.pythonhosted.org/packages/9d/2b/b0dc0561ce2aced8844ed054ad8c646e354419e8546b4e972fc5ae7e3895/iban_validation_polars-0.1.8-cp311-none-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ec785af78edc352a5cbdddcf42530a426ab1cca564bd5fc2f5e77f99a0b7a62e",
"md5": "97fcf77c8f802b0790013a1cb2362098",
"sha256": "52908d091c26f2beeb84a5fa329260aca97bc5f3eae95e6a19e1f59df6998ef5"
},
"downloads": -1,
"filename": "iban_validation_polars-0.1.8-cp312-cp312-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "97fcf77c8f802b0790013a1cb2362098",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 3318540,
"upload_time": "2025-03-18T22:08:48",
"upload_time_iso_8601": "2025-03-18T22:08:48.471615Z",
"url": "https://files.pythonhosted.org/packages/ec/78/5af78edc352a5cbdddcf42530a426ab1cca564bd5fc2f5e77f99a0b7a62e/iban_validation_polars-0.1.8-cp312-cp312-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "15cf995163fe3462cf481505bb4d9b9832e914baf760da11afa9b5b88b0035fe",
"md5": "2e2fd4169d5a1d11db32600cdfe655cc",
"sha256": "dbfb0f0bc47803984c59c22446d039cb5e33dc212f99c70500f33b6580118cc1"
},
"downloads": -1,
"filename": "iban_validation_polars-0.1.8-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "2e2fd4169d5a1d11db32600cdfe655cc",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 3014791,
"upload_time": "2025-03-18T22:08:50",
"upload_time_iso_8601": "2025-03-18T22:08:50.926314Z",
"url": "https://files.pythonhosted.org/packages/15/cf/995163fe3462cf481505bb4d9b9832e914baf760da11afa9b5b88b0035fe/iban_validation_polars-0.1.8-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4bc28086d949db40407027a544c665734f5f8c5747fe7de01074f919769f0fde",
"md5": "e79f8fdedab00fa9cc4b33d03eda564e",
"sha256": "a3272aa86e4df6335e02e0f41232853bb793bbb6fe025426198d9c758f040775"
},
"downloads": -1,
"filename": "iban_validation_polars-0.1.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "e79f8fdedab00fa9cc4b33d03eda564e",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 3379722,
"upload_time": "2025-03-18T22:08:53",
"upload_time_iso_8601": "2025-03-18T22:08:53.416856Z",
"url": "https://files.pythonhosted.org/packages/4b/c2/8086d949db40407027a544c665734f5f8c5747fe7de01074f919769f0fde/iban_validation_polars-0.1.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1e0150799bb7a1bdd29e93a3b7cbe6dece6a70a1d851d71674479e9114c04535",
"md5": "62d1017fa06e54ba3adba6b160f7ae8e",
"sha256": "dabeceae202acef6f2e86a2b4c2ffc811b85d0be823466a0e492b9d1d54d934d"
},
"downloads": -1,
"filename": "iban_validation_polars-0.1.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "62d1017fa06e54ba3adba6b160f7ae8e",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 3793922,
"upload_time": "2025-03-18T22:08:56",
"upload_time_iso_8601": "2025-03-18T22:08:56.485229Z",
"url": "https://files.pythonhosted.org/packages/1e/01/50799bb7a1bdd29e93a3b7cbe6dece6a70a1d851d71674479e9114c04535/iban_validation_polars-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": "6311700e4b5db7a56eb16b338782bd979816aae8ed444d5c368e9eda91a9416b",
"md5": "6d70a19a11f34488efb59f6fa4b39ecd",
"sha256": "8c6d87a3ae2940f37bcaecbe166b8e55d25c9e4029e914b0cea78855cd75312f"
},
"downloads": -1,
"filename": "iban_validation_polars-0.1.8-cp312-none-win_amd64.whl",
"has_sig": false,
"md5_digest": "6d70a19a11f34488efb59f6fa4b39ecd",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 3698573,
"upload_time": "2025-03-18T22:08:59",
"upload_time_iso_8601": "2025-03-18T22:08:59.519431Z",
"url": "https://files.pythonhosted.org/packages/63/11/700e4b5db7a56eb16b338782bd979816aae8ed444d5c368e9eda91a9416b/iban_validation_polars-0.1.8-cp312-none-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "402cbd6d75fb305e45f8abf1de86e5d78b3c83bb1baaf54425e82d8f80010435",
"md5": "e0617a34b45165c6a2bd0c0723649f36",
"sha256": "12749389bf21cc0a25e4147f9ef454109d235935604a0c8b5f1a3f01a1217dcc"
},
"downloads": -1,
"filename": "iban_validation_polars-0.1.8-cp313-cp313-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "e0617a34b45165c6a2bd0c0723649f36",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 3318537,
"upload_time": "2025-03-18T22:09:02",
"upload_time_iso_8601": "2025-03-18T22:09:02.484459Z",
"url": "https://files.pythonhosted.org/packages/40/2c/bd6d75fb305e45f8abf1de86e5d78b3c83bb1baaf54425e82d8f80010435/iban_validation_polars-0.1.8-cp313-cp313-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "24d79c3d6859b297769689e74b6e4cb6024e529f9a87d5c04b89f178d5c8fd74",
"md5": "ded3a065203828d002f8bc5dc05a61ce",
"sha256": "ad10a8dbab18c96b78b782b371247fea34e860aa1cdbc989a0d6605346526cda"
},
"downloads": -1,
"filename": "iban_validation_polars-0.1.8-cp313-cp313-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "ded3a065203828d002f8bc5dc05a61ce",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 3014792,
"upload_time": "2025-03-18T22:09:05",
"upload_time_iso_8601": "2025-03-18T22:09:05.192781Z",
"url": "https://files.pythonhosted.org/packages/24/d7/9c3d6859b297769689e74b6e4cb6024e529f9a87d5c04b89f178d5c8fd74/iban_validation_polars-0.1.8-cp313-cp313-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ffbf357f99d7a943e2a8239374c55c4c6cd5ca18c66df62cf2e496e9f012f799",
"md5": "8c95976cdab90069edda4bc318bdb23e",
"sha256": "d6c58e39079a25eec5b91b0c6900ca221aa871606b76a5afd1623b1923682e91"
},
"downloads": -1,
"filename": "iban_validation_polars-0.1.8-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "8c95976cdab90069edda4bc318bdb23e",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 3379606,
"upload_time": "2025-03-18T22:09:07",
"upload_time_iso_8601": "2025-03-18T22:09:07.859993Z",
"url": "https://files.pythonhosted.org/packages/ff/bf/357f99d7a943e2a8239374c55c4c6cd5ca18c66df62cf2e496e9f012f799/iban_validation_polars-0.1.8-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "cbf69a34f5e8aec3600f16667f6d6c52ed0ab7e689c92d6a1195d5ce7e93ac84",
"md5": "6eca645dd7f68d9f988964bb9bbe55f6",
"sha256": "6a3b52daadd82e32a885dc09a99974a575680a2804c58657029b6e8f9db01786"
},
"downloads": -1,
"filename": "iban_validation_polars-0.1.8-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "6eca645dd7f68d9f988964bb9bbe55f6",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 3793973,
"upload_time": "2025-03-18T22:09:10",
"upload_time_iso_8601": "2025-03-18T22:09:10.832089Z",
"url": "https://files.pythonhosted.org/packages/cb/f6/9a34f5e8aec3600f16667f6d6c52ed0ab7e689c92d6a1195d5ce7e93ac84/iban_validation_polars-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": "963a136ecea42e8dd8a802b2c24cce74675fea98bdef53fe695b20ba6f05cec2",
"md5": "3f07e762a223b5f7eddad933c06ed5cf",
"sha256": "dc059ae8b3ac801e73a0dfbab78eeefebd3f68d059b1a81796c9c599f3945648"
},
"downloads": -1,
"filename": "iban_validation_polars-0.1.8-cp313-none-win_amd64.whl",
"has_sig": false,
"md5_digest": "3f07e762a223b5f7eddad933c06ed5cf",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 3698575,
"upload_time": "2025-03-18T22:09:13",
"upload_time_iso_8601": "2025-03-18T22:09:13.596010Z",
"url": "https://files.pythonhosted.org/packages/96/3a/136ecea42e8dd8a802b2c24cce74675fea98bdef53fe695b20ba6f05cec2/iban_validation_polars-0.1.8-cp313-none-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2ba3aebb4895a3c662a37aee58d9401d7d02e9a663b1bac4b15757a3234551a7",
"md5": "9edeb368ecee0f713fd2e058be4c9a61",
"sha256": "392af5dde31982a2c4d13b1477064db8cddca160a6b3185db0b97315c9749f21"
},
"downloads": -1,
"filename": "iban_validation_polars-0.1.8-cp39-cp39-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "9edeb368ecee0f713fd2e058be4c9a61",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 3318536,
"upload_time": "2025-03-18T22:09:16",
"upload_time_iso_8601": "2025-03-18T22:09:16.206275Z",
"url": "https://files.pythonhosted.org/packages/2b/a3/aebb4895a3c662a37aee58d9401d7d02e9a663b1bac4b15757a3234551a7/iban_validation_polars-0.1.8-cp39-cp39-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4d36d37366e164bbafc3bb244b70658e89e2cf13faa85009e8f9777414212c26",
"md5": "3157969ba57b99afa4504b0ca7516d23",
"sha256": "b8dc656251ff1c845376c9d3606dda31eab8d8d41ef50b1df5eba98feb0ae772"
},
"downloads": -1,
"filename": "iban_validation_polars-0.1.8-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "3157969ba57b99afa4504b0ca7516d23",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 3014846,
"upload_time": "2025-03-18T22:09:18",
"upload_time_iso_8601": "2025-03-18T22:09:18.468083Z",
"url": "https://files.pythonhosted.org/packages/4d/36/d37366e164bbafc3bb244b70658e89e2cf13faa85009e8f9777414212c26/iban_validation_polars-0.1.8-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "095e367dde05ee61d02a9cdef45322f13699feea730aabe323c6325ae77cd347",
"md5": "be1b3dba019e09d0af2d97a36cdbfc0e",
"sha256": "0ff57d3925d8dc989014b5fb6809682d9664e891342484f6a1128d95d799360c"
},
"downloads": -1,
"filename": "iban_validation_polars-0.1.8-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "be1b3dba019e09d0af2d97a36cdbfc0e",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 3380533,
"upload_time": "2025-03-18T22:09:21",
"upload_time_iso_8601": "2025-03-18T22:09:21.073005Z",
"url": "https://files.pythonhosted.org/packages/09/5e/367dde05ee61d02a9cdef45322f13699feea730aabe323c6325ae77cd347/iban_validation_polars-0.1.8-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5879709f640dd9b7eb83b7c412ffbb856d2df79a3d2a613cf1e38dce0dff393c",
"md5": "6ff7afde83aa4af185c648992916b834",
"sha256": "8feddd772d10dfa83b7915f514eb7b15efa41ec0311272648f2b1327a06e86a6"
},
"downloads": -1,
"filename": "iban_validation_polars-0.1.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "6ff7afde83aa4af185c648992916b834",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 3794193,
"upload_time": "2025-03-18T22:09:24",
"upload_time_iso_8601": "2025-03-18T22:09:24.148419Z",
"url": "https://files.pythonhosted.org/packages/58/79/709f640dd9b7eb83b7c412ffbb856d2df79a3d2a613cf1e38dce0dff393c/iban_validation_polars-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": "825a3edf81f8b118dd2a75cbd72e50b6b42c70cda82ea040e34938c0e0b3ad59",
"md5": "c4da3635d475157353c409436c464aea",
"sha256": "5754b50a970fd4c86c6b4787575d0cb536552e40bc1989dbd7be66fb9d5c0b25"
},
"downloads": -1,
"filename": "iban_validation_polars-0.1.8-cp39-none-win_amd64.whl",
"has_sig": false,
"md5_digest": "c4da3635d475157353c409436c464aea",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 3698552,
"upload_time": "2025-03-18T22:09:26",
"upload_time_iso_8601": "2025-03-18T22:09:26.767235Z",
"url": "https://files.pythonhosted.org/packages/82/5a/3edf81f8b118dd2a75cbd72e50b6b42c70cda82ea040e34938c0e0b3ad59/iban_validation_polars-0.1.8-cp39-none-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8995a694b3da81fa87689a819a55a5e63e376f784c3f9cdb57af1e364c24aff0",
"md5": "3358464c0808079784f8dcbc197223a0",
"sha256": "ef4355aa828243f47a795acd429a55100c93577fe7d10fe4f61f23088be8d539"
},
"downloads": -1,
"filename": "iban_validation_polars-0.1.8.tar.gz",
"has_sig": false,
"md5_digest": "3358464c0808079784f8dcbc197223a0",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.9",
"size": 43734,
"upload_time": "2025-03-18T22:09:56",
"upload_time_iso_8601": "2025-03-18T22:09:56.829082Z",
"url": "https://files.pythonhosted.org/packages/89/95/a694b3da81fa87689a819a55a5e63e376f784c3f9cdb57af1e364c24aff0/iban_validation_polars-0.1.8.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-03-18 22:09:56",
"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-polars"
}