csv-detective 0.10.1.dev2669__py3-none-any.whl → 0.10.2__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 (102) hide show
  1. csv_detective/detection/__init__.py +0 -0
  2. csv_detective/detection/columns.py +0 -0
  3. csv_detective/detection/encoding.py +0 -0
  4. csv_detective/detection/engine.py +0 -0
  5. csv_detective/detection/formats.py +0 -0
  6. csv_detective/detection/headers.py +0 -0
  7. csv_detective/detection/rows.py +0 -0
  8. csv_detective/detection/separator.py +0 -0
  9. csv_detective/detection/variables.py +0 -0
  10. csv_detective/format.py +0 -0
  11. csv_detective/formats/__init__.py +0 -0
  12. csv_detective/formats/adresse.py +0 -0
  13. csv_detective/formats/binary.py +0 -0
  14. csv_detective/formats/booleen.py +0 -0
  15. csv_detective/formats/code_commune_insee.py +0 -0
  16. csv_detective/formats/code_csp_insee.py +0 -0
  17. csv_detective/formats/code_departement.py +0 -0
  18. csv_detective/formats/code_fantoir.py +0 -0
  19. csv_detective/formats/code_import.py +0 -0
  20. csv_detective/formats/code_postal.py +0 -0
  21. csv_detective/formats/code_region.py +0 -0
  22. csv_detective/formats/code_rna.py +0 -0
  23. csv_detective/formats/code_waldec.py +0 -0
  24. csv_detective/formats/commune.py +0 -0
  25. csv_detective/formats/csp_insee.py +0 -0
  26. csv_detective/formats/date.py +0 -0
  27. csv_detective/formats/date_fr.py +0 -0
  28. csv_detective/formats/datetime_aware.py +0 -0
  29. csv_detective/formats/datetime_naive.py +0 -0
  30. csv_detective/formats/datetime_rfc822.py +0 -0
  31. csv_detective/formats/departement.py +0 -0
  32. csv_detective/formats/email.py +0 -0
  33. csv_detective/formats/float.py +0 -0
  34. csv_detective/formats/geojson.py +0 -0
  35. csv_detective/formats/insee_ape700.py +0 -0
  36. csv_detective/formats/insee_canton.py +0 -0
  37. csv_detective/formats/int.py +0 -0
  38. csv_detective/formats/iso_country_code_alpha2.py +0 -0
  39. csv_detective/formats/iso_country_code_alpha3.py +0 -0
  40. csv_detective/formats/iso_country_code_numeric.py +0 -0
  41. csv_detective/formats/jour_de_la_semaine.py +0 -0
  42. csv_detective/formats/json.py +0 -0
  43. csv_detective/formats/latitude_l93.py +0 -0
  44. csv_detective/formats/latitude_wgs.py +0 -0
  45. csv_detective/formats/latitude_wgs_fr_metropole.py +0 -0
  46. csv_detective/formats/latlon_wgs.py +0 -0
  47. csv_detective/formats/longitude_l93.py +0 -0
  48. csv_detective/formats/longitude_wgs.py +0 -0
  49. csv_detective/formats/longitude_wgs_fr_metropole.py +0 -0
  50. csv_detective/formats/lonlat_wgs.py +0 -0
  51. csv_detective/formats/mois_de_lannee.py +0 -0
  52. csv_detective/formats/money.py +0 -0
  53. csv_detective/formats/mongo_object_id.py +0 -0
  54. csv_detective/formats/pays.py +0 -0
  55. csv_detective/formats/percent.py +0 -0
  56. csv_detective/formats/region.py +0 -0
  57. csv_detective/formats/sexe.py +0 -0
  58. csv_detective/formats/siren.py +0 -0
  59. csv_detective/formats/siret.py +0 -0
  60. csv_detective/formats/tel_fr.py +0 -0
  61. csv_detective/formats/uai.py +0 -0
  62. csv_detective/formats/url.py +0 -0
  63. csv_detective/formats/username.py +0 -0
  64. csv_detective/formats/uuid.py +0 -0
  65. csv_detective/formats/year.py +0 -0
  66. csv_detective/output/__init__.py +0 -0
  67. csv_detective/output/dataframe.py +0 -0
  68. csv_detective/output/example.py +0 -0
  69. csv_detective/output/profile.py +0 -0
  70. csv_detective/output/schema.py +0 -0
  71. csv_detective/output/utils.py +0 -0
  72. csv_detective/parsing/__init__.py +0 -0
  73. csv_detective/parsing/columns.py +0 -0
  74. csv_detective/parsing/compression.py +0 -0
  75. csv_detective/parsing/csv.py +0 -0
  76. csv_detective/parsing/excel.py +0 -0
  77. csv_detective/parsing/load.py +0 -0
  78. csv_detective/validate.py +10 -4
  79. {csv_detective-0.10.1.dev2669.dist-info → csv_detective-0.10.2.dist-info}/METADATA +18 -17
  80. {csv_detective-0.10.1.dev2669.dist-info → csv_detective-0.10.2.dist-info}/RECORD +32 -13
  81. csv_detective-0.10.2.dist-info/WHEEL +5 -0
  82. {csv_detective-0.10.1.dev2669.dist-info → csv_detective-0.10.2.dist-info}/entry_points.txt +0 -1
  83. csv_detective-0.10.2.dist-info/licenses/LICENSE +21 -0
  84. csv_detective-0.10.2.dist-info/top_level.txt +3 -0
  85. tests/__init__.py +0 -0
  86. tests/data/a_test_file.csv +407 -0
  87. tests/data/a_test_file.json +394 -0
  88. tests/data/b_test_file.csv +7 -0
  89. tests/data/c_test_file.csv +2 -0
  90. tests/data/csv_file +7 -0
  91. tests/data/file.csv.gz +0 -0
  92. tests/data/file.ods +0 -0
  93. tests/data/file.xls +0 -0
  94. tests/data/file.xlsx +0 -0
  95. tests/data/xlsx_file +0 -0
  96. tests/test_example.py +67 -0
  97. tests/test_fields.py +169 -0
  98. tests/test_file.py +448 -0
  99. tests/test_labels.py +26 -0
  100. tests/test_structure.py +45 -0
  101. tests/test_validation.py +108 -0
  102. csv_detective-0.10.1.dev2669.dist-info/WHEEL +0 -4
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
csv_detective/format.py CHANGED
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
csv_detective/validate.py CHANGED
@@ -99,15 +99,21 @@ def validate(
99
99
  chunk[col].value_counts(dropna=False),
100
100
  fill_value=0,
101
101
  )
