csv-detective 0.10.1.dev2581__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 (62) hide show
  1. csv_detective/detection/formats.py +11 -38
  2. csv_detective/format.py +11 -4
  3. csv_detective/formats/adresse.py +9 -9
  4. csv_detective/formats/binary.py +2 -1
  5. csv_detective/formats/booleen.py +3 -2
  6. csv_detective/formats/code_commune_insee.py +12 -10
  7. csv_detective/formats/code_csp_insee.py +1 -1
  8. csv_detective/formats/code_departement.py +8 -7
  9. csv_detective/formats/code_fantoir.py +6 -5
  10. csv_detective/formats/code_import.py +1 -1
  11. csv_detective/formats/code_postal.py +10 -9
  12. csv_detective/formats/code_region.py +7 -6
  13. csv_detective/formats/code_rna.py +7 -6
  14. csv_detective/formats/code_waldec.py +1 -1
  15. csv_detective/formats/commune.py +5 -5
  16. csv_detective/formats/csp_insee.py +6 -5
  17. csv_detective/formats/date.py +18 -17
  18. csv_detective/formats/date_fr.py +1 -1
  19. csv_detective/formats/datetime_aware.py +2 -1
  20. csv_detective/formats/datetime_naive.py +1 -0
  21. csv_detective/formats/datetime_rfc822.py +1 -0
  22. csv_detective/formats/departement.py +15 -15
  23. csv_detective/formats/email.py +13 -13
  24. csv_detective/formats/float.py +2 -1
  25. csv_detective/formats/geojson.py +10 -10
  26. csv_detective/formats/insee_ape700.py +10 -8
  27. csv_detective/formats/insee_canton.py +6 -6
  28. csv_detective/formats/int.py +2 -1
  29. csv_detective/formats/iso_country_code_alpha2.py +10 -9
  30. csv_detective/formats/iso_country_code_alpha3.py +2 -9
  31. csv_detective/formats/iso_country_code_numeric.py +2 -9
  32. csv_detective/formats/jour_de_la_semaine.py +11 -12
  33. csv_detective/formats/json.py +6 -0
  34. csv_detective/formats/latitude_l93.py +8 -22
  35. csv_detective/formats/latitude_wgs.py +21 -26
  36. csv_detective/formats/latitude_wgs_fr_metropole.py +4 -26
  37. csv_detective/formats/latlon_wgs.py +27 -26
  38. csv_detective/formats/longitude_l93.py +8 -13
  39. csv_detective/formats/longitude_wgs.py +24 -16
  40. csv_detective/formats/longitude_wgs_fr_metropole.py +4 -16
  41. csv_detective/formats/lonlat_wgs.py +10 -9
  42. csv_detective/formats/mois_de_lannee.py +1 -1
  43. csv_detective/formats/money.py +1 -1
  44. csv_detective/formats/mongo_object_id.py +1 -1
  45. csv_detective/formats/pays.py +11 -13
  46. csv_detective/formats/percent.py +1 -1
  47. csv_detective/formats/region.py +13 -13
  48. csv_detective/formats/sexe.py +1 -1
  49. csv_detective/formats/siren.py +9 -10
  50. csv_detective/formats/siret.py +9 -9
  51. csv_detective/formats/tel_fr.py +7 -13
  52. csv_detective/formats/uai.py +17 -18
  53. csv_detective/formats/url.py +16 -16
  54. csv_detective/formats/username.py +1 -1
  55. csv_detective/formats/uuid.py +1 -1
  56. csv_detective/formats/year.py +7 -12
  57. csv_detective/parsing/text.py +13 -12
  58. {csv_detective-0.10.1.dev2581.dist-info → csv_detective-0.10.1.dev2599.dist-info}/METADATA +1 -1
  59. csv_detective-0.10.1.dev2599.dist-info/RECORD +92 -0
  60. {csv_detective-0.10.1.dev2581.dist-info → csv_detective-0.10.1.dev2599.dist-info}/WHEEL +1 -1
  61. csv_detective-0.10.1.dev2581.dist-info/RECORD +0 -92
  62. {csv_detective-0.10.1.dev2581.dist-info → csv_detective-0.10.1.dev2599.dist-info}/entry_points.txt +0 -0
@@ -2,24 +2,23 @@ import re
2
2
 
3
3
  proportion = 0.8
4
4
  tags = ["fr"]
