volue-insight-timeseries 1.1.0__tar.gz → 1.2.0__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 volue-insight-timeseries might be problematic. Click here for more details.
- {volue-insight-timeseries-1.1.0/volue_insight_timeseries.egg-info → volue-insight-timeseries-1.2.0}/PKG-INFO +2 -2
- {volue-insight-timeseries-1.1.0 → volue-insight-timeseries-1.2.0}/README.md +2 -2
- {volue-insight-timeseries-1.1.0 → volue-insight-timeseries-1.2.0}/setup.py +1 -1
- volue-insight-timeseries-1.2.0/volue_insight_timeseries/VERSION +1 -0
- {volue-insight-timeseries-1.1.0 → volue-insight-timeseries-1.2.0/volue_insight_timeseries.egg-info}/PKG-INFO +2 -2
- volue-insight-timeseries-1.1.0/volue_insight_timeseries/VERSION +0 -1
- {volue-insight-timeseries-1.1.0 → volue-insight-timeseries-1.2.0}/LICENSE +0 -0
- {volue-insight-timeseries-1.1.0 → volue-insight-timeseries-1.2.0}/MANIFEST.in +0 -0
- {volue-insight-timeseries-1.1.0 → volue-insight-timeseries-1.2.0}/setup.cfg +0 -0
- {volue-insight-timeseries-1.1.0 → volue-insight-timeseries-1.2.0}/volue_insight_timeseries/__init__.py +0 -0
- {volue-insight-timeseries-1.1.0 → volue-insight-timeseries-1.2.0}/volue_insight_timeseries/auth.py +0 -0
- {volue-insight-timeseries-1.1.0 → volue-insight-timeseries-1.2.0}/volue_insight_timeseries/curves.py +0 -0
- {volue-insight-timeseries-1.1.0 → volue-insight-timeseries-1.2.0}/volue_insight_timeseries/events.py +0 -0
- {volue-insight-timeseries-1.1.0 → volue-insight-timeseries-1.2.0}/volue_insight_timeseries/session.py +0 -0
- {volue-insight-timeseries-1.1.0 → volue-insight-timeseries-1.2.0}/volue_insight_timeseries/util.py +0 -0
- {volue-insight-timeseries-1.1.0 → volue-insight-timeseries-1.2.0}/volue_insight_timeseries.egg-info/SOURCES.txt +0 -0
- {volue-insight-timeseries-1.1.0 → volue-insight-timeseries-1.2.0}/volue_insight_timeseries.egg-info/dependency_links.txt +0 -0
- {volue-insight-timeseries-1.1.0 → volue-insight-timeseries-1.2.0}/volue_insight_timeseries.egg-info/requires.txt +0 -0
- {volue-insight-timeseries-1.1.0 → volue-insight-timeseries-1.2.0}/volue_insight_timeseries.egg-info/top_level.txt +0 -0
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: volue-insight-timeseries
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.2.0
|
|
4
4
|
Summary: Volue Insight API python library
|
|
5
5
|
Home-page: https://www.volueinsight.com
|
|
6
6
|
Author: Volue Insight
|
|
7
7
|
Author-email: support.insight@volue.com
|
|
8
|
-
Requires-Python: >=3.9, <3.
|
|
8
|
+
Requires-Python: >=3.9, <3.13a0
|
|
9
9
|
License-File: LICENSE
|
|
10
10
|
|
|
11
11
|
This library is meant as a simple toolkit for working with data from https://api.volueinsight.com/ (or equivalent services). Note that access is based on some sort of login credentials, this library is not all that useful unless you have a valid Volue Insight account.
|
|
@@ -6,7 +6,7 @@ https://api.volueinsight.com/ (or equivalent services). Note that access
|
|
|
6
6
|
is based on having a valid Volue Insight account. Please contact
|
|
7
7
|
sales.insight@volue.com in order to get a trial account.
|
|
8
8
|
|
|
9
|
-
The library is tested against Python 3.9, 3.10 and 3.
|
|
9
|
+
The library is tested against Python 3.9, 3.10, 3.11 and 3.12 - we recommend using
|
|
10
10
|
the latest Python version.
|
|
11
11
|
|
|
12
12
|
|
|
@@ -54,7 +54,7 @@ the event of a severe bug that we will do any changes to it.
|
|
|
54
54
|
These are the steps you will have to do in order to successfully
|
|
55
55
|
make the switch.
|
|
56
56
|
|
|
57
|
-
* Use Python 3.9, 3.10 or 3.
|
|
57
|
+
* Use Python 3.9, 3.10, 3.11 or 3.12
|
|
58
58
|
* Use Pandas 1.5.0 or newer
|
|
59
59
|
* Use [zoneinfo](https://docs.python.org/3/library/zoneinfo.html), not pytz for handling time zone information
|
|
60
60
|
|
|
@@ -27,7 +27,7 @@ with open(os.path.join(here, 'volue_insight_timeseries/VERSION')) as fv:
|
|
|
27
27
|
|
|
28
28
|
setup(
|
|
29
29
|
name='volue-insight-timeseries',
|
|
30
|
-
python_requires='>=3.9, <3.
|
|
30
|
+
python_requires='>=3.9, <3.13a0',
|
|
31
31
|
packages=find_packages(),
|
|
32
32
|
install_requires=extract_requirements('requirements.txt'),
|
|
33
33
|
tests_require=[
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
1.2.0
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: volue-insight-timeseries
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.2.0
|
|
4
4
|
Summary: Volue Insight API python library
|
|
5
5
|
Home-page: https://www.volueinsight.com
|
|
6
6
|
Author: Volue Insight
|
|
7
7
|
Author-email: support.insight@volue.com
|
|
8
|
-
Requires-Python: >=3.9, <3.
|
|
8
|
+
Requires-Python: >=3.9, <3.13a0
|
|
9
9
|
License-File: LICENSE
|
|
10
10
|
|
|
11
11
|
This library is meant as a simple toolkit for working with data from https://api.volueinsight.com/ (or equivalent services). Note that access is based on some sort of login credentials, this library is not all that useful unless you have a valid Volue Insight account.
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
1.1.0
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{volue-insight-timeseries-1.1.0 → volue-insight-timeseries-1.2.0}/volue_insight_timeseries/auth.py
RENAMED
|
File without changes
|
{volue-insight-timeseries-1.1.0 → volue-insight-timeseries-1.2.0}/volue_insight_timeseries/curves.py
RENAMED
|
File without changes
|
{volue-insight-timeseries-1.1.0 → volue-insight-timeseries-1.2.0}/volue_insight_timeseries/events.py
RENAMED
|
File without changes
|
|
File without changes
|
{volue-insight-timeseries-1.1.0 → volue-insight-timeseries-1.2.0}/volue_insight_timeseries/util.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|