102
- for col_name, args in previous_analysis["columns"].items():
102
+ for col_name, detected in previous_analysis["columns"].items():
103
103
  if verbose:
104
- logging.info(f"- Testing {col_name} for {args['format']}")
105
- if args["format"] == "string":
104
+ logging.info(f"- Testing {col_name} for {detected['format']}")
105
+ if detected["format"] == "string":
106
106
  # no test for columns that have not been recognized as a specific format
107
107
  continue
108
+ if detected["format"] not in formats:
109
+ if verbose:
110
+ logging.warning(
111
+ f"> Unknown format `{detected['format']}`, proceeding with full analysis"
112
+ )
113
+ return False, first_chunk, analysis, None
108
114
  test_result: float = test_col_val(
109
115
  serie=chunk[col_name],
110
- format=formats[args["format"]],
116
+ format=formats[detected["format"]],
111
117
  skipna=skipna,
112
118
  )
113
119
  if not bool(test_result):
@@ -1,32 +1,33 @@
1
- Metadata-Version: 2.3
1
+ Metadata-Version: 2.4
2
2
  Name: csv-detective
3
- Version: 0.10.1.dev2669
3
+ Version: 0.10.2
4
4
  Summary: Detect tabular files column content
5
- Keywords: CSV,data processing,encoding,guess,parser,tabular
6
- Author: data.gouv.fr
7
- Author-email: data.gouv.fr <opendatateam@data.gouv.fr>
5
+ Author-email: "data.gouv.fr" <opendatateam@data.gouv.fr>
8
6
  License: MIT
9
- Requires-Dist: dateparser>=1.2.0,<2
7
+ Project-URL: Source, https://github.com/datagouv/csv-detective
8
+ Keywords: CSV,data processing,encoding,guess,parser,tabular
9
+ Requires-Python: <3.15,>=3.10
10
+ Description-Content-Type: text/markdown
11
+ License-File: LICENSE
12
+ Requires-Dist: dateparser<2,>=1.2.0
10
13
  Requires-Dist: faust-cchardet==2.1.19
