imsciences 1.0.3__tar.gz → 1.0.5__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.
Potentially problematic release.
This version of imsciences might be problematic. Click here for more details.
- {imsciences-1.0.3 → imsciences-1.0.5}/PKG-INFO +1 -1
- {imsciences-1.0.3 → imsciences-1.0.5}/imsciences/pull.py +3 -0
- {imsciences-1.0.3 → imsciences-1.0.5}/imsciences.egg-info/PKG-INFO +1 -1
- {imsciences-1.0.3 → imsciences-1.0.5}/setup.py +1 -2
- {imsciences-1.0.3 → imsciences-1.0.5}/LICENSE.txt +0 -0
- {imsciences-1.0.3 → imsciences-1.0.5}/README.md +0 -0
- {imsciences-1.0.3 → imsciences-1.0.5}/imsciences/__init__.py +0 -0
- {imsciences-1.0.3 → imsciences-1.0.5}/imsciences/geo.py +0 -0
- {imsciences-1.0.3 → imsciences-1.0.5}/imsciences/mmm.py +0 -0
- {imsciences-1.0.3 → imsciences-1.0.5}/imsciences/vis.py +0 -0
- {imsciences-1.0.3 → imsciences-1.0.5}/imsciences.egg-info/PKG-INFO-TomG-HP-290722 +0 -0
- {imsciences-1.0.3 → imsciences-1.0.5}/imsciences.egg-info/SOURCES.txt +0 -0
- {imsciences-1.0.3 → imsciences-1.0.5}/imsciences.egg-info/dependency_links.txt +0 -0
- {imsciences-1.0.3 → imsciences-1.0.5}/imsciences.egg-info/requires.txt +0 -0
- {imsciences-1.0.3 → imsciences-1.0.5}/imsciences.egg-info/top_level.txt +0 -0
- {imsciences-1.0.3 → imsciences-1.0.5}/pyproject.toml +0 -0
- {imsciences-1.0.3 → imsciences-1.0.5}/setup.cfg +0 -0
|
@@ -2712,6 +2712,9 @@ class datapull:
|
|
|
2712
2712
|
else:
|
|
2713
2713
|
new_columns.append(f"{col}_{cdid}")
|
|
2714
2714
|
|
|
2715
|
+
# Apply the new column names to the DataFrame
|
|
2716
|
+
weekly_df.columns = new_columns
|
|
2717
|
+
|
|
2715
2718
|
return weekly_df
|
|
2716
2719
|
print("No data successfully fetched or processed.")
|
|
2717
2720
|
return pd.DataFrame()
|
|
@@ -15,14 +15,13 @@ def read_md(file_name):
|
|
|
15
15
|
except FileNotFoundError:
|
|
16
16
|
return ""
|
|
17
17
|
|
|
18
|
-
|
|
19
18
|
def get_version():
|
|
20
19
|
"""Get version from __init__.py file."""
|
|
21
20
|
with Path("imsciences/__init__.py").open("r", encoding="utf-8") as f:
|
|
22
21
|
for line in f:
|
|
23
22
|
if line.startswith("__version__"):
|
|
24
23
|
return line.split("=")[1].strip().strip('"').strip("'")
|
|
25
|
-
return "1.0.
|
|
24
|
+
return "1.0.4" # Start from 1.0.0 instead of 0.0.0
|
|
26
25
|
|
|
27
26
|
|
|
28
27
|
def increment_version():
|
|
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
|