csv-detective 0.10.1.dev2590__py3-none-any.whl → 0.10.1.dev2599__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (59) hide show
  1. csv_detective/format.py +3 -3
  2. csv_detective/formats/adresse.py +9 -9
  3. csv_detective/formats/binary.py +1 -1
  4. csv_detective/formats/booleen.py +2 -2
  5. csv_detective/formats/code_commune_insee.py +11 -10
  6. csv_detective/formats/code_csp_insee.py +1 -1
  7. csv_detective/formats/code_departement.py +7 -7
  8. csv_detective/formats/code_fantoir.py +5 -5
  9. csv_detective/formats/code_import.py +1 -1
  10. csv_detective/formats/code_postal.py +9 -9
  11. csv_detective/formats/code_region.py +6 -6
  12. csv_detective/formats/code_rna.py +7 -6
  13. csv_detective/formats/code_waldec.py +1 -1
  14. csv_detective/formats/commune.py +5 -5
  15. csv_detective/formats/csp_insee.py +6 -5
  16. csv_detective/formats/date.py +17 -17
  17. csv_detective/formats/date_fr.py +1 -1
  18. csv_detective/formats/datetime_aware.py +1 -1
  19. csv_detective/formats/departement.py +15 -15
  20. csv_detective/formats/email.py +13 -13
  21. csv_detective/formats/float.py +1 -1
  22. csv_detective/formats/geojson.py +9 -10
  23. csv_detective/formats/insee_ape700.py +10 -8
  24. csv_detective/formats/insee_canton.py +6 -6
  25. csv_detective/formats/int.py +1 -1
  26. csv_detective/formats/iso_country_code_alpha2.py +10 -9
  27. csv_detective/formats/iso_country_code_alpha3.py +2 -9
  28. csv_detective/formats/iso_country_code_numeric.py +2 -9
  29. csv_detective/formats/jour_de_la_semaine.py +11 -12
  30. csv_detective/formats/json.py +5 -0
  31. csv_detective/formats/latitude_l93.py +6 -22
  32. csv_detective/formats/latitude_wgs.py +19 -26
  33. csv_detective/formats/latitude_wgs_fr_metropole.py +2 -26
  34. csv_detective/formats/latlon_wgs.py +26 -26
  35. csv_detective/formats/longitude_l93.py +6 -13
  36. csv_detective/formats/longitude_wgs.py +22 -16
  37. csv_detective/formats/longitude_wgs_fr_metropole.py +2 -16
  38. csv_detective/formats/lonlat_wgs.py +9 -9
  39. csv_detective/formats/mois_de_lannee.py +1 -1
  40. csv_detective/formats/money.py +1 -1
  41. csv_detective/formats/mongo_object_id.py +1 -1
  42. csv_detective/formats/pays.py +11 -13
  43. csv_detective/formats/percent.py +1 -1
  44. csv_detective/formats/region.py +13 -13
  45. csv_detective/formats/sexe.py +1 -1
  46. csv_detective/formats/siren.py +8 -10
  47. csv_detective/formats/siret.py +8 -9
  48. csv_detective/formats/tel_fr.py +7 -13
  49. csv_detective/formats/uai.py +17 -18
  50. csv_detective/formats/url.py +16 -16
  51. csv_detective/formats/username.py +1 -1
  52. csv_detective/formats/uuid.py +1 -1
  53. csv_detective/formats/year.py +6 -12
  54. csv_detective/parsing/text.py +13 -12
  55. {csv_detective-0.10.1.dev2590.dist-info → csv_detective-0.10.1.dev2599.dist-info}/METADATA +1 -1
  56. csv_detective-0.10.1.dev2599.dist-info/RECORD +92 -0
  57. {csv_detective-0.10.1.dev2590.dist-info → csv_detective-0.10.1.dev2599.dist-info}/WHEEL +1 -1
  58. csv_detective-0.10.1.dev2590.dist-info/RECORD +0 -92
  59. {csv_detective-0.10.1.dev2590.dist-info → csv_detective-0.10.1.dev2599.dist-info}/entry_points.txt +0 -0
@@ -36,21 +36,22 @@ def is_word_in_string(word: str, string: str):
36
36
  return len(word) > 2 and word in string
37
37
 
38
38
 
39
- def header_score(header: str, words_combinations_list: list[str]) -> float:
39
+ def header_score(header: str, valid_headers: dict[str, float]) -> float:
40
40
  """Returns:
41
- - 1 if the header is exactly in the specified list
42
- - 0.5 if any of the words is within the header
41
+ - the valid header's credibility if the header is exactly in the valid list
42
+ - 0.5*credibility if any of the words is within the valid list
43
43
  - 0 otherwise"""