11
- Requires-Dist: pandas>=2.2.0,<3
12
- Requires-Dist: python-dateutil>=2.8.2,<3
13
- Requires-Dist: unidecode>=1.3.6,<2
14
+ Requires-Dist: pandas<3,>=2.2.0
15
+ Requires-Dist: python-dateutil<3,>=2.8.2
16
+ Requires-Dist: Unidecode<2,>=1.3.6
14
17
  Requires-Dist: openpyxl>=3.1.5
15
18
  Requires-Dist: xlrd>=2.0.1
16
19
  Requires-Dist: odfpy>=1.4.1
17
- Requires-Dist: requests>=2.32.3,<3
20
+ Requires-Dist: requests<3,>=2.32.3
18
21
  Requires-Dist: python-magic>=0.4.27
19
22
  Requires-Dist: frformat==0.4.0
20
- Requires-Dist: faker>=33.0.0
23
+ Requires-Dist: Faker>=33.0.0
21
24
  Requires-Dist: rstr>=3.2.2
22
25
  Requires-Dist: more-itertools>=10.8.0
23
- Requires-Dist: pytest>=8.3.0 ; extra == 'dev'
24
- Requires-Dist: responses>=0.25.0 ; extra == 'dev'
25
- Requires-Dist: ruff>=0.9.3 ; extra == 'dev'
26
- Requires-Python: >=3.10, <3.15
27
- Project-URL: Source, https://github.com/datagouv/csv-detective
28
26
  Provides-Extra: dev
29
- Description-Content-Type: text/markdown
27
+ Requires-Dist: pytest>=8.3.0; extra == "dev"
28
+ Requires-Dist: responses>=0.25.0; extra == "dev"
29
+ Requires-Dist: ruff>=0.9.3; extra == "dev"
30
+ Dynamic: license-file
30
31
 
31
32
  # CSV Detective
32
33
 
@@ -1,5 +1,9 @@
1
1
  csv_detective/__init__.py,sha256=zlYElTOp_I2_VG7ZdOTuAu0wuCXSc0cr3sH6gtk2bcg,152
2
2
  csv_detective/cli.py,sha256=mu5anmBmaDk52_uZGiA4T37wYZCuV43gZAepjs1Cqzc,1389
3
+ csv_detective/explore_csv.py,sha256=qSf6N3tbp43BUMJF5wiXz3aYKaTez6ro-75KL2Arci4,7174
4
+ csv_detective/format.py,sha256=VglcxWBmjTvWNMhwSUZDfMdJcK9lAUum64Jxvm70AJ4,2898
5
+ csv_detective/utils.py,sha256=RJ_zFOJ1DRY8HtDrKPiCdNk5gU6-KwOrOKOyfSkBZZY,1118
6
+ csv_detective/validate.py,sha256=QBJhwHP0U0Ux7ODGV6foqNGm-DlbECIo6jUsBFOdDr0,5739
3
7
  csv_detective/detection/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
8
  csv_detective/detection/columns.py,sha256=_JtZHBr3aoEmSWh2xVe2ISnt-G7hpnA9vqlvcaGd0Go,2887
5
9
  csv_detective/detection/encoding.py,sha256=KZ8W8BPfZAq9UiP5wgaeupYa5INU8KPz98E2L3XpX2Y,999
@@ -9,8 +13,6 @@ csv_detective/detection/headers.py,sha256=95pTL524Sy5PGxyQ03ofFUaamvlmkxTJQe8u6H
9
13
  csv_detective/detection/rows.py,sha256=quf3ZTTFPOo09H-faZ9cRKibb1QGHEKHlpivFRx2Va4,742
10
14
  csv_detective/detection/separator.py,sha256=XjeDBqhiBxVfkCPJKem9BAgJqs_hOgQltc_pxrH_-Tg,1547
11
15
  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
16
  csv_detective/formats/__init__.py,sha256=Egiy29kcG3Oz2eE2maYhD3wP29zOSOWyRlOpGD5LGvU,318
15
17
  csv_detective/formats/adresse.py,sha256=79tIXeC1AUjUG9m0XGZUcP_BXvmLgd1M8XVfxgLNGDE,1966
16
18
  csv_detective/formats/binary.py,sha256=26qrbqv_Dqu0LhVPpQOz2xzglxse7Nz5EasbQ0xP38c,715