5
- labels = [
6
- "uai",
7
- "code etablissement",
8
- "code uai",
9
- "uai - identifiant",
10
- "numero uai",
11
- "rne",
12
- "numero de l'etablissement",
13
- "code rne",
14
- "codeetab",
15
- "code uai de l'etablissement",
16
- "ref uai",
17
- "cd rne",
18
- "numerouai",
19
- "numero d etablissement",
20
- "code etablissement",
21
- "numero etablissement",
22
- ]
5
+ labels = {
6
+ "uai": 1,
7
+ "code etablissement": 1,
8
+ "code uai": 1,
9
+ "uai - identifiant": 1,
10
+ "numero uai": 1,
11
+ "rne": 0.75,
12
+ "numero de l'etablissement": 1,
13
+ "code rne": 1,
14
+ "codeetab": 1,
15
+ "code uai de l'etablissement": 1,
16
+ "ref uai": 1,
17
+ "cd rne": 1,
18
+ "numerouai": 1,
19
+ "numero d etablissement": 1,
20
+ "numero etablissement": 1,
21
+ }
23
22
 
24
23
 
25
24
  def _is(val):
@@ -1,22 +1,22 @@
1
1
  import re
2
2
 
3
3
  proportion = 1
4
- labels = [
5
- "url",
6
- "url source",
7
- "site web",
8
- "source url",
9
- "site internet",
10
- "remote url",
11
- "web",
12
- "site",
13
- "lien",
14
- "site data",
15
- "lien url",
16
- "lien vers le fichier",
17
- "sitweb",
18
- "interneturl",
19
- ]
4
+ labels = {
5
+ "url": 1,
6
+ "url source": 1,
7
+ "site web": 1,
8
+ "source url": 1,
9
+ "site internet": 1,
10
+ "remote url": 1,
11
+ "web": 1,
12
+ "site": 1,
13
+ "lien": 1,
14
+ "site data": 1,
15
+ "lien url": 1,
16
+ "lien vers le fichier": 1,
17
+ "sitweb": 1,
18
+ "interneturl": 1,
19
+ }
20
20
 
