mercuto-client 0.1.0__tar.gz → 0.2.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 mercuto-client might be problematic. Click here for more details.
- {mercuto_client-0.1.0 → mercuto_client-0.2.5}/PKG-INFO +5 -1
- {mercuto_client-0.1.0 → mercuto_client-0.2.5}/README.md +1 -3
- {mercuto_client-0.1.0 → mercuto_client-0.2.5}/mercuto_client.egg-info/PKG-INFO +5 -1
- mercuto_client-0.2.5/mercuto_client.egg-info/requires.txt +5 -0
- {mercuto_client-0.1.0 → mercuto_client-0.2.5}/pyproject.toml +5 -11
- mercuto_client-0.1.0/mercuto_client.egg-info/requires.txt +0 -1
- {mercuto_client-0.1.0 → mercuto_client-0.2.5}/LICENSE +0 -0
- {mercuto_client-0.1.0 → mercuto_client-0.2.5}/mercuto_client/__init__.py +0 -0
- {mercuto_client-0.1.0 → mercuto_client-0.2.5}/mercuto_client/_tests/__init__.py +0 -0
- {mercuto_client-0.1.0 → mercuto_client-0.2.5}/mercuto_client/_tests/conftest.py +0 -0
- {mercuto_client-0.1.0 → mercuto_client-0.2.5}/mercuto_client/_tests/test_ingester/__init__.py +0 -0
- {mercuto_client-0.1.0 → mercuto_client-0.2.5}/mercuto_client/_tests/test_ingester/test_file_processor.py +0 -0
- {mercuto_client-0.1.0 → mercuto_client-0.2.5}/mercuto_client/_tests/test_ingester/test_ftp.py +0 -0
- {mercuto_client-0.1.0 → mercuto_client-0.2.5}/mercuto_client/_tests/test_ingester/test_parsers.py +0 -0
- {mercuto_client-0.1.0 → mercuto_client-0.2.5}/mercuto_client/_tests/test_mocking.py +0 -0
- {mercuto_client-0.1.0 → mercuto_client-0.2.5}/mercuto_client/_util.py +0 -0
- {mercuto_client-0.1.0 → mercuto_client-0.2.5}/mercuto_client/acl.py +0 -0
- {mercuto_client-0.1.0 → mercuto_client-0.2.5}/mercuto_client/client.py +0 -0
- {mercuto_client-0.1.0 → mercuto_client-0.2.5}/mercuto_client/exceptions.py +0 -0
- {mercuto_client-0.1.0 → mercuto_client-0.2.5}/mercuto_client/ingester/__init__.py +0 -0
- {mercuto_client-0.1.0 → mercuto_client-0.2.5}/mercuto_client/ingester/__main__.py +0 -0
- {mercuto_client-0.1.0 → mercuto_client-0.2.5}/mercuto_client/ingester/ftp.py +0 -0
- {mercuto_client-0.1.0 → mercuto_client-0.2.5}/mercuto_client/ingester/parsers/__init__.py +0 -0
- {mercuto_client-0.1.0 → mercuto_client-0.2.5}/mercuto_client/ingester/parsers/campbell.py +0 -0
- {mercuto_client-0.1.0 → mercuto_client-0.2.5}/mercuto_client/ingester/parsers/generic_csv.py +0 -0
- {mercuto_client-0.1.0 → mercuto_client-0.2.5}/mercuto_client/ingester/parsers/worldsensing.py +0 -0
- {mercuto_client-0.1.0 → mercuto_client-0.2.5}/mercuto_client/ingester/processor.py +0 -0
- {mercuto_client-0.1.0 → mercuto_client-0.2.5}/mercuto_client/ingester/util.py +0 -0
- {mercuto_client-0.1.0 → mercuto_client-0.2.5}/mercuto_client/mocks.py +0 -0
- {mercuto_client-0.1.0 → mercuto_client-0.2.5}/mercuto_client/py.typed +0 -0
- {mercuto_client-0.1.0 → mercuto_client-0.2.5}/mercuto_client/types.py +0 -0
- {mercuto_client-0.1.0 → mercuto_client-0.2.5}/mercuto_client.egg-info/SOURCES.txt +0 -0
- {mercuto_client-0.1.0 → mercuto_client-0.2.5}/mercuto_client.egg-info/dependency_links.txt +0 -0
- {mercuto_client-0.1.0 → mercuto_client-0.2.5}/mercuto_client.egg-info/top_level.txt +0 -0
- {mercuto_client-0.1.0 → mercuto_client-0.2.5}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: mercuto-client
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.2.5
|
|
4
4
|
Summary: Library for interfacing with Rockfield's Mercuto API
|
|
5
5
|
Author-email: Daniel Whipp <daniel.whipp@rocktech.com.au>
|
|
6
6
|
Keywords: mercuto,rockfield,infratech
|
|
@@ -13,4 +13,8 @@ Classifier: Programming Language :: Python :: 3.12
|
|
|
13
13
|
Requires-Python: >=3.10
|
|
14
14
|
License-File: LICENSE
|
|
15
15
|
Requires-Dist: requests>=2.32
|
|
16
|
+
Requires-Dist: pyftpdlib>=2.0.1
|
|
17
|
+
Requires-Dist: python-dateutil>=2.9.0.post0
|
|
18
|
+
Requires-Dist: pytz>=2025.2
|
|
19
|
+
Requires-Dist: schedule>=1.2.2
|
|
16
20
|
Dynamic: license-file
|
|
@@ -4,9 +4,7 @@ Library for interfacing with Rockfield's Mercuto public API.
|
|
|
4
4
|
This library is in an early development state and is subject to major structural changes at any time.
|
|
5
5
|
|
|
6
6
|
## Installation
|
|
7
|
-
|
|
8
|
-
`pip install git+https://github.com/RockfieldTechnologiesAustralia/mercuto-client@0.1.0` or adding the same line into
|
|
9
|
-
your `requirements.txt`.
|
|
7
|
+
Install from PyPi: `pip install mercuto-client` or adding the same line into your `requirements.txt`.
|
|
10
8
|
|
|
11
9
|
## Basic Usage
|
|
12
10
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: mercuto-client
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.2.5
|
|
4
4
|
Summary: Library for interfacing with Rockfield's Mercuto API
|
|
5
5
|
Author-email: Daniel Whipp <daniel.whipp@rocktech.com.au>
|
|
6
6
|
Keywords: mercuto,rockfield,infratech
|
|
@@ -13,4 +13,8 @@ Classifier: Programming Language :: Python :: 3.12
|
|
|
13
13
|
Requires-Python: >=3.10
|
|
14
14
|
License-File: LICENSE
|
|
15
15
|
Requires-Dist: requests>=2.32
|
|
16
|
+
Requires-Dist: pyftpdlib>=2.0.1
|
|
17
|
+
Requires-Dist: python-dateutil>=2.9.0.post0
|
|
18
|
+
Requires-Dist: pytz>=2025.2
|
|
19
|
+
Requires-Dist: schedule>=1.2.2
|
|
16
20
|
Dynamic: license-file
|
|
@@ -5,8 +5,12 @@ description = "Library for interfacing with Rockfield's Mercuto API"
|
|
|
5
5
|
requires-python = ">=3.10"
|
|
6
6
|
dependencies = [
|
|
7
7
|
'requests>=2.32',
|
|
8
|
+
"pyftpdlib>=2.0.1",
|
|
9
|
+
"python-dateutil>=2.9.0.post0",
|
|
10
|
+
"pytz>=2025.2",
|
|
11
|
+
"schedule>=1.2.2",
|
|
8
12
|
]
|
|
9
|
-
version = "0.
|
|
13
|
+
version = "0.2.5"
|
|
10
14
|
keywords = ["mercuto", "rockfield", "infratech"]
|
|
11
15
|
classifiers = [
|
|
12
16
|
"Development Status :: 3 - Alpha",
|
|
@@ -22,12 +26,6 @@ repository = "https://github.com/RockfieldTechnologiesAustralia/mercuto-client"
|
|
|
22
26
|
documentation = "https://github.com/RockfieldTechnologiesAustralia/mercuto-client/blob/main/README.md"
|
|
23
27
|
|
|
24
28
|
[dependency-groups]
|
|
25
|
-
ingester = [
|
|
26
|
-
"pyftpdlib>=2.0.1",
|
|
27
|
-
"python-dateutil>=2.9.0.post0",
|
|
28
|
-
"pytz>=2025.2",
|
|
29
|
-
"schedule>=1.2.2",
|
|
30
|
-
]
|
|
31
29
|
tests = [
|
|
32
30
|
"types-requests>=2.32.4.20250611",
|
|
33
31
|
"freezegun>=1.5.2",
|
|
@@ -37,10 +35,6 @@ tests = [
|
|
|
37
35
|
"flake8>=7.2.0",
|
|
38
36
|
"mypy>=1.16.1",
|
|
39
37
|
"isort>=6.0.1",
|
|
40
|
-
"schedule>=1.2.2",
|
|
41
|
-
"python-dateutil>=2.9.0.post0",
|
|
42
|
-
"pytz>=2025.2",
|
|
43
|
-
"pyftpdlib>=2.0.1",
|
|
44
38
|
]
|
|
45
39
|
|
|
46
40
|
[build-system]
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
requests>=2.32
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{mercuto_client-0.1.0 → mercuto_client-0.2.5}/mercuto_client/_tests/test_ingester/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
{mercuto_client-0.1.0 → mercuto_client-0.2.5}/mercuto_client/_tests/test_ingester/test_ftp.py
RENAMED
|
File without changes
|
{mercuto_client-0.1.0 → mercuto_client-0.2.5}/mercuto_client/_tests/test_ingester/test_parsers.py
RENAMED
|
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
|
{mercuto_client-0.1.0 → mercuto_client-0.2.5}/mercuto_client/ingester/parsers/generic_csv.py
RENAMED
|
File without changes
|
{mercuto_client-0.1.0 → mercuto_client-0.2.5}/mercuto_client/ingester/parsers/worldsensing.py
RENAMED
|
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
|