@@ -26,11 +28,6 @@ csv_detective/formats/code_rna.py,sha256=o6Kptrux6T2bSnWHi7MBCqIfVKbMMeN4dHlxxzk
26
28
  csv_detective/formats/code_waldec.py,sha256=j4-xpj_73c7IdgLoZJY_kRVj3HkpB7RFfGPN4NwPmVo,303
27
29
  csv_detective/formats/commune.py,sha256=QVscVy5Ij9kdzKJgIG2aFC_v1IRsov5M9Zkj_SHDWgs,541
28
30
  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=-_N-zAmcT7rK7ACRfsrM01Ton4_XtZGcNk-7lU28VHU,4397
31
- csv_detective/formats/data/iso_country_code_alpha2.txt,sha256=mLt_qcQ6D8hfy9zdi7fAK_zON1ojReKlKMA8c2VDoRU,752
32
- csv_detective/formats/data/iso_country_code_alpha3.txt,sha256=XFPdGBsyZCBg4D8IDn6VgwsycCwYVfuqPbyHfNeqGv0,1003
33
- csv_detective/formats/data/iso_country_code_numeric.txt,sha256=sdGpn0PqDMlc59-7prThkihHrf7mwB6j5uEHpxGvLFE,1003
34
31
  csv_detective/formats/date.py,sha256=Q6w1azLKNshJJVLOPBHj-77ZinXYMW_EKp_BGDshLLE,2802
35
32
  csv_detective/formats/date_fr.py,sha256=YnNXSgT6QekfTUJoS5yuRX8LeK-fmVDgLgVP9cP0e4M,505
36
33
  csv_detective/formats/datetime_aware.py,sha256=izKo6CA-MNIzmmM3Br4-FOESyqCS_YYK8N4V9D6CVEI,1909
@@ -71,6 +68,11 @@ csv_detective/formats/url.py,sha256=m3i_XhFRFaAxSACS05XfciQ-oyTCsP_0TASShCY2t7A,
71
68
  csv_detective/formats/username.py,sha256=6qviaFOtF2wg-gtvs0N8548JxFNE67Ue3a0JD0Kv7TQ,261
72
69
  csv_detective/formats/uuid.py,sha256=LxkRZFAOlfig5KKrravO9bgyYjmRBegzOtGyzjopVNc,352
73
70
  csv_detective/formats/year.py,sha256=tMc2HHr6Jga3PGWjmeHweK3G17DsjkIpIUUkCecXAm4,362
71
+ csv_detective/formats/data/csp_insee.txt,sha256=kgKaKc-5PHu5U4--ugLjpFyMNtTU9CGdZ9ANU3YAsM4,32879
72
+ csv_detective/formats/data/insee_ape700.txt,sha256=-_N-zAmcT7rK7ACRfsrM01Ton4_XtZGcNk-7lU28VHU,4397
73
+ csv_detective/formats/data/iso_country_code_alpha2.txt,sha256=mLt_qcQ6D8hfy9zdi7fAK_zON1ojReKlKMA8c2VDoRU,752
74
+ csv_detective/formats/data/iso_country_code_alpha3.txt,sha256=XFPdGBsyZCBg4D8IDn6VgwsycCwYVfuqPbyHfNeqGv0,1003
75
+ csv_detective/formats/data/iso_country_code_numeric.txt,sha256=sdGpn0PqDMlc59-7prThkihHrf7mwB6j5uEHpxGvLFE,1003
74
76
  csv_detective/output/__init__.py,sha256=ALSq_tgX7rGyh--7rmbKz8wHkmResN0h7mNujndow3w,2103
75
77
  csv_detective/output/dataframe.py,sha256=QX5vplx0AOKgnwwJ6dKvDHWRX9IGPStax-svXEyweJ8,3584
76
78
  csv_detective/output/example.py,sha256=8LWheSBYCeDFfarbnmzBrdCbTd8Alh1U4pfXMKfabOw,8630
@@ -84,9 +86,26 @@ csv_detective/parsing/csv.py,sha256=5rw6gXZFQC1T4NT9CnW0AumidrYOkF8kjrfWGmk949I,
84
86
  csv_detective/parsing/excel.py,sha256=tb65I78tdYlZci_tzvvQt8U6bZSYKjeVdn2CEvsET1o,6972
85
87
  csv_detective/parsing/load.py,sha256=f-8aKiNpy_47qg4Lq-UZUR4NNrbJ_-KEGvcUQZ8cmb0,4317
