edb-noumea 0.2.10__tar.gz → 0.2.11__tar.gz
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.
- {edb_noumea-0.2.10 → edb_noumea-0.2.11}/PKG-INFO +1 -1
- {edb_noumea-0.2.10 → edb_noumea-0.2.11}/edb_noumea/details.py +1 -1
- {edb_noumea-0.2.10 → edb_noumea-0.2.11}/edb_noumea.egg-info/PKG-INFO +1 -1
- {edb_noumea-0.2.10 → edb_noumea-0.2.11}/pyproject.toml +1 -1
- {edb_noumea-0.2.10 → edb_noumea-0.2.11}/README.md +0 -0
- {edb_noumea-0.2.10 → edb_noumea-0.2.11}/edb_noumea/__init__.py +0 -0
- {edb_noumea-0.2.10 → edb_noumea-0.2.11}/edb_noumea/main.py +0 -0
- {edb_noumea-0.2.10 → edb_noumea-0.2.11}/edb_noumea.egg-info/SOURCES.txt +0 -0
- {edb_noumea-0.2.10 → edb_noumea-0.2.11}/edb_noumea.egg-info/dependency_links.txt +0 -0
- {edb_noumea-0.2.10 → edb_noumea-0.2.11}/edb_noumea.egg-info/requires.txt +0 -0
- {edb_noumea-0.2.10 → edb_noumea-0.2.11}/edb_noumea.egg-info/top_level.txt +0 -0
- {edb_noumea-0.2.10 → edb_noumea-0.2.11}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: edb-noumea
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.11
|
|
4
4
|
Summary: Un scraper pour la qualité des eaux de baignade à Nouméa.
|
|
5
5
|
Project-URL: Homepage, https://github.com/adriens/edb-noumea
|
|
6
6
|
Project-URL: Repository, https://github.com/adriens/edb-noumea
|
|
@@ -120,7 +120,7 @@ def get_detailed_results():
|
|
|
120
120
|
# Nettoyer et convertir les colonnes e_coli_npp_100ml et enterocoques_npp_100ml
|
|
121
121
|
for col in ["e_coli_npp_100ml", "enterocoques_npp_100ml"]:
|
|
122
122
|
if col in cleaned_df.columns:
|
|
123
|
-
cleaned_df[col] = cleaned_df[col].replace(r"<\s*10", "10", regex=True)
|
|
123
|
+
cleaned_df[col] = cleaned_df[col].astype(str).str.replace(r"<\s*10", "10", regex=True)
|
|
124
124
|
cleaned_df[col] = pd.to_numeric(cleaned_df[col], errors="coerce").astype('Int64')
|
|
125
125
|
|
|
126
126
|
return cleaned_df
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: edb-noumea
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.11
|
|
4
4
|
Summary: Un scraper pour la qualité des eaux de baignade à Nouméa.
|
|
5
5
|
Project-URL: Homepage, https://github.com/adriens/edb-noumea
|
|
6
6
|
Project-URL: Repository, https://github.com/adriens/edb-noumea
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|