rapidata 0.1.0__tar.gz → 0.1.2__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.
Files changed (35) hide show
  1. {rapidata-0.1.0 → rapidata-0.1.2}/PKG-INFO +8 -5
  2. rapidata-0.1.2/README.md +4 -0
  3. {rapidata-0.1.0 → rapidata-0.1.2}/pyproject.toml +6 -2
  4. rapidata-0.1.0/README.md +0 -2
  5. {rapidata-0.1.0 → rapidata-0.1.2}/LICENSE +0 -0
  6. {rapidata-0.1.0 → rapidata-0.1.2}/rapidata/__init__.py +0 -0
  7. {rapidata-0.1.0 → rapidata-0.1.2}/rapidata/rapidata_client/__init__.py +0 -0
  8. {rapidata-0.1.0 → rapidata-0.1.2}/rapidata/rapidata_client/order/__init__.py +0 -0
  9. {rapidata-0.1.0 → rapidata-0.1.2}/rapidata/rapidata_client/order/dataset/__init__.py +0 -0
  10. {rapidata-0.1.0 → rapidata-0.1.2}/rapidata/rapidata_client/order/dataset/rapidata_dataset.py +0 -0
  11. {rapidata-0.1.0 → rapidata-0.1.2}/rapidata/rapidata_client/order/rapidata_order.py +0 -0
  12. {rapidata-0.1.0 → rapidata-0.1.2}/rapidata/rapidata_client/order/rapidata_order_builder.py +0 -0
  13. {rapidata-0.1.0 → rapidata-0.1.2}/rapidata/rapidata_client/rapidata_client.py +0 -0
  14. {rapidata-0.1.0 → rapidata-0.1.2}/rapidata/rapidata_client/workflow/__init__.py +0 -0
  15. {rapidata-0.1.0 → rapidata-0.1.2}/rapidata/rapidata_client/workflow/base_workflow.py +0 -0
  16. {rapidata-0.1.0 → rapidata-0.1.2}/rapidata/rapidata_client/workflow/classify_workflow.py +0 -0
  17. {rapidata-0.1.0 → rapidata-0.1.2}/rapidata/rapidata_client/workflow/compare_workflow.py +0 -0
  18. {rapidata-0.1.0 → rapidata-0.1.2}/rapidata/rapidata_client/workflow/country_codes/__init__.py +0 -0
  19. {rapidata-0.1.0 → rapidata-0.1.2}/rapidata/rapidata_client/workflow/country_codes/country_codes.py +0 -0
  20. {rapidata-0.1.0 → rapidata-0.1.2}/rapidata/rapidata_client/workflow/feature_flags/__init__.py +0 -0
  21. {rapidata-0.1.0 → rapidata-0.1.2}/rapidata/rapidata_client/workflow/feature_flags/feature_flags.py +0 -0
  22. {rapidata-0.1.0 → rapidata-0.1.2}/rapidata/rapidata_client/workflow/free_text_workflow.py +0 -0
  23. {rapidata-0.1.0 → rapidata-0.1.2}/rapidata/rapidata_client/workflow/referee/__init__.py +0 -0
  24. {rapidata-0.1.0 → rapidata-0.1.2}/rapidata/rapidata_client/workflow/referee/base_referee.py +0 -0
  25. {rapidata-0.1.0 → rapidata-0.1.2}/rapidata/rapidata_client/workflow/referee/classify_early_stopping_referee.py +0 -0
  26. {rapidata-0.1.0 → rapidata-0.1.2}/rapidata/rapidata_client/workflow/referee/naive_referee.py +0 -0
  27. {rapidata-0.1.0 → rapidata-0.1.2}/rapidata/service/__init__.py +0 -0
  28. {rapidata-0.1.0 → rapidata-0.1.2}/rapidata/service/local_file_service.py +0 -0
  29. {rapidata-0.1.0 → rapidata-0.1.2}/rapidata/service/rapidata_api_services/__init__.py +0 -0
  30. {rapidata-0.1.0 → rapidata-0.1.2}/rapidata/service/rapidata_api_services/base_service.py +0 -0
  31. {rapidata-0.1.0 → rapidata-0.1.2}/rapidata/service/rapidata_api_services/dataset_service.py +0 -0
  32. {rapidata-0.1.0 → rapidata-0.1.2}/rapidata/service/rapidata_api_services/order_service.py +0 -0
  33. {rapidata-0.1.0 → rapidata-0.1.2}/rapidata/service/rapidata_api_services/rapidata_service.py +0 -0
  34. {rapidata-0.1.0 → rapidata-0.1.2}/rapidata/utils/__init__.py +0 -0
  35. {rapidata-0.1.0 → rapidata-0.1.2}/rapidata/utils/image_utils.py +0 -0
@@ -1,18 +1,21 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: rapidata
3
- Version: 0.1.0
3
+ Version: 0.1.2
4
4
  Summary: Rapidata package containing the Rapidata Python Client to interact with the Rapidata Web API in an easy way.
5
5
  License: Apache-2.0
6
- Author: Marian Kannwischer
7
- Author-email: marian.kannwischer@t-online.de
6
+ Author: Rapidata AG
7
+ Author-email: info@rapidata.ai
8
8
  Requires-Python: >=3.12,<4.0
9
9
  Classifier: License :: OSI Approved :: Apache Software License
10
10
  Classifier: Programming Language :: Python :: 3
11
11
  Classifier: Programming Language :: Python :: 3.12
12
12
  Requires-Dist: PyJWT (>=2.9.0,<3.0.0)
13
+ Requires-Dist: pillow (>=10.4.0,<11.0.0)
13
14
  Requires-Dist: requests (>=2.32.3,<3.0.0)
14
15
  Description-Content-Type: text/markdown
15
16
 
16
- # rapidata-python
17
- Python client to interface with the Rapidata API
17
+ # Rapidata Python Client
18
+ Python client to interface with the Rapidata API.
19
+
20
+ Docs: https://rapidataai.github.io/rapidata-python
18
21
 
@@ -0,0 +1,4 @@
1
+ # Rapidata Python Client
2
+ Python client to interface with the Rapidata API.
3
+
4
+ Docs: https://rapidataai.github.io/rapidata-python
@@ -1,8 +1,8 @@
1
1
  [tool.poetry]
2
2
  name = "rapidata"
3
- version = "0.1.0"
3
+ version = "0.1.2"
4
4
  description = "Rapidata package containing the Rapidata Python Client to interact with the Rapidata Web API in an easy way."
5
- authors = ["Marian Kannwischer <marian.kannwischer@t-online.de>"]
5
+ authors = ["Rapidata AG <info@rapidata.ai>"]
6
6
  license = "Apache-2.0"
7
7
  readme = "README.md"
8
8
 
@@ -10,8 +10,12 @@ readme = "README.md"
10
10
  python = "^3.12"
11
11
  requests = "^2.32.3"
12
12
  PyJWT = "^2.9.0"
13
+ pillow = "^10.4.0"
13
14
 
14
15
 
16
+ [tool.poetry.group.dev.dependencies]
17
+ python-dotenv = "^1.0.1"
18
+
15
19
  [build-system]
16
20
  requires = ["poetry-core"]
17
21
  build-backend = "poetry.core.masonry.api"
rapidata-0.1.0/README.md DELETED
@@ -1,2 +0,0 @@
1
- # rapidata-python
2
- Python client to interface with the Rapidata API
File without changes
File without changes