mercuto-client 0.2.7__tar.gz → 0.2.8__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.

Files changed (37) hide show
  1. mercuto_client-0.2.8/PKG-INFO +65 -0
  2. {mercuto_client-0.2.7 → mercuto_client-0.2.8}/README.md +2 -0
  3. mercuto_client-0.2.8/mercuto_client.egg-info/PKG-INFO +65 -0
  4. {mercuto_client-0.2.7 → mercuto_client-0.2.8}/pyproject.toml +9 -5
  5. mercuto_client-0.2.7/PKG-INFO +0 -20
  6. mercuto_client-0.2.7/mercuto_client.egg-info/PKG-INFO +0 -20
  7. {mercuto_client-0.2.7 → mercuto_client-0.2.8}/LICENSE +0 -0
  8. {mercuto_client-0.2.7 → mercuto_client-0.2.8}/mercuto_client/__init__.py +0 -0
  9. {mercuto_client-0.2.7 → mercuto_client-0.2.8}/mercuto_client/_tests/__init__.py +0 -0
  10. {mercuto_client-0.2.7 → mercuto_client-0.2.8}/mercuto_client/_tests/conftest.py +0 -0
  11. {mercuto_client-0.2.7 → mercuto_client-0.2.8}/mercuto_client/_tests/test_ingester/__init__.py +0 -0
  12. {mercuto_client-0.2.7 → mercuto_client-0.2.8}/mercuto_client/_tests/test_ingester/test_file_processor.py +0 -0
  13. {mercuto_client-0.2.7 → mercuto_client-0.2.8}/mercuto_client/_tests/test_ingester/test_ftp.py +0 -0
  14. {mercuto_client-0.2.7 → mercuto_client-0.2.8}/mercuto_client/_tests/test_ingester/test_parsers.py +0 -0
  15. {mercuto_client-0.2.7 → mercuto_client-0.2.8}/mercuto_client/_tests/test_mocking.py +0 -0
  16. {mercuto_client-0.2.7 → mercuto_client-0.2.8}/mercuto_client/_util.py +0 -0
  17. {mercuto_client-0.2.7 → mercuto_client-0.2.8}/mercuto_client/acl.py +0 -0
  18. {mercuto_client-0.2.7 → mercuto_client-0.2.8}/mercuto_client/client.py +0 -0
  19. {mercuto_client-0.2.7 → mercuto_client-0.2.8}/mercuto_client/exceptions.py +0 -0
  20. {mercuto_client-0.2.7 → mercuto_client-0.2.8}/mercuto_client/ingester/__init__.py +0 -0
  21. {mercuto_client-0.2.7 → mercuto_client-0.2.8}/mercuto_client/ingester/__main__.py +0 -0
  22. {mercuto_client-0.2.7 → mercuto_client-0.2.8}/mercuto_client/ingester/ftp.py +0 -0
  23. {mercuto_client-0.2.7 → mercuto_client-0.2.8}/mercuto_client/ingester/mercuto.py +0 -0
  24. {mercuto_client-0.2.7 → mercuto_client-0.2.8}/mercuto_client/ingester/parsers/__init__.py +0 -0
  25. {mercuto_client-0.2.7 → mercuto_client-0.2.8}/mercuto_client/ingester/parsers/campbell.py +0 -0
  26. {mercuto_client-0.2.7 → mercuto_client-0.2.8}/mercuto_client/ingester/parsers/generic_csv.py +0 -0
  27. {mercuto_client-0.2.7 → mercuto_client-0.2.8}/mercuto_client/ingester/parsers/worldsensing.py +0 -0
  28. {mercuto_client-0.2.7 → mercuto_client-0.2.8}/mercuto_client/ingester/processor.py +0 -0
  29. {mercuto_client-0.2.7 → mercuto_client-0.2.8}/mercuto_client/ingester/util.py +0 -0
  30. {mercuto_client-0.2.7 → mercuto_client-0.2.8}/mercuto_client/mocks.py +0 -0
  31. {mercuto_client-0.2.7 → mercuto_client-0.2.8}/mercuto_client/py.typed +0 -0
  32. {mercuto_client-0.2.7 → mercuto_client-0.2.8}/mercuto_client/types.py +0 -0
  33. {mercuto_client-0.2.7 → mercuto_client-0.2.8}/mercuto_client.egg-info/SOURCES.txt +0 -0
  34. {mercuto_client-0.2.7 → mercuto_client-0.2.8}/mercuto_client.egg-info/dependency_links.txt +0 -0
  35. {mercuto_client-0.2.7 → mercuto_client-0.2.8}/mercuto_client.egg-info/requires.txt +0 -0
  36. {mercuto_client-0.2.7 → mercuto_client-0.2.8}/mercuto_client.egg-info/top_level.txt +0 -0
  37. {mercuto_client-0.2.7 → mercuto_client-0.2.8}/setup.cfg +0 -0