86
88
  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.dev2669.dist-info/WHEEL,sha256=XjEbIc5-wIORjWaafhI6vBtlxDBp7S9KiujWF1EM7Ak,79
90
- csv_detective-0.10.1.dev2669.dist-info/entry_points.txt,sha256=1J86TQNCanjsLMboAufdEUla03qEQaC9QmVGYgt2FCQ,57
91
- csv_detective-0.10.1.dev2669.dist-info/METADATA,sha256=MqiSxo1B23LDTq6iK68Ok1HzyiDknmIM2OgdyI6zo4Y,11064
92
- csv_detective-0.10.1.dev2669.dist-info/RECORD,,
89
+ csv_detective-0.10.2.dist-info/licenses/LICENSE,sha256=A1dQrzxyxRHRih02KwibWj1khQyF7GeA6SqdOU87Gk4,1088
90
+ tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
91
+ tests/test_example.py,sha256=uTWswvUzBWEADGXZmMAdZvKhKvIjvT5zWOVVABgCDN4,1987
92
+ tests/test_fields.py,sha256=EuD2F1JUR8y88Hm-AYuJ5X7AKkGSyLIQfsGdxYgIWng,5680
93
+ tests/test_file.py,sha256=_ftEymft5-1keUVE5AUdF2XkVcChJo6oBjws3ye06FE,14543
94
+ tests/test_labels.py,sha256=lgxRbLrGV1C-MkASf3KIQ120BG-UHzFQ4pqDWaeBvaw,539
95
+ tests/test_structure.py,sha256=XDbviuuvk-0Mu9Y9PI6He2e5hry2dXVJ6yBVwEqF_2o,1043
96
+ tests/test_validation.py,sha256=9djBT-PDhu_563OFgWyE20o-wPEWEIQGXp6Pjh0_MQM,3463
97
+ tests/data/a_test_file.csv,sha256=SOHjseGYqZer9yu3Bd3oS12Vw8MFsebo0BzrLZ_R4Cc,68871
98
+ tests/data/a_test_file.json,sha256=fB9bCpAMFPxFw8KxHRFlgRqjYG819QVGrCQWxQvwkvo,10542
99
+ tests/data/b_test_file.csv,sha256=wJGX62KhYjZi62De2XjZWClAzeRFEBsg3ET0IPX1BNU,98
100
+ tests/data/c_test_file.csv,sha256=dz6axMyFscHIWR2Brqia_jvlBfQ30l1rFrxvcTqsmJ8,36
101
+ tests/data/csv_file,sha256=nMAQx2PrQliu3czifCHXLyruZbvCNTyYqwZ4JYzImqA,70
102
+ tests/data/file.csv.gz,sha256=mfGfqG5mGlojCs05A0IF7IUZe5r87bAe2FuQ0Uh5ZMI,108
103
+ tests/data/file.ods,sha256=4dR7zWptz5djALIBVeWHQ20GaZNfA63fevIJGFIk1_U,11832
104
+ tests/data/file.xls,sha256=QYmNX3FF0QfcQSzYQMtaMJaepJf5EZpDa1miKc4wMdQ,21495
105
+ tests/data/file.xlsx,sha256=naWzL02PK4pdIjMzfEyfSW9GQhkYYd_e7bpJvB8Pb2w,8314
106
+ tests/data/xlsx_file,sha256=NyOyN_rIe7ryJuHQLqjxVdKCc8V4s5pxyHl6wWFykCM,8305
107
+ csv_detective-0.10.2.dist-info/METADATA,sha256=pDevW_T3bj85r82l32w9XY6egT1BdGIdQ5Ety9ijy6k,11077
108
+ csv_detective-0.10.2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
109
+ csv_detective-0.10.2.dist-info/entry_points.txt,sha256=JjweTReFqKJmuvkegzlew2j3D5pZzfxvbEGOtGVGmaY,56
110
+ csv_detective-0.10.2.dist-info/top_level.txt,sha256=KDI4gyOpkmormGgUvSWrE3jen2e0unIsxR2b96DRvcw,25
111
+ csv_detective-0.10.2.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (80.9.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -1,3 +1,2 @@
1
1
  [console_scripts]
2
2
  csv_detective = csv_detective.cli:run
3
-
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 data.gouv.fr
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,3 @@
1
+ csv_detective
2
+ dist
3
+ tests
tests/__init__.py ADDED
File without changes