44
44
  processed_header = _process_text(header)
45
45
 
46
- header_matches_words_combination = float(
47
- any(words_combination == processed_header for words_combination in words_combinations_list)
48
- )
49
- words_combination_in_header = 0.5 * (
50
- any(
51
- is_word_in_string(words_combination, processed_header)
52
- for words_combination in words_combinations_list
53
- )
46
+ header_matches_valid = max(
47
+ (valid == processed_header) * credibility for valid, credibility in valid_headers.items()
54
48
  )
55
49
 
56
- return max(header_matches_words_combination, words_combination_in_header)
50
+ return max(
51
+ header_matches_valid,
52
+ 0.5
53
+ * max(
54
+ is_word_in_string(valid, processed_header) * credibility
55
+ for valid, credibility in valid_headers.items()
56
+ ),
57
+ )
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: csv-detective
3
- Version: 0.10.1.dev2590
3
+ Version: 0.10.1.dev2599
4
4
  Summary: Detect tabular files column content
5
5
  Keywords: CSV,data processing,encoding,guess,parser,tabular
6
6
  Author: data.gouv.fr
@@ -0,0 +1,92 @@
1
+ csv_detective/__init__.py,sha256=zlYElTOp_I2_VG7ZdOTuAu0wuCXSc0cr3sH6gtk2bcg,152
2
+ csv_detective/cli.py,sha256=mu5anmBmaDk52_uZGiA4T37wYZCuV43gZAepjs1Cqzc,1389
3
+ csv_detective/detection/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
+ csv_detective/detection/columns.py,sha256=_JtZHBr3aoEmSWh2xVe2ISnt-G7hpnA9vqlvcaGd0Go,2887
5
+ csv_detective/detection/encoding.py,sha256=KZ8W8BPfZAq9UiP5wgaeupYa5INU8KPz98E2L3XpX2Y,999
6
+ csv_detective/detection/engine.py,sha256=wQeDKpp2DKF-HcS1R8H6GgQyaUgQme4szPtEHgAjBII,1552
7
+ csv_detective/detection/formats.py,sha256=9aIE4gwTN8c8pa-kofeJ7zalo8NqjGZabYD-G79kV5I,4734
8
+ csv_detective/detection/headers.py,sha256=95pTL524Sy5PGxyQ03ofFUaamvlmkxTJQe8u6HfzOkU,1051
9
+ csv_detective/detection/rows.py,sha256=quf3ZTTFPOo09H-faZ9cRKibb1QGHEKHlpivFRx2Va4,742
10
+ csv_detective/detection/separator.py,sha256=XjeDBqhiBxVfkCPJKem9BAgJqs_hOgQltc_pxrH_-Tg,1547
11
+ csv_detective/detection/variables.py,sha256=-QtZOB96z3pWbqnZ-c1RU3yzoYqcO61A0JzeS6JbkxY,3576
12
+ csv_detective/explore_csv.py,sha256=qSf6N3tbp43BUMJF5wiXz3aYKaTez6ro-75KL2Arci4,7174
13
+ csv_detective/format.py,sha256=VglcxWBmjTvWNMhwSUZDfMdJcK9lAUum64Jxvm70AJ4,2898
14
+ csv_detective/formats/__init__.py,sha256=Egiy29kcG3Oz2eE2maYhD3wP29zOSOWyRlOpGD5LGvU,318
15
+ csv_detective/formats/adresse.py,sha256=79tIXeC1AUjUG9m0XGZUcP_BXvmLgd1M8XVfxgLNGDE,1966
16
+ csv_detective/formats/binary.py,sha256=26qrbqv_Dqu0LhVPpQOz2xzglxse7Nz5EasbQ0xP38c,715
17
+ csv_detective/formats/booleen.py,sha256=o7sm2RB5TM_ENY-2KluQMW3BRwM31YUVv5wzG4CZRRo,686
18
+ csv_detective/formats/code_commune_insee.py,sha256=pEk4JoUKCloZ3vRW664N2KlGm0TYSsVOdcp6EWISG7o,575
19
+ csv_detective/formats/code_csp_insee.py,sha256=AlUbmn5PHYmISkTCdrQJiUaf9hIjqoOCN0cg2I8pVeI,662
20
+ csv_detective/formats/code_departement.py,sha256=TmTnTJ8V4qlKSmnnXbUnlEJc0exxjI4dKr4MjsLHlnU,672
21
+ csv_detective/formats/code_fantoir.py,sha256=K2bmVGSH9igHmr2VEL0ErpbyQ9OoM4QXxsBUoYXdoeQ,399
22
+ csv_detective/formats/code_import.py,sha256=NI7kVUkkN8zmASEMNEqI8GkB_f__rgeV0bDw5hn9HCk,351
23
+ csv_detective/formats/code_postal.py,sha256=xsg8cRjYsaCncF1ruiCew2aXb8czsRle58JEW62bcsk,474
24
+ csv_detective/formats/code_region.py,sha256=UepGCeidR0OzMxP-fONPuRaUYTG-EFSpC0hUm6iiPSM,404
25
+ csv_detective/formats/code_rna.py,sha256=o6Kptrux6T2bSnWHi7MBCqIfVKbMMeN4dHlxxzkGesE,543
26
+ csv_detective/formats/code_waldec.py,sha256=j4-xpj_73c7IdgLoZJY_kRVj3HkpB7RFfGPN4NwPmVo,303
27
+ csv_detective/formats/commune.py,sha256=QVscVy5Ij9kdzKJgIG2aFC_v1IRsov5M9Zkj_SHDWgs,541
28
+ csv_detective/formats/csp_insee.py,sha256=y1w9zPQvijQi5v1Cuye0aX87ZVDC4FeFx1YC0dLqqp8,688
29
+ csv_detective/formats/data/csp_insee.txt,sha256=kgKaKc-5PHu5U4--ugLjpFyMNtTU9CGdZ9ANU3YAsM4,32879
30
+ csv_detective/formats/data/insee_ape700.txt,sha256=nKgslakENwgE7sPkVNHqR23iXuxF02p9-v5MC2_ntx8,4398
31
+ csv_detective/formats/data/iso_country_code_alpha2.txt,sha256=YyPlDqCdz65ecf4Wes_r0P4rDSJG35niXtjc4MmctXM,1740
32
+ csv_detective/formats/data/iso_country_code_alpha3.txt,sha256=aYqKSohgXuBtcIBfF52f8JWYDdxL_HV_Ol1srGnWBp4,1003
33
+ csv_detective/formats/data/iso_country_code_numeric.txt,sha256=2GtEhuporsHYV-pU4q9kfXU5iOtfW5C0GYBTTKQtnnA,1004
34
+ csv_detective/formats/date.py,sha256=Q6w1azLKNshJJVLOPBHj-77ZinXYMW_EKp_BGDshLLE,2802
35
+ csv_detective/formats/date_fr.py,sha256=YnNXSgT6QekfTUJoS5yuRX8LeK-fmVDgLgVP9cP0e4M,505
36
+ csv_detective/formats/datetime_aware.py,sha256=izKo6CA-MNIzmmM3Br4-FOESyqCS_YYK8N4V9D6CVEI,1909
37
+ csv_detective/formats/datetime_naive.py,sha256=DZ0apAm3vIy4cdm5DynAeRueI_8rhuHYQtAOZ5yyZ5k,1681
38
+ csv_detective/formats/datetime_rfc822.py,sha256=URyS-_5zyImWwY-IX3hSGueyCJfQkfvVDpD2UsDzW3g,627
39
+ csv_detective/formats/departement.py,sha256=ve_Pm6qyw1nDLDDN4YxADVASmD1dnJtgQpvY9lakyxE,810
40
+ csv_detective/formats/email.py,sha256=ED5YCOM1tEMb_ybkjDuuOErLXT1bsRgNq6WbDT_x-Ws,550
41
+ csv_detective/formats/float.py,sha256=8QzbeKklOkZSZjtiCfx-vyYs6lkyo1_w3gl8d__66CQ,1065
42
+ csv_detective/formats/geojson.py,sha256=jXKpTHnEsEH_0JJ393mgvF0IYP5AoarJC_-aTuNY_0k,785
43
+ csv_detective/formats/insee_ape700.py,sha256=WxblAHFCOIxigANQKV6mMjMwKauPGQmxqvk8DIKHD2Q,833
44
+ csv_detective/formats/insee_canton.py,sha256=_jTL47d46PosKO-1Kg5ak88QPCyeKkEP-noj1fCRMTE,545
45
+ csv_detective/formats/int.py,sha256=VSAPL0MCxTsdi2CgtHratd2e_7FSEZHTfdUgGnVuP5U,518
46
+ csv_detective/formats/iso_country_code_alpha2.py,sha256=qHvNv2xavoy4yIfqs9P5OrohjiGeTcMFXWrpg01pWfw,652
47
+ csv_detective/formats/iso_country_code_alpha3.py,sha256=2f762WgNPZnUbxGFOVCkG37deU2V-gxiI6uQhcvzHUA,600
48
+ csv_detective/formats/iso_country_code_numeric.py,sha256=bpBUb5IQTU-s_-E81iq9dA6_ld7hrSY9jLi0fyWNNNo,617
49
+ csv_detective/formats/jour_de_la_semaine.py,sha256=5ScA-UU1EGP_WgycP3NpGVxTeKOyAZlNFOA2mtOuCdc,603
50
+ csv_detective/formats/json.py,sha256=5mCr50RvKFsbMQ-Ad1ORZ6UvOS9v3GUCh6z37mNT57I,534
51
+ csv_detective/formats/latitude_l93.py,sha256=PIXHXaOuVdlcYJKPvUJ5hcEF52U9an6Je5vQ-hyN4rs,813
52
+ csv_detective/formats/latitude_wgs.py,sha256=GPjs48G3nkuisrnBCydnzgerowothC5TMQgCieuSAWI,689
53
+ csv_detective/formats/latitude_wgs_fr_metropole.py,sha256=BW5WYyYqHpjmG3Z72q1Xi_DIwEOp_vedFeplaaC985Q,433
54
+ csv_detective/formats/latlon_wgs.py,sha256=Nipo6Yvqc-SVEEeTLANGh1xDpzLvO-LcDbttKdL8ddE,1319
55
+ csv_detective/formats/longitude_l93.py,sha256=BnY8rx0ITlMI2x68yF_GjwwS72S-X_ZXD5V3W0Mgzg4,803
56
+ csv_detective/formats/longitude_wgs.py,sha256=tgXSgim-SEvS4-snjUEehD3IHU92jrQ-DXdLPQZhvcE,750
57
+ csv_detective/formats/longitude_wgs_fr_metropole.py,sha256=XBnWyjWslkrWuDH6gf8qIPEM_gzesTNBCzxbOmX9q3M,425
58
+ csv_detective/formats/lonlat_wgs.py,sha256=Nd2e_OiI0Mtzs0ixxHqpsgMZtoivvWSywFWUUwZq6So,1051
59
+ csv_detective/formats/mois_de_lannee.py,sha256=BpzzAClRX-dbLwic42t4LAzceTtZFE236oPZT53EODs,765
60
+ csv_detective/formats/money.py,sha256=kv09gQjpsplDdPy5IZBrdtQDv1FB96Jpk22JGj5JEf4,432
61
+ csv_detective/formats/mongo_object_id.py,sha256=7UmSIHlYsaSpmv3rcyn-0eKdZr2qu2SssaihfWqBCYI,302
62
+ csv_detective/formats/pays.py,sha256=O1db12cOUPYV9tz_72s77xbLgb3eMCdgOR8k7ZkfznQ,662
63
+ csv_detective/formats/percent.py,sha256=RLV77E4B23rhaF5UMcvWQX9iv_ZNnx8Z9Q8Vz6yn-1Y,348
64
+ csv_detective/formats/region.py,sha256=6o-MZAjl2UZZDKdLnEEBHBcdukoIgrUJygpfVRB3PM0,1518
65
+ csv_detective/formats/sexe.py,sha256=_DQZVPhWLf-0O7bn21BQ9D3kNwkr8WqG6psN15kOC74,388
66
+ csv_detective/formats/siren.py,sha256=CLqIOMg8D5CFrJfdxV14JXoZDlS1qaEm3G5JoxiUmDY,734
67
+ csv_detective/formats/siret.py,sha256=Vi61w2-pX0wYwODWBJVHncLrCcY2xzpUpoJAsheJits,1023
68
+ csv_detective/formats/tel_fr.py,sha256=os5VYWKjrryUIWRRcKZV70Qy0Fvj14LpLVjzM57YaIo,520
69
+ csv_detective/formats/uai.py,sha256=_Mi86Iu9QIadDtFVfbR6nFa5nyy29vnLagkZ_9ct564,732
70
+ csv_detective/formats/url.py,sha256=m3i_XhFRFaAxSACS05XfciQ-oyTCsP_0TASShCY2t7A,1091
71
+ csv_detective/formats/username.py,sha256=6qviaFOtF2wg-gtvs0N8548JxFNE67Ue3a0JD0Kv7TQ,261
72
+ csv_detective/formats/uuid.py,sha256=LxkRZFAOlfig5KKrravO9bgyYjmRBegzOtGyzjopVNc,352
73
+ csv_detective/formats/year.py,sha256=tMc2HHr6Jga3PGWjmeHweK3G17DsjkIpIUUkCecXAm4,362
74
+ csv_detective/output/__init__.py,sha256=ALSq_tgX7rGyh--7rmbKz8wHkmResN0h7mNujndow3w,2103
75
+ csv_detective/output/dataframe.py,sha256=Hnd-AY51U0JMACcpuaK9wwO4oCX9Nd7ZLUTqavgJWRA,3406
76
+ csv_detective/output/example.py,sha256=8LWheSBYCeDFfarbnmzBrdCbTd8Alh1U4pfXMKfabOw,8630
77
+ csv_detective/output/profile.py,sha256=VUQp0VJ22dfY4R5TybTpuQW_TOX_rLEp98cOzu-Jf44,4876
78
+ csv_detective/output/schema.py,sha256=XoKljXPXP00DfqPCiz1ydwTHYGAFsvNxnaPCNBuuBIo,10443
79
+ csv_detective/output/utils.py,sha256=tbji3dEH7bDc6gLCeVSVquqU3xaHA1CQOMuaJT4Hub8,3297
80
+ csv_detective/parsing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
81
+ csv_detective/parsing/columns.py,sha256=rb5JywbKnYCT3Jb0ZaG1BnyPVtB3gy5mSD-K7qcOl8I,9257
82
+ csv_detective/parsing/compression.py,sha256=Fnw5tj-PpBNI8NYsWj5gD-DUoWcVLnsVpiKm9MpxmIA,350
83
+ csv_detective/parsing/csv.py,sha256=5rw6gXZFQC1T4NT9CnW0AumidrYOkF8kjrfWGmk949I,1716
84
+ csv_detective/parsing/excel.py,sha256=tb65I78tdYlZci_tzvvQt8U6bZSYKjeVdn2CEvsET1o,6972
85
+ csv_detective/parsing/load.py,sha256=f-8aKiNpy_47qg4Lq-UZUR4NNrbJ_-KEGvcUQZ8cmb0,4317
86
+ csv_detective/parsing/text.py,sha256=yDAcop5xJQc25UtbZcV0guHXAZQfm-H8WuJORTy8Rr8,1734
87
+ csv_detective/utils.py,sha256=RJ_zFOJ1DRY8HtDrKPiCdNk5gU6-KwOrOKOyfSkBZZY,1118
88
+ csv_detective/validate.py,sha256=CjZXhhDP-n6wGgEqbwrGRqebU8L5bidwnvQp-TbnvFA,5424
89
+ csv_detective-0.10.1.dev2599.dist-info/WHEEL,sha256=xDCZ-UyfvkGuEHPeI7BcJzYKIZzdqN8A8o1M5Om8IyA,79
90
+ csv_detective-0.10.1.dev2599.dist-info/entry_points.txt,sha256=1J86TQNCanjsLMboAufdEUla03qEQaC9QmVGYgt2FCQ,57
91
+ csv_detective-0.10.1.dev2599.dist-info/METADATA,sha256=uk8fyx-FqFG2Ez2Yx4_aKydaGNrqd_SfuDsYYLlyfKY,11064
92
+ csv_detective-0.10.1.dev2599.dist-info/RECORD,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: uv 0.9.16
2
+ Generator: uv 0.9.17
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
@@ -1,92 +0,0 @@
1
- csv_detective/__init__.py,sha256=zlYElTOp_I2_VG7ZdOTuAu0wuCXSc0cr3sH6gtk2bcg,152
2
- csv_detective/cli.py,sha256=mu5anmBmaDk52_uZGiA4T37wYZCuV43gZAepjs1Cqzc,1389
3
- csv_detective/detection/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
- csv_detective/detection/columns.py,sha256=_JtZHBr3aoEmSWh2xVe2ISnt-G7hpnA9vqlvcaGd0Go,2887
5
- csv_detective/detection/encoding.py,sha256=KZ8W8BPfZAq9UiP5wgaeupYa5INU8KPz98E2L3XpX2Y,999
6
- csv_detective/detection/engine.py,sha256=wQeDKpp2DKF-HcS1R8H6GgQyaUgQme4szPtEHgAjBII,1552
7
- csv_detective/detection/formats.py,sha256=9aIE4gwTN8c8pa-kofeJ7zalo8NqjGZabYD-G79kV5I,4734
8
- csv_detective/detection/headers.py,sha256=95pTL524Sy5PGxyQ03ofFUaamvlmkxTJQe8u6HfzOkU,1051
9
- csv_detective/detection/rows.py,sha256=quf3ZTTFPOo09H-faZ9cRKibb1QGHEKHlpivFRx2Va4,742
10
- csv_detective/detection/separator.py,sha256=XjeDBqhiBxVfkCPJKem9BAgJqs_hOgQltc_pxrH_-Tg,1547
11
- csv_detective/detection/variables.py,sha256=-QtZOB96z3pWbqnZ-c1RU3yzoYqcO61A0JzeS6JbkxY,3576
12
- csv_detective/explore_csv.py,sha256=qSf6N3tbp43BUMJF5wiXz3aYKaTez6ro-75KL2Arci4,7174
13
- csv_detective/format.py,sha256=5f3XhqDyGAlSxvNuSOiJhs0qVNuV7JmoJyGVXtaY8Zc,2770
14
- csv_detective/formats/__init__.py,sha256=Egiy29kcG3Oz2eE2maYhD3wP29zOSOWyRlOpGD5LGvU,318
15
- csv_detective/formats/adresse.py,sha256=jALDpEDAWyAcgqEfNVRg_W1r6XaYuJKD_jAaP2l-bxk,1943
16
- csv_detective/formats/binary.py,sha256=eATFZ6JdD6wNu47zKnxG-hB_lA7R34R9grXFJlw7wrU,700
17
- csv_detective/formats/booleen.py,sha256=Bavi1e89UDEkTWFbkn5YJNtWZnn6gmbt86CweXQAX44,670
18
- csv_detective/formats/code_commune_insee.py,sha256=9GXruZOR6MY94CjIIcHapDf0rlw0im8omhu7n-7E0gY,528
19
- csv_detective/formats/code_csp_insee.py,sha256=_JQ-YbnHMenNnwIg1xBmNVqgCa1tLD2hbPN1soODhDk,656
20
- csv_detective/formats/code_departement.py,sha256=IlDENaJh2aEmjrUMhnphT0f1KwmbEtAu9UANTxssbgg,652
21
- csv_detective/formats/code_fantoir.py,sha256=XqXx3al20lp1eoxfm9eKqg0iII4NtSWN03lMIH-Tcdg,390
22
- csv_detective/formats/code_import.py,sha256=N5NVvnHkRwC7ARHoM77R-2cYSeyNmPoRIn6JL3Fbnjs,346
23
- csv_detective/formats/code_postal.py,sha256=hbE9J4OKi8qLcLEGNtkjzV1SS5RJ2CgzoEs77WahZYo,451
24
- csv_detective/formats/code_region.py,sha256=DTM7pIHGK-vPc2ZuJ4nNlh0X7lXPl3HJJ3XMbb-UZs0,390
25
- csv_detective/formats/code_rna.py,sha256=WExlQtlAUfOFT4N3MKsMBhZVxTdNzgexFjmXhZdRM1w,512
26
- csv_detective/formats/code_waldec.py,sha256=kJEJfikbhMfVwtA8hBpup0tpeSFoY_rWrEdXQxgNwhg,297
27
- csv_detective/formats/commune.py,sha256=oVpwINGqpwMOT43KkasozipJ9hBeoQ5FrKV_wIeVJGE,532
28
- csv_detective/formats/csp_insee.py,sha256=HE6NK6Sw91mLFeAAKwWUXZZfXX6fiA0zK4RI4YdkUFY,656
29
- csv_detective/formats/data/csp_insee.txt,sha256=kgKaKc-5PHu5U4--ugLjpFyMNtTU9CGdZ9ANU3YAsM4,32879
30
- csv_detective/formats/data/insee_ape700.txt,sha256=nKgslakENwgE7sPkVNHqR23iXuxF02p9-v5MC2_ntx8,4398
31
- csv_detective/formats/data/iso_country_code_alpha2.txt,sha256=YyPlDqCdz65ecf4Wes_r0P4rDSJG35niXtjc4MmctXM,1740
32
- csv_detective/formats/data/iso_country_code_alpha3.txt,sha256=aYqKSohgXuBtcIBfF52f8JWYDdxL_HV_Ol1srGnWBp4,1003
33
- csv_detective/formats/data/iso_country_code_numeric.txt,sha256=2GtEhuporsHYV-pU4q9kfXU5iOtfW5C0GYBTTKQtnnA,1004
34
- csv_detective/formats/date.py,sha256=INqXv2l5wMID2FMHPqOsnrwMKuB587e_RoQ0rq3ap50,2752
35
- csv_detective/formats/date_fr.py,sha256=3hTw5RommrhcgECFRSt9KgyB9zyi1j4W3UygEHmRgoE,502
36
- csv_detective/formats/datetime_aware.py,sha256=7ARCYgNBkVKt8eVLKR3ZzTodZAFRqqsLzxjqP5UdFD0,1903
37
- csv_detective/formats/datetime_naive.py,sha256=DZ0apAm3vIy4cdm5DynAeRueI_8rhuHYQtAOZ5yyZ5k,1681
38
- csv_detective/formats/datetime_rfc822.py,sha256=URyS-_5zyImWwY-IX3hSGueyCJfQkfvVDpD2UsDzW3g,627
39
- csv_detective/formats/departement.py,sha256=UP9UF23BFq_-mIS8N10K5XkoCXwPmDeSoa_7lCAkI4w,768
40
- csv_detective/formats/email.py,sha256=Qen2EBDYY5TtWXwxrrTGWRrbIybz0ySlVpl4ZRk8pzA,517
41
- csv_detective/formats/float.py,sha256=YhZ2EX1MtazSLuh1xyRHq0OoZxMUrNoRgXZd8h_HRkU,1056
42
- csv_detective/formats/geojson.py,sha256=oV5pJo2yWxeEdvCEmM4tGhp0D8Joz2RZzKCvlkh7yJ8,779
43
- csv_detective/formats/insee_ape700.py,sha256=cLs3Eersqm4wX6oqsqp0Vb3WGPJb2xY5Za_vh0uLgKc,780
44
- csv_detective/formats/insee_canton.py,sha256=Q5jczsOmh1wPP2KtDkcmqZ7Hlv50Zz9YvPIbxy46qs0,531
45
- csv_detective/formats/int.py,sha256=sVGVWPlPtdErY7b2g0HgsSExwuMEfkPJw6qrPoEJjHo,503
46
- csv_detective/formats/iso_country_code_alpha2.py,sha256=vIep_j0xuqlXKyuvk8c8GaJC73HuJqKfQ4QzQKHsPc0,613
47
- csv_detective/formats/iso_country_code_alpha3.py,sha256=yOmm91O8ot6KoUBfss5cqykDfeeMNCwafDAvPNvbufA,668
48
- csv_detective/formats/iso_country_code_numeric.py,sha256=989ypOmjIrNTV9vFnrBlbpRWQ9whd3Rv9gNasdF_O4g,685
49
- csv_detective/formats/jour_de_la_semaine.py,sha256=c5QBw9eZfwRs_jL_Ckm95UH-TxlExdFmfZNYW7-_iZI,606
50
- csv_detective/formats/json.py,sha256=KkqI5fP32EGSGeBPwE1CwUlWHhjla4cLOOmXp5Sja7E,468
51
- csv_detective/formats/latitude_l93.py,sha256=V0rdKmCgfWLdssoN5xaoDM9vSK4KmhCw_lSaX23i-sI,1033
52
- csv_detective/formats/latitude_wgs.py,sha256=W-SB8kfe4Kbz3erZ2GHTOPah3Y0gk_0jOGAnRHJWYko,827
53
- csv_detective/formats/latitude_wgs_fr_metropole.py,sha256=ZO6xxYb7FEtYxA9Jrzhi7ZzW0-WKvGrD1smm7hZP_Zs,838
54
- csv_detective/formats/latlon_wgs.py,sha256=0tEwF8ITWKcuZwfzaXm5EZKNiKGEfJ0JINAWALPHNDk,1248
55
- csv_detective/formats/longitude_l93.py,sha256=uYEiRa6pqCIrfCh22XQ-sURZWQZqWymqnNpSkvuedTE,815
56
- csv_detective/formats/longitude_wgs.py,sha256=1EqeynDb8QDLXR8pf4ogFuI9UWD9eIqb49blSLTwRL4,599
57
- csv_detective/formats/longitude_wgs_fr_metropole.py,sha256=RzckeV6a1y9UfqqBmVQfdyDHD9Kk7x-vAwt6PATj5A4,597
58
- csv_detective/formats/lonlat_wgs.py,sha256=zXqT-wWXx99qKfmWGfXfBZsAa5570RyaBTtB9B30QV4,1029
59
- csv_detective/formats/mois_de_lannee.py,sha256=4_mmdr9S83utVCgPaK_epkeBm2mhwdUWQEoB_Fhdh2o,759
60
- csv_detective/formats/money.py,sha256=HpjrmfUmbG8sXF557XbYzQ7TLtpNVRgpC991gGokO8I,414
61
- csv_detective/formats/mongo_object_id.py,sha256=XsiP4iMxfBBIeuL-4g5bm3jgS6yUMJC2X5CmrEJ40oI,296
62
- csv_detective/formats/pays.py,sha256=FRvoQwIWiKbm0RC62Sus1X0Y_yJ-cfvdB5RYhkY-4NY,693
63
- csv_detective/formats/percent.py,sha256=s6eQBMwJr2uyTZMUCK1_ifA0c4Rt2iEe9_E_hKKU_mk,308
64
- csv_detective/formats/region.py,sha256=CkN7JTsZB1X3bH5xohbtMCxL5BX9MSpith36_1mHMd4,1483
65
- csv_detective/formats/sexe.py,sha256=yioD4W6EkgUgo74rxn6KLZtN_0XYXtmA4mqVyI7e1mU,387
66
- csv_detective/formats/siren.py,sha256=i3e4LDsHkmi3nOjKG52g42AzcMvNPwg-SoHD0EEtKWI,782
67
- csv_detective/formats/siret.py,sha256=4sRuDKkumDWdBS3lm0RQhq4kSqH4CDXMarchy6ubt-M,1021
68
- csv_detective/formats/tel_fr.py,sha256=yKCqIlqKO2yKucCoCjYfSjqNKfTjqFcmNXxg6THG0WE,624
69
- csv_detective/formats/uai.py,sha256=uT5gjdTmoFH9QPZdTFkJgiyuKLW0B6KmT6yqHQeaeOU,711
70
- csv_detective/formats/url.py,sha256=j6tCbcEzQw7U53ixeeFfhzueN8syVgQsjmAmY7RRWdU,1049
71
- csv_detective/formats/username.py,sha256=y38OggfWpEQsGi0JnD9QRM30musa29lO6nz-qybR24U,249
72
- csv_detective/formats/uuid.py,sha256=ekMEFfzQtz0cLudzmu3AoCM0Yf5pu23qAcFNFgHWJ1A,346
73
- csv_detective/formats/year.py,sha256=-cPDlMERnnv-toy4SI1X7DhBdgSpNovg5nzM5IFxOKE,493
74
- csv_detective/output/__init__.py,sha256=ALSq_tgX7rGyh--7rmbKz8wHkmResN0h7mNujndow3w,2103
75
- csv_detective/output/dataframe.py,sha256=Hnd-AY51U0JMACcpuaK9wwO4oCX9Nd7ZLUTqavgJWRA,3406
76
- csv_detective/output/example.py,sha256=8LWheSBYCeDFfarbnmzBrdCbTd8Alh1U4pfXMKfabOw,8630
77
- csv_detective/output/profile.py,sha256=VUQp0VJ22dfY4R5TybTpuQW_TOX_rLEp98cOzu-Jf44,4876
78
- csv_detective/output/schema.py,sha256=XoKljXPXP00DfqPCiz1ydwTHYGAFsvNxnaPCNBuuBIo,10443
79
- csv_detective/output/utils.py,sha256=tbji3dEH7bDc6gLCeVSVquqU3xaHA1CQOMuaJT4Hub8,3297
80
- csv_detective/parsing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
81
- csv_detective/parsing/columns.py,sha256=rb5JywbKnYCT3Jb0ZaG1BnyPVtB3gy5mSD-K7qcOl8I,9257
82
- csv_detective/parsing/compression.py,sha256=Fnw5tj-PpBNI8NYsWj5gD-DUoWcVLnsVpiKm9MpxmIA,350
83
- csv_detective/parsing/csv.py,sha256=5rw6gXZFQC1T4NT9CnW0AumidrYOkF8kjrfWGmk949I,1716
84
- csv_detective/parsing/excel.py,sha256=tb65I78tdYlZci_tzvvQt8U6bZSYKjeVdn2CEvsET1o,6972
85
- csv_detective/parsing/load.py,sha256=f-8aKiNpy_47qg4Lq-UZUR4NNrbJ_-KEGvcUQZ8cmb0,4317
86
- csv_detective/parsing/text.py,sha256=uz8wfmNTQnOd_4fjrIZ_5rxmFmgrg343hJh2szB73Hc,1770
87
- csv_detective/utils.py,sha256=RJ_zFOJ1DRY8HtDrKPiCdNk5gU6-KwOrOKOyfSkBZZY,1118
88
- csv_detective/validate.py,sha256=CjZXhhDP-n6wGgEqbwrGRqebU8L5bidwnvQp-TbnvFA,5424
89
- csv_detective-0.10.1.dev2590.dist-info/WHEEL,sha256=93kfTGt3a0Dykt_T-gsjtyS5_p8F_d6CE1NwmBOirzo,79
90
- csv_detective-0.10.1.dev2590.dist-info/entry_points.txt,sha256=1J86TQNCanjsLMboAufdEUla03qEQaC9QmVGYgt2FCQ,57
91
- csv_detective-0.10.1.dev2590.dist-info/METADATA,sha256=j1vkTQFTY-hR0lLqp-dwtvpm7lQwSVHyO1tJQ6vA124,11064
92
- csv_detective-0.10.1.dev2590.dist-info/RECORD,,