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.
- csv_detective/format.py +3 -3
- csv_detective/formats/adresse.py +9 -9
- csv_detective/formats/binary.py +1 -1
- csv_detective/formats/booleen.py +2 -2
- csv_detective/formats/code_commune_insee.py +11 -10
- csv_detective/formats/code_csp_insee.py +1 -1
- csv_detective/formats/code_departement.py +7 -7
- csv_detective/formats/code_fantoir.py +5 -5
- csv_detective/formats/code_import.py +1 -1
- csv_detective/formats/code_postal.py +9 -9
- csv_detective/formats/code_region.py +6 -6
- csv_detective/formats/code_rna.py +7 -6
- csv_detective/formats/code_waldec.py +1 -1
- csv_detective/formats/commune.py +5 -5
- csv_detective/formats/csp_insee.py +6 -5
- csv_detective/formats/date.py +17 -17
- csv_detective/formats/date_fr.py +1 -1
- csv_detective/formats/datetime_aware.py +1 -1
- csv_detective/formats/departement.py +15 -15
- csv_detective/formats/email.py +13 -13
- csv_detective/formats/float.py +1 -1
- csv_detective/formats/geojson.py +9 -10
- csv_detective/formats/insee_ape700.py +10 -8
- csv_detective/formats/insee_canton.py +6 -6
- csv_detective/formats/int.py +1 -1
- csv_detective/formats/iso_country_code_alpha2.py +10 -9
- csv_detective/formats/iso_country_code_alpha3.py +2 -9
- csv_detective/formats/iso_country_code_numeric.py +2 -9
- csv_detective/formats/jour_de_la_semaine.py +11 -12
- csv_detective/formats/json.py +5 -0
- csv_detective/formats/latitude_l93.py +6 -22
- csv_detective/formats/latitude_wgs.py +19 -26
- csv_detective/formats/latitude_wgs_fr_metropole.py +2 -26
- csv_detective/formats/latlon_wgs.py +26 -26
- csv_detective/formats/longitude_l93.py +6 -13
- csv_detective/formats/longitude_wgs.py +22 -16
- csv_detective/formats/longitude_wgs_fr_metropole.py +2 -16
- csv_detective/formats/lonlat_wgs.py +9 -9
- csv_detective/formats/mois_de_lannee.py +1 -1
- csv_detective/formats/money.py +1 -1
- csv_detective/formats/mongo_object_id.py +1 -1
- csv_detective/formats/pays.py +11 -13
- csv_detective/formats/percent.py +1 -1
- csv_detective/formats/region.py +13 -13
- csv_detective/formats/sexe.py +1 -1
- csv_detective/formats/siren.py +8 -10
- csv_detective/formats/siret.py +8 -9
- csv_detective/formats/tel_fr.py +7 -13
- csv_detective/formats/uai.py +17 -18
- csv_detective/formats/url.py +16 -16
- csv_detective/formats/username.py +1 -1
- csv_detective/formats/uuid.py +1 -1
- csv_detective/formats/year.py +6 -12
- csv_detective/parsing/text.py +13 -12
- {csv_detective-0.10.1.dev2590.dist-info → csv_detective-0.10.1.dev2599.dist-info}/METADATA +1 -1
- csv_detective-0.10.1.dev2599.dist-info/RECORD +92 -0
- {csv_detective-0.10.1.dev2590.dist-info → csv_detective-0.10.1.dev2599.dist-info}/WHEEL +1 -1
- csv_detective-0.10.1.dev2590.dist-info/RECORD +0 -92
- {csv_detective-0.10.1.dev2590.dist-info → csv_detective-0.10.1.dev2599.dist-info}/entry_points.txt +0 -0
|
@@ -2,33 +2,17 @@ from frformat import LatitudeL93
|
|
|
2
2
|
|
|
3
3
|
from csv_detective.formats.float import _is as is_float
|
|
4
4
|
from csv_detective.formats.float import float_casting
|
|
5
|
+
from csv_detective.formats.latitude_wgs import SHARED_LATITUDE_LABELS
|
|
5
6
|
|
|
6
7
|
proportion = 1
|
|
7
8
|
tags = ["fr", "geo"]
|
|
8
9
|
mandatory_label = True
|
|
9
10
|
python_type = "float"
|
|
10
|
-
labels =
|
|
11
|
-
"
|
|
12
|
-
"
|
|
13
|
-
"
|
|
14
|
-
|
|
15
|
-
"yd",
|
|
16
|
-
"y l93",
|
|
17
|
-
"coordonnee y",
|
|
18
|
-
"latitude lb93",
|
|
19
|
-
"coord y",
|
|
20
|
-
"ycoord",
|
|
21
|
-
"geocodage y gps",
|
|
22
|
-
"location latitude",
|
|
23
|
-
"ylatitude",
|
|
24
|
-
"ylat",
|
|
25
|
-
"latitude (y)",
|
|
26
|
-
"latitudeorg",
|
|
27
|
-
"coordinates.latitude",
|
|
28
|
-
"googlemap latitude",
|
|
29
|
-
"latitudelieu",
|
|
30
|
-
"latitude googlemap",
|
|
31
|
-
]
|
|
11
|
+
labels = SHARED_LATITUDE_LABELS | {
|
|
12
|
+
"y l93": 1,
|
|
13
|
+
"latitude lb93": 1,
|
|
14
|
+
"lamby": 1,
|
|
15
|
+
}
|
|
32
16
|
|
|
33
17
|
_latitudel93 = LatitudeL93()
|
|
34
18
|
|
|
@@ -4,37 +4,30 @@ proportion = 1
|
|
|
4
4
|
tags = ["geo"]
|
|
5
5
|
mandatory_label = True
|
|
6
6
|
python_type = "float"
|
|
7
|
-
|
|
8
|
-
"latitude",
|
|
9
|
-
"lat",
|
|
10
|
-
"y",
|
|
11
|
-
"yf",
|
|
12
|
-
"yd",
|
|
13
|
-
"coordonnee y",
|
|
14
|
-
"coord y",
|
|
15
|
-
"ycoord",
|
|
16
|
-
"
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
"
|
|
20
|
-
"latitude
|
|
21
|
-
"
|
|
22
|
-
"
|
|
23
|
-
"
|
|
24
|
-
|
|
25
|
-
"latitude googlemap",
|
|
26
|
-
"latitude wgs84",
|
|
27
|
-
"y wgs84",
|
|
28
|
-
"latitude (wgs84)",
|
|
29
|
-
]
|
|
7
|
+
SHARED_LATITUDE_LABELS = {
|
|
8
|
+
"latitude": 1,
|
|
9
|
+
"lat": 0.75,
|
|
10
|
+
"y": 0.5,
|
|
11
|
+
"yf": 0.5,
|
|
12
|
+
"yd": 0.5,
|
|
13
|
+
"coordonnee y": 1,
|
|
14
|
+
"coord y": 1,
|
|
15
|
+
"ycoord": 1,
|
|
16
|
+
"ylat": 1,
|
|
17
|
+
}
|
|
18
|
+
labels = SHARED_LATITUDE_LABELS | {
|
|
19
|
+
"y gps": 1,
|
|
20
|
+
"latitude wgs84": 1,
|
|
21
|
+
"y wgs84": 1,
|
|
22
|
+
"wsg": 0.75,
|
|
23
|
+
"gps": 0.5,
|
|
24
|
+
}
|
|
30
25
|
|
|
31
26
|
|
|
32
27
|
def _is(val):
|
|
33
28
|
try:
|
|
34
29
|
return is_float(val) and float(val) >= -90 and float(val) <= 90
|
|
35
|
-
except
|
|
36
|
-
return False
|
|
37
|
-
except OverflowError:
|
|
30
|
+
except Exception:
|
|
38
31
|
return False
|
|
39
32
|
|
|
40
33
|
|
|
@@ -1,40 +1,16 @@
|
|
|
1
1
|
from csv_detective.formats.float import _is as is_float
|
|
2
|
+
from csv_detective.formats.latitude_wgs import labels # noqa
|
|
2
3
|
|
|
3
4
|
proportion = 1
|
|
4
5
|
tags = ["fr", "geo"]
|
|
5
6
|
mandatory_label = True
|
|
6
7
|
python_type = "float"
|
|
7
|
-
labels = [
|
|
8
|
-
"latitude",
|
|
9
|
-
"lat",
|
|
10
|
-
"y",
|
|
11
|
-
"yf",
|
|
12
|
-
"yd",
|
|
13
|
-
"coordonnee y",
|
|
14
|
-
"coord y",
|
|
15
|
-
"ycoord",
|
|
16
|
-
"geocodage y gps",
|
|
17
|
-
"location latitude",
|
|
18
|
-
"ylatitude",
|
|
19
|
-
"ylat",
|
|
20
|
-
"latitude (y)",
|
|
21
|
-
"latitudeorg",
|
|
22
|
-
"coordinates.latitude",
|
|
23
|
-
"googlemap latitude",
|
|
24
|
-
"latitudelieu",
|
|
25
|
-
"latitude googlemap",
|
|
26
|
-
"latitude wgs84",
|
|
27
|
-
"y wgs84",
|
|
28
|
-
"latitude (wgs84)",
|
|
29
|
-
]
|
|
30
8
|
|
|
31
9
|
|
|
32
10
|
def _is(val):
|
|
33
11
|
try:
|
|
34
12
|
return is_float(val) and float(val) >= 41.3 and float(val) <= 51.3
|
|
35
|
-
except
|
|
36
|
-
return False
|
|
37
|
-
except OverflowError:
|
|
13
|
+
except Exception:
|
|
38
14
|
return False
|
|
39
15
|
|
|
40
16
|
|
|
@@ -5,36 +5,36 @@ proportion = 1
|
|
|
5
5
|
tags = ["geo"]
|
|
6
6
|
mandatory_label = True
|
|
7
7
|
|
|
8
|
-
SHARED_COORDS_LABELS =
|
|
9
|
-
"ban",
|
|
10
|
-
"coordinates",
|
|
11
|
-
"coordonnees",
|
|
12
|
-
"coordonnees insee",
|
|
13
|
-
"geo",
|
|
14
|
-
"geopoint",
|
|
15
|
-
"geoloc",
|
|
16
|
-
"geolocalisation",
|
|
17
|
-
"geom",
|
|
18
|
-
"geometry",
|
|
19
|
-
"gps",
|
|
20
|
-
"localisation",
|
|
21
|
-
"point",
|
|
22
|
-
"position",
|
|
23
|
-
"wgs84",
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
specific =
|
|
27
|
-
"latlon",
|
|
28
|
-
"lat lon",
|
|
29
|
-
"x y",
|
|
30
|
-
"xy",
|
|
31
|
-
|
|
8
|
+
SHARED_COORDS_LABELS = {
|
|
9
|
+
"ban": 1,
|
|
10
|
+
"coordinates": 1,
|
|
11
|
+
"coordonnees": 1,
|
|
12
|
+
"coordonnees insee": 1,
|
|
13
|
+
"geo": 0.5,
|
|
14
|
+
"geopoint": 1,
|
|
15
|
+
"geoloc": 1,
|
|
16
|
+
"geolocalisation": 1,
|
|
17
|
+
"geom": 0.75,
|
|
18
|
+
"geometry": 1,
|
|
19
|
+
"gps": 1,
|
|
20
|
+
"localisation": 1,
|
|
21
|
+
"point": 1,
|
|
22
|
+
"position": 1,
|
|
23
|
+
"wgs84": 1,
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
specific = {
|
|
27
|
+
"latlon": 1,
|
|
28
|
+
"lat lon": 1,
|
|
29
|
+
"x y": 0.75,
|
|
30
|
+
"xy": 0.75,
|
|
31
|
+
}
|
|
32
32
|
|
|
33
33
|
# we aim wide to catch exact matches if possible for the highest possible score
|
|
34
34
|
labels = (
|
|
35
35
|
SHARED_COORDS_LABELS
|
|
36
|
-
|
|
37
|
-
|
|
36
|
+
| specific
|
|
37
|
+
| {w + sep + suf: 1 for suf in specific for w in SHARED_COORDS_LABELS for sep in ["", " "]}
|
|
38
38
|
)
|
|
39
39
|
|
|
40
40
|
|
|
@@ -2,24 +2,17 @@ from frformat import LongitudeL93
|
|
|
2
2
|
|
|
3
3
|
from csv_detective.formats.float import _is as is_float
|
|
4
4
|
from csv_detective.formats.float import float_casting
|
|
5
|
+
from csv_detective.formats.longitude_wgs import SHARED_LONGITUDE_LABELS
|
|
5
6
|
|
|
6
7
|
proportion = 1
|
|
7
8
|
tags = ["fr", "geo"]
|
|
8
9
|
mandatory_label = True
|
|
9
10
|
python_type = "float"
|
|
10
|
-
labels =
|
|
11
|
-
"
|
|
12
|
-
"
|
|
13
|
-
"
|
|
14
|
-
|
|
15
|
-
"location longitude",
|
|
16
|
-
"xlongitude",
|
|
17
|
-
"lng",
|
|
18
|
-
"xlong",
|
|
19
|
-
"x",
|
|
20
|
-
"xf",
|
|
21
|
-
"xd",
|
|
22
|
-
]
|
|
11
|
+
labels = SHARED_LONGITUDE_LABELS | {
|
|
12
|
+
"x l93": 1,
|
|
13
|
+
"longitude lb93": 1,
|
|
14
|
+
"lambx": 1,
|
|
15
|
+
}
|
|
23
16
|
|
|
24
17
|
_longitudel93 = LongitudeL93()
|
|
25
18
|
|
|
@@ -4,27 +4,33 @@ proportion = 1
|
|
|
4
4
|
tags = ["geo"]
|
|
5
5
|
mandatory_label = True
|
|
6
6
|
python_type = "float"
|
|
7
|
-
|
|
8
|
-
"longitude",
|
|
9
|
-
"
|
|
10
|
-
"
|
|
11
|
-
"
|
|
12
|
-
"
|
|
13
|
-
"
|
|
14
|
-
"
|
|
15
|
-
"
|
|
16
|
-
"x",
|
|
17
|
-
"
|
|
18
|
-
"
|
|
19
|
-
|
|
7
|
+
SHARED_LONGITUDE_LABELS = {
|
|
8
|
+
"longitude": 1,
|
|
9
|
+
"long": 0.75,
|
|
10
|
+
"lon": 0.75,
|
|
11
|
+
"lng": 0.5,
|
|
12
|
+
"x": 0.5,
|
|
13
|
+
"xf": 0.5,
|
|
14
|
+
"xd": 0.5,
|
|
15
|
+
"coordonnee x": 1,
|
|
16
|
+
"coord x": 1,
|
|
17
|
+
"xcoord": 1,
|
|
18
|
+
"xlon": 1,
|
|
19
|
+
"xlong": 1,
|
|
20
|
+
}
|
|
21
|
+
labels = SHARED_LONGITUDE_LABELS | {
|
|
22
|
+
"x gps": 1,
|
|
23
|
+
"longitude wgs84": 1,
|
|
24
|
+
"x wgs84": 1,
|
|
25
|
+
"wsg": 0.75,
|
|
26
|
+
"gps": 0.5,
|
|
27
|
+
}
|
|
20
28
|
|
|
21
29
|
|
|
22
30
|
def _is(val):
|
|
23
31
|
try:
|
|
24
32
|
return is_float(val) and float(val) >= -180 and float(val) <= 180
|
|
25
|
-
except
|
|
26
|
-
return False
|
|
27
|
-
except OverflowError:
|
|
33
|
+
except Exception:
|
|
28
34
|
return False
|
|
29
35
|
|
|
30
36
|
|
|
@@ -1,30 +1,16 @@
|
|
|
1
1
|
from csv_detective.formats.float import _is as is_float
|
|
2
|
+
from csv_detective.formats.longitude_wgs import labels # noqa
|
|
2
3
|
|
|
3
4
|
proportion = 1
|
|
4
5
|
tags = ["fr", "geo"]
|
|
5
6
|
mandatory_label = True
|
|
6
7
|
python_type = "float"
|
|
7
|
-
labels = [
|
|
8
|
-
"longitude",
|
|
9
|
-
"lon",
|
|
10
|
-
"long",
|
|
11
|
-
"geocodage x gps",
|
|
12
|
-
"location longitude",
|
|
13
|
-
"xlongitude",
|
|
14
|
-
"lng",
|
|
15
|
-
"xlong",
|
|
16
|
-
"x",
|
|
17
|
-
"xf",
|
|
18
|
-
"xd",
|
|
19
|
-
]
|
|
20
8
|
|
|
21
9
|
|
|
22
10
|
def _is(val):
|
|
23
11
|
try:
|
|
24
12
|
return is_float(val) and float(val) >= -5.5 and float(val) <= 9.8
|
|
25
|
-
except
|
|
26
|
-
return False
|
|
27
|
-
except OverflowError:
|
|
13
|
+
except Exception:
|
|
28
14
|
return False
|
|
29
15
|
|
|
30
16
|
|
|
@@ -6,18 +6,18 @@ proportion = 1
|
|
|
6
6
|
tags = ["geo"]
|
|
7
7
|
mandatory_label = True
|
|
8
8
|
|
|
9
|
-
specific =
|
|
10
|
-
"lonlat",
|
|
11
|
-
"lon lat",
|
|
12
|
-
"y x",
|
|
13
|
-
"yx",
|
|
14
|
-
|
|
9
|
+
specific = {
|
|
10
|
+
"lonlat": 1,
|
|
11
|
+
"lon lat": 1,
|
|
12
|
+
"y x": 0.75,
|
|
13
|
+
"yx": 0.75,
|
|
14
|
+
}
|
|
15
15
|
|
|
16
16
|
# we aim wide to catch exact matches if possible for the highest possible score
|
|
17
|
-
|
|
17
|
+
labels = (
|
|
18
18
|
SHARED_COORDS_LABELS
|
|
19
|
-
|
|
20
|
-
|
|
19
|
+
| specific
|
|
20
|
+
| {w + sep + suf: 1 for suf in specific for w in SHARED_COORDS_LABELS for sep in ["", " "]}
|
|
21
21
|
)
|
|
22
22
|
|
|
23
23
|
|
csv_detective/formats/money.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
from csv_detective.formats.float import _is as is_float
|
|
2
2
|
|
|
3
3
|
proportion = 0.8
|
|
4
|
-
labels =
|
|
4
|
+
labels = {"budget": 1, "salaire": 1, "euro": 1, "euros": 1, "prêt": 1, "montant": 1}
|
|
5
5
|
|
|
6
6
|
currencies = {"€", "$", "£", "¥"}
|
|
7
7
|
|
csv_detective/formats/pays.py
CHANGED
|
@@ -2,19 +2,17 @@ from frformat import Millesime, Options, Pays
|
|
|
2
2
|
|
|
3
3
|
proportion = 0.6
|
|
4
4
|
tags = ["fr", "geo"]
|
|
5
|
-
labels =
|
|
6
|
-
"pays",
|
|
7
|
-
"payslieu",
|
|
8
|
-
"paysorg",
|
|
9
|
-
"country",
|
|
10
|
-
"pays lib",
|
|
11
|
-
"lieupays",
|
|
12
|
-
"pays beneficiaire",
|
|
13
|
-
"nom du pays",
|
|
14
|
-
"
|
|
15
|
-
|
|
16
|
-
"journey end country",
|
|
17
|
-
]
|
|
5
|
+
labels = {
|
|
6
|
+
"pays": 1,
|
|
7
|
+
"payslieu": 1,
|
|
8
|
+
"paysorg": 1,
|
|
9
|
+
"country": 1,
|
|
10
|
+
"pays lib": 1,
|
|
11
|
+
"lieupays": 1,
|
|
12
|
+
"pays beneficiaire": 1,
|
|
13
|
+
"nom du pays": 1,
|
|
14
|
+
"libelle pays": 1,
|
|
15
|
+
}
|
|
18
16
|
|
|
19
17
|
_options = Options(
|
|
20
18
|
ignore_case=True,
|
csv_detective/formats/percent.py
CHANGED
csv_detective/formats/region.py
CHANGED
|
@@ -2,19 +2,19 @@ from frformat import Millesime, Options, Region
|
|
|
2
2
|
|
|
3
3
|
proportion = 1
|
|
4
4
|
tags = ["fr", "geo"]
|
|
5
|
-
labels =
|
|
6
|
-
"region",
|
|
7
|
-
"libelle region",
|
|
8
|
-
"nom region",
|
|
9
|
-
"libelle reg",
|
|
10
|
-
"nom reg",
|
|
11
|
-
"reg libusage",
|
|
12
|
-
"nom de la region",
|
|
13
|
-
"regionorg",
|
|
14
|
-
"regionlieu",
|
|
15
|
-
"reg",
|
|
16
|
-
"nom officiel region",
|
|
17
|
-
|
|
5
|
+
labels = {
|
|
6
|
+
"region": 1,
|
|
7
|
+
"libelle region": 1,
|
|
8
|
+
"nom region": 1,
|
|
9
|
+
"libelle reg": 1,
|
|
10
|
+
"nom reg": 1,
|
|
11
|
+
"reg libusage": 1,
|
|
12
|
+
"nom de la region": 1,
|
|
13
|
+
"regionorg": 1,
|
|
14
|
+
"regionlieu": 1,
|
|
15
|
+
"reg": 0.5,
|
|
16
|
+
"nom officiel region": 1,
|
|
17
|
+
}
|
|
18
18
|
|
|
19
19
|
_extra_valid_values_set = frozenset(
|
|
20
20
|
{
|
csv_detective/formats/sexe.py
CHANGED
csv_detective/formats/siren.py
CHANGED
|
@@ -3,16 +3,14 @@ import re
|
|
|
3
3
|
proportion = 0.9
|
|
4
4
|
tags = ["fr"]
|
|
5
5
|
mandatory_label = True
|
|
6
|
-
labels =
|
|
7
|
-
"siren",
|
|
8
|
-
"siren
|
|
9
|
-
"siren organisme
|
|
10
|
-
"
|
|
11
|
-
"siren
|
|
12
|
-
"
|
|
13
|
-
|
|
14
|
-
"epci",
|
|
15
|
-
]
|
|
6
|
+
labels = {
|
|
7
|
+
"siren": 1,
|
|
8
|
+
"n° siren": 1,
|
|
9
|
+
"siren organisme": 1,
|
|
10
|
+
"siren titulaire": 1,
|
|
11
|
+
"numero siren": 1,
|
|
12
|
+
"epci": 1,
|
|
13
|
+
}
|
|
16
14
|
|
|
17
15
|
|
|
18
16
|
def _is(val):
|
csv_detective/formats/siret.py
CHANGED
|
@@ -3,15 +3,14 @@ import re
|
|
|
3
3
|
proportion = 0.8
|
|
4
4
|
tags = ["fr"]
|
|
5
5
|
mandatory_label = True
|
|
6
|
-
labels =
|
|
7
|
-
"siret",
|
|
8
|
-
"siret
|
|
9
|
-
"
|
|
10
|
-
"
|
|
11
|
-
"
|
|
12
|
-
"
|
|
13
|
-
|
|
14
|
-
]
|
|
6
|
+
labels = {
|
|
7
|
+
"siret": 1,
|
|
8
|
+
"num siret": 1,
|
|
9
|
+
"siretacheteur": 1,
|
|
10
|
+
"n° siret": 1,
|
|
11
|
+
"coll siret": 1,
|
|
12
|
+
"epci": 1,
|
|
13
|
+
}
|
|
15
14
|
|
|
16
15
|
|
|
17
16
|
def _is(val):
|
csv_detective/formats/tel_fr.py
CHANGED
|
@@ -2,19 +2,13 @@ import re
|
|
|
2
2
|
|
|
3
3
|
proportion = 0.7
|
|
4
4
|
tags = ["fr"]
|
|
5
|
-
labels =
|
|
6
|
-
"telephone",
|
|
7
|
-
"tel",
|
|
8
|
-
"
|
|
9
|
-
"
|
|
10
|
-
"
|
|
11
|
-
|
|
12
|
-
"tel mob",
|
|
13
|
-
"telephone sav",
|
|
14
|
-
"telephone1",
|
|
15
|
-
"coordinates.phone",
|
|
16
|
-
"telephone du lieu",
|
|
17
|
-
]
|
|
5
|
+
labels = {
|
|
6
|
+
"telephone": 1,
|
|
7
|
+
"tel": 1,
|
|
8
|
+
"phone": 1,
|
|
9
|
+
"num tel": 1,
|
|
10
|
+
"tel mob": 1,
|
|
11
|
+
}
|
|
18
12
|
|
|
19
13
|
|
|
20
14
|
def _is(val):
|
csv_detective/formats/uai.py
CHANGED
|
@@ -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
|
-
"
|
|
21
|
-
|
|
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):
|
csv_detective/formats/url.py
CHANGED
|
@@ -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})"
|
csv_detective/formats/uuid.py
CHANGED
csv_detective/formats/year.py
CHANGED
|
@@ -1,18 +1,12 @@
|
|
|
1
1
|
proportion = 1
|
|
2
2
|
tags = ["temp"]
|
|
3
3
|
python_type = "int"
|
|
4
|
-
labels =
|
|
5
|
-
"year",
|
|
6
|
-
"annee",
|
|
7
|
-
"
|
|
8
|
-
"
|
|
9
|
-
|
|
10
|
-
"data year",
|
|
11
|
-
"annee de publication",
|
|
12
|
-
"exercice comptable",
|
|
13
|
-
"annee de naissance",
|
|
14
|
-
"annee ouverture",
|
|
15
|
-
]
|
|
4
|
+
labels = {
|
|
5
|
+
"year": 1,
|
|
6
|
+
"annee": 1,
|
|
7
|
+
"naissance": 1,
|
|
8
|
+
"exercice": 1,
|
|
9
|
+
}
|
|
16
10
|
|
|
17
11
|
|
|
18
12
|
def _is(val):
|