@@ -0,0 +1,65 @@
1
+ Metadata-Version: 2.4
2
+ Name: mercuto-client
3
+ Version: 0.2.8
4
+ Summary: Library for interfacing with Rockfield's Mercuto API
5
+ Author-email: Daniel Whipp <daniel.whipp@rocktech.com.au>
6
+ License-Expression: AGPL-3.0-only
7
+ Project-URL: Homepage, https://mercuto.rockfieldcloud.com.au
8
+ Project-URL: Repository, https://github.com/RockfieldTechnologiesAustralia/mercuto-client
9
+ Project-URL: Documentation, https://github.com/RockfieldTechnologiesAustralia/mercuto-client/blob/main/README.md
10
+ Keywords: mercuto,rockfield,infratech
11
+ Classifier: Development Status :: 3 - Alpha
12
+ Classifier: Intended Audience :: Developers
13
+ Classifier: Topic :: Software Development :: Build Tools
14
+ Classifier: Programming Language :: Python :: 3.10
15
+ Classifier: Programming Language :: Python :: 3.11
16
+ Classifier: Programming Language :: Python :: 3.12
17
+ Requires-Python: >=3.10
18
+ Description-Content-Type: text/markdown
19
+ License-File: LICENSE
20
+ Requires-Dist: requests>=2.32
21
+ Requires-Dist: pyftpdlib>=2.0.1
22
+ Requires-Dist: python-dateutil>=2.9.0.post0
23
+ Requires-Dist: pytz>=2025.2
24
+ Requires-Dist: schedule>=1.2.2
25
+ Dynamic: license-file
26
+
27
+ # Mercuto Client Python Library
28
+
29
+ Library for interfacing with Rockfield's Mercuto public API.
30
+ This library is in an early development state and is subject to major structural changes at any time.
31
+
32
+ (Visit our Github Repository)[https://github.com/RockfieldTechnologiesAustralia/mercuto-client]
33
+
34
+ ## Installation
35
+ Install from PyPi: `pip install mercuto-client` or adding the same line into your `requirements.txt`.
36
+
37
+ ## Basic Usage
38
+
39
+ Use the `connect()` function exposed within the main package and provide your API key.
40
+
41
+ ```python
42
+ from mercuto_client import connect
43
+
44
+ client = connect(api_key="<YOUR API KEY>")
45
+ print(client.projects().get_projects())
46
+
47
+ # Logout after finished.
48
+ client.logout()
49
+
50
+ ```
51
+
52
+ You can also use the client as a context manager. It will logout automatically.
53
+
54
+ ```python
55
+ from mercuto_client import MercutoClient
56
+
57
+ with MercutoClient.as_credentials(api_key='<YOUR API KEY>') as client:
58
+ print(client.projects().get_projects())
59
+ ```
60
+
61
+ ## Current Status
62
+ This library is incomplete and may not be fully compliant with the latest Mercuto version. It is only updated periodically and provided for use without any warranty or guarantees.
63
+
64
+ - [x] API Based login (Completed)
65
+ - [ ] Username/password login
@@ -3,6 +3,8 @@
3
3
  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
+ (Visit our Github Repository)[https://github.com/RockfieldTechnologiesAustralia/mercuto-client]
7
+
6
8
  ## Installation
7
9
  Install from PyPi: `pip install mercuto-client` or adding the same line into your `requirements.txt`.
8
10
 
@@ -0,0 +1,65 @@
1
+ Metadata-Version: 2.4
2
+ Name: mercuto-client
3
+ Version: 0.2.8
4
+ Summary: Library for interfacing with Rockfield's Mercuto API
5
+ Author-email: Daniel Whipp <daniel.whipp@rocktech.com.au>
6
+ License-Expression: AGPL-3.0-only
7
+ Project-URL: Homepage, https://mercuto.rockfieldcloud.com.au
8
+ Project-URL: Repository, https://github.com/RockfieldTechnologiesAustralia/mercuto-client
9
+ Project-URL: Documentation, https://github.com/RockfieldTechnologiesAustralia/mercuto-client/blob/main/README.md
10
+ Keywords: mercuto,rockfield,infratech
11
+ Classifier: Development Status :: 3 - Alpha
12
+ Classifier: Intended Audience :: Developers
13
+ Classifier: Topic :: Software Development :: Build Tools
14
+ Classifier: Programming Language :: Python :: 3.10
15
+ Classifier: Programming Language :: Python :: 3.11
16
+ Classifier: Programming Language :: Python :: 3.12
17
+ Requires-Python: >=3.10
18
+ Description-Content-Type: text/markdown
19
+ License-File: LICENSE
20
+ Requires-Dist: requests>=2.32
21
+ Requires-Dist: pyftpdlib>=2.0.1
22
+ Requires-Dist: python-dateutil>=2.9.0.post0
23
+ Requires-Dist: pytz>=2025.2
24
+ Requires-Dist: schedule>=1.2.2
25
+ Dynamic: license-file
26
+
27
+ # Mercuto Client Python Library
28
+
29
+ Library for interfacing with Rockfield's Mercuto public API.
30
+ This library is in an early development state and is subject to major structural changes at any time.
31
+
32
+ (Visit our Github Repository)[https://github.com/RockfieldTechnologiesAustralia/mercuto-client]
33
+
34
+ ## Installation
35
+ Install from PyPi: `pip install mercuto-client` or adding the same line into your `requirements.txt`.
36
+
37
+ ## Basic Usage
38
+
39
+ Use the `connect()` function exposed within the main package and provide your API key.
40
+
41
+ ```python
42
+ from mercuto_client import connect
43
+
44
+ client = connect(api_key="<YOUR API KEY>")
45
+ print(client.projects().get_projects())
46
+
47
+ # Logout after finished.
48
+ client.logout()
49
+
50
+ ```
51
+
52
+ You can also use the client as a context manager. It will logout automatically.
53
+
54
+ ```python
55
+ from mercuto_client import MercutoClient
56
+
57
+ with MercutoClient.as_credentials(api_key='<YOUR API KEY>') as client:
58
+ print(client.projects().get_projects())
59
+ ```
60
+
61
+ ## Current Status
62
+ This library is incomplete and may not be fully compliant with the latest Mercuto version. It is only updated periodically and provided for use without any warranty or guarantees.
63
+
64
+ - [x] API Based login (Completed)
65
+ - [ ] Username/password login
@@ -10,7 +10,7 @@ dependencies = [
10
10
  "pytz>=2025.2",
11
11
  "schedule>=1.2.2",
12
12
  ]
13
- version = "0.2.7"
13
+ version = "0.2.8"
14
14
  keywords = ["mercuto", "rockfield", "infratech"]
15
15
  classifiers = [
16
16
  "Development Status :: 3 - Alpha",
@@ -20,10 +20,14 @@ classifiers = [
20
20
  "Programming Language :: Python :: 3.11",
21
21
  "Programming Language :: Python :: 3.12",
22
22
  ]
23
- [urls]
24
- homepage = "https://mercuto.rockfieldcloud.com.au"
25
- repository = "https://github.com/RockfieldTechnologiesAustralia/mercuto-client"
26
- documentation = "https://github.com/RockfieldTechnologiesAustralia/mercuto-client/blob/main/README.md"
23
+ license = "AGPL-3.0-only"
24
+ license-files = ["LICENSE"]
25
+ readme = "README.md"
26
+
27
+ [project.urls]
28
+ Homepage = "https://mercuto.rockfieldcloud.com.au"
29
+ Repository = "https://github.com/RockfieldTechnologiesAustralia/mercuto-client"
30
+ Documentation = "https://github.com/RockfieldTechnologiesAustralia/mercuto-client/blob/main/README.md"
27
31
 
28
32
  [dependency-groups]
29
33
  tests = [
@@ -1,20 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: mercuto-client
3
- Version: 0.2.7
4
- Summary: Library for interfacing with Rockfield's Mercuto API
5
- Author-email: Daniel Whipp <daniel.whipp@rocktech.com.au>
6
- Keywords: mercuto,rockfield,infratech
7
- Classifier: Development Status :: 3 - Alpha
8
- Classifier: Intended Audience :: Developers
9
- Classifier: Topic :: Software Development :: Build Tools
10
- Classifier: Programming Language :: Python :: 3.10
11
- Classifier: Programming Language :: Python :: 3.11
12
- Classifier: Programming Language :: Python :: 3.12
13
- Requires-Python: >=3.10
14
- License-File: LICENSE
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
20
- Dynamic: license-file
@@ -1,20 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: mercuto-client
3
- Version: 0.2.7
4
- Summary: Library for interfacing with Rockfield's Mercuto API
5
- Author-email: Daniel Whipp <daniel.whipp@rocktech.com.au>
6
- Keywords: mercuto,rockfield,infratech
7
- Classifier: Development Status :: 3 - Alpha
8
- Classifier: Intended Audience :: Developers
9
- Classifier: Topic :: Software Development :: Build Tools
10
- Classifier: Programming Language :: Python :: 3.10
11
- Classifier: Programming Language :: Python :: 3.11
12
- Classifier: Programming Language :: Python :: 3.12
13
- Requires-Python: >=3.10
14
- License-File: LICENSE
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
20
- Dynamic: license-file
File without changes
File without changes