21
21
  pattern = re.compile(
22
22
  r"^((https?|ftp)://|www\.)(([A-Za-z0-9-]+\.)+[A-Za-z]{2,6})"
@@ -1,7 +1,7 @@
1
1
  import re
2
2
 
3
3
  proportion = 1
4
- labels = ["account", "username", "user"]
4
+ labels = {"account": 1, "username": 1, "user": 0.75}
5
5
 
6
6
 
7
7
  def _is(val):
@@ -1,7 +1,7 @@
1
1
  import re
2
2
 
3
3
  proportion = 0.8
4
- labels = ["id", "identifiant"]
4
+ labels = {"id": 1, "identifiant": 1}
5
5
 
6
6
 
7
7
  def _is(val) -> bool:
@@ -1,17 +1,12 @@
1
1
  proportion = 1
2
2
  tags = ["temp"]
3
- labels = [
4
- "year",
5
- "annee",
6
- "annee depot",
7
- "an nais",
8
- "exercice",
9
- "data year",
10
- "annee de publication",
11
- "exercice comptable",
12
- "annee de naissance",
13
- "annee ouverture",
14
- ]
3
+ python_type = "int"
4
+ labels = {
5
+ "year": 1,
6
+ "annee": 1,
7
+ "naissance": 1,
8
+ "exercice": 1,
9
+ }
15
10
 
16
11
 
17
12
  def _is(val):
@@ -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.dev2581
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.15
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=kQEht5lr9hFhYe0Zn1lfj9jOKaqYrXNrM_tkQX24pEk,5410
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=XX_cSTQc0jlsQq3GUqHi7Cz36AiRrpjrwPmeoOTLMvo,2396
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=OCGRDh5p27sA4yjrpKIp3b2_PfHJYUe5QxIArf-fCxA,676
17
- csv_detective/formats/booleen.py,sha256=AnDDKShkSYpWO4POhwY2V7_C4yPWbmqBu8CJPgQ9Gwc,648
18
- csv_detective/formats/code_commune_insee.py,sha256=MhwCPVAhwWH-MyaNAIVRNbqKfeNe3oiCpzEGfpHkpJY,504
19
- csv_detective/formats/code_csp_insee.py,sha256=_JQ-YbnHMenNnwIg1xBmNVqgCa1tLD2hbPN1soODhDk,656
20
- csv_detective/formats/code_departement.py,sha256=odwVbmktgjEhL-dSFHXuCRVwhkF8bL8G7VlpVTnMY2A,628
21
- csv_detective/formats/code_fantoir.py,sha256=nFVFYJEP2HHE2TyhR_dhGdPCMLfCROBO_B8wxwQn7T8,366
22
- csv_detective/formats/code_import.py,sha256=N5NVvnHkRwC7ARHoM77R-2cYSeyNmPoRIn6JL3Fbnjs,346
23
- csv_detective/formats/code_postal.py,sha256=C6XMkiVTxhMFvfyvJmGp3iwvh722EzMwD_UdqQU4aR0,427
24
- csv_detective/formats/code_region.py,sha256=VFKh1rGYVYTNWBJZ2_m0xS4rhJlrI_Gr8q8RXuZCr-w,366
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=X4ohXaFO8cXPJktUSumc3bfdlbDIWEYTG8S9ugVRcsE,2730
35
- csv_detective/formats/date_fr.py,sha256=3hTw5RommrhcgECFRSt9KgyB9zyi1j4W3UygEHmRgoE,502
36
- csv_detective/formats/datetime_aware.py,sha256=DhDaJE-ILzSJr9EH2c-t0ZSfWlUOXwzK_MXYbSnj-bE,1877
37
- csv_detective/formats/datetime_naive.py,sha256=2eN7XFs6rRAovMjB-cThZJkbnek1bK16qYP8crJtCqI,1655
38
- csv_detective/formats/datetime_rfc822.py,sha256=l-SLb34hSuHxC2JQ-9SD-nG38JqzoozwUZiGtoybb0A,601
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=DF8CwBC4Vk-PFRlIawDr6OUPTtZjAiKYguvilDGUcmY,1033
42
- csv_detective/formats/geojson.py,sha256=udbBxCBRmb0o6TD8z5ryemfqdinBz6njNJU0XcbfMig,757
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=ZBUOn50luMtlNKWPyOaMIkY3J4f4hA0MqwcoFtksozU,482
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=E-s7IHW0q5WgAJVK0I-5Rv7W_RdofROB5wnIXbNegZQ,446
51
- csv_detective/formats/latitude_l93.py,sha256=GteGpxAht-jeOBLr_deCuEXA_LliVYIAmyr_7jFAWgI,986
52
- csv_detective/formats/latitude_wgs.py,sha256=HPcFlLzJNqynLugDQ07vO04rOCNBuAabVJEP8FQ89Q0,780
53
- csv_detective/formats/latitude_wgs_fr_metropole.py,sha256=ruGzQLJPiMV2AlnsBneQIhMzstseddzWA0bDg5gfTG4,791
54
- csv_detective/formats/latlon_wgs.py,sha256=CbNi4Y-ZgBfNyYi54xwcZGLpEusiLAWVpFP1YgHtI1M,1224
55
- csv_detective/formats/longitude_l93.py,sha256=vJE4k_DyQOjAruqu_Q0E2sJKZB4mXGGN6bS9WCelsbs,768
56
- csv_detective/formats/longitude_wgs.py,sha256=DUZCUxJQl53HHVQbXlz_lWXoAZhy3MvJWcPNdiK5cCM,552
57
- csv_detective/formats/longitude_wgs_fr_metropole.py,sha256=wPlJP06K0BVWfrx1wwEAKK93AKIqvsuw705gKAlWAfQ,550
58
- csv_detective/formats/lonlat_wgs.py,sha256=BgtTl2ReI0hSQB-7mcR4TDxx-QzvA1B9fiZWxTb5xPI,1005
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=ieLe50vdSnkXadcUI8VXnnId9GFGHyIBWVTP6bJtyMo,758
67
- csv_detective/formats/siret.py,sha256=ehkZgOH-HggN6IgxF4G0DMut_6giZ3gc4g9wMdwZFHQ,997
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=pkAfYPKZdy0g1ZoHGgJNpgTS5y5weGEKXCVMGaxIX8k,472
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.dev2581.dist-info/WHEEL,sha256=z-mOpxbJHqy3cq6SvUThBZdaLGFZzdZPtgWLcP2NKjQ,79
90
- csv_detective-0.10.1.dev2581.dist-info/entry_points.txt,sha256=1J86TQNCanjsLMboAufdEUla03qEQaC9QmVGYgt2FCQ,57
91
- csv_detective-0.10.1.dev2581.dist-info/METADATA,sha256=t7kro2nQ_nqJ4k_ZwY1c4lwwiWaiAfRtbXT-V3c8kkw,11064
92
- csv_detective-0.10.1.dev2581.dist-info/RECORD,,