producteca 1.0.6__tar.gz → 1.0.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.
Files changed (32) hide show
  1. producteca-1.0.8/PKG-INFO +79 -0
  2. producteca-1.0.8/README.md +60 -0
  3. {producteca-1.0.6 → producteca-1.0.8}/pyproject.toml +2 -2
  4. producteca-1.0.6/PKG-INFO +0 -20
  5. producteca-1.0.6/README.md +0 -1
  6. {producteca-1.0.6 → producteca-1.0.8}/producteca/__init__.py +0 -0
  7. {producteca-1.0.6 → producteca-1.0.8}/producteca/abstract/__init__.py +0 -0
  8. {producteca-1.0.6 → producteca-1.0.8}/producteca/abstract/abstract_dataclass.py +0 -0
  9. {producteca-1.0.6 → producteca-1.0.8}/producteca/client.py +0 -0
  10. {producteca-1.0.6 → producteca-1.0.8}/producteca/config/__init__.py +0 -0
  11. {producteca-1.0.6 → producteca-1.0.8}/producteca/config/config.py +0 -0
  12. {producteca-1.0.6 → producteca-1.0.8}/producteca/payments/__init__.py +0 -0
  13. {producteca-1.0.6 → producteca-1.0.8}/producteca/payments/payments.py +0 -0
  14. {producteca-1.0.6 → producteca-1.0.8}/producteca/payments/tests/__init__.py +0 -0
  15. {producteca-1.0.6 → producteca-1.0.8}/producteca/payments/tests/test_payments.py +0 -0
  16. {producteca-1.0.6 → producteca-1.0.8}/producteca/products/__init__.py +0 -0
  17. {producteca-1.0.6 → producteca-1.0.8}/producteca/products/products.py +0 -0
  18. {producteca-1.0.6 → producteca-1.0.8}/producteca/products/tests/__init__.py +0 -0
  19. {producteca-1.0.6 → producteca-1.0.8}/producteca/products/tests/test_products.py +0 -0
  20. {producteca-1.0.6 → producteca-1.0.8}/producteca/sales_orders/__init__.py +0 -0
  21. {producteca-1.0.6 → producteca-1.0.8}/producteca/sales_orders/sales_orders.py +0 -0
  22. {producteca-1.0.6 → producteca-1.0.8}/producteca/sales_orders/tests/__init__.py +0 -0
  23. {producteca-1.0.6 → producteca-1.0.8}/producteca/sales_orders/tests/test_sales_orders.py +0 -0
  24. {producteca-1.0.6 → producteca-1.0.8}/producteca/search/__init__.py +0 -0
  25. {producteca-1.0.6 → producteca-1.0.8}/producteca/search/search.py +0 -0
  26. {producteca-1.0.6 → producteca-1.0.8}/producteca/search/search_sale_orders.py +0 -0
  27. {producteca-1.0.6 → producteca-1.0.8}/producteca/search/tests/__init__.py +0 -0
  28. {producteca-1.0.6 → producteca-1.0.8}/producteca/search/tests/test_search.py +0 -0
  29. {producteca-1.0.6 → producteca-1.0.8}/producteca/shipments/__init__.py +0 -0
  30. {producteca-1.0.6 → producteca-1.0.8}/producteca/shipments/shipment.py +0 -0
  31. {producteca-1.0.6 → producteca-1.0.8}/producteca/shipments/tests/__init__.py +0 -0
  32. {producteca-1.0.6 → producteca-1.0.8}/producteca/shipments/tests/test_shipment.py +0 -0
@@ -0,0 +1,79 @@
1
+ Metadata-Version: 2.1
2
+ Name: producteca
3
+ Version: 1.0.8
4
+ Summary:
5
+ Author: Chroma Agency, Matias Rivera
6
+ Author-email: mrivera@chroma.agency
7
+ Requires-Python: >=3.8,<4.0
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: Programming Language :: Python :: 3.8
10
+ Classifier: Programming Language :: Python :: 3.9
11
+ Classifier: Programming Language :: Python :: 3.10
12
+ Classifier: Programming Language :: Python :: 3.11
13
+ Classifier: Programming Language :: Python :: 3.12
14
+ Requires-Dist: coverage (>=7.2.0,<8.0.0)
15
+ Requires-Dist: pydantic (>=2.10.0,<3.0.0)
16
+ Requires-Dist: requests (>=2.32.4,<3.0.0)
17
+ Description-Content-Type: text/markdown
18
+
19
+ [![Maintainability](https://qlty.sh/badges/950972cf-31e6-47cb-ab37-0ad0565c3a59/maintainability.svg)](https://qlty.sh/gh/ChromaAgency/projects/producteca_python)
20
+ [![Code Coverage](https://qlty.sh/badges/950972cf-31e6-47cb-ab37-0ad0565c3a59/test_coverage.svg)](https://qlty.sh/gh/ChromaAgency/projects/producteca_python)
21
+ [![Test](https://github.com/ChromaAgency/producteca_python/actions/workflows/ci-cd.yml/badge.svg?branch=main)](https://github.com/ChromaAgency/producteca_python/actions/workflows/ci-cd.yml)
22
+
23
+ # Producteca
24
+
25
+ This is a small module, to make requests to Producteca API.
26
+
27
+ ## Install for development
28
+
29
+ First of all, you need to install [Poetry, follow the instructions here](https://python-poetry.org/docs/#installation).
30
+
31
+ Once installed, run `poetry install` to install the dependencies.
32
+
33
+ ## Usage
34
+
35
+ To use the Producteca client, first instantiate `ProductecaClient` with your credentials or add it directly to your env with PRODUCTECA_TOKEN and PRODUCTECA_API_KEY:
36
+
37
+ ```python
38
+ from producteca.client import ProductecaClient
39
+
40
+ client = ProductecaClient(token='your_token', api_key='your_api_key')
41
+ ```
42
+
43
+ then with the client you should use every other module, like SalesOrder, Products, Payments, Shipments and Search
44
+
45
+ ## Contributing
46
+
47
+ We welcome contributions to improve this project! Here's how you can help:
48
+
49
+ ### Development Setup
50
+
51
+ 1. Fork the repository
52
+ 2. Clone your fork locally
53
+ 3. Create a new branch for your feature/fix
54
+ 4. Make your changes
55
+ 5. Run tests to ensure everything works
56
+ 6. Submit a pull request
57
+
58
+ ### Code Style
59
+
60
+ - Follow PEP 8 guidelines
61
+ - Write meaningful commit messages
62
+ - Add tests for new features
63
+ - Update documentation as needed
64
+
65
+ ### Reporting Issues
66
+
67
+ If you find a bug or have a feature request:
68
+
69
+ 1. Check existing issues first
70
+ 2. Create a new issue with:
71
+ - Clear description
72
+ - Steps to reproduce (for bugs)
73
+ - Expected vs actual behavior
74
+ - Version information
75
+
76
+ ### Questions?
77
+
78
+ Feel free to open an issue for any questions about contributing.
79
+
@@ -0,0 +1,60 @@
1
+ [![Maintainability](https://qlty.sh/badges/950972cf-31e6-47cb-ab37-0ad0565c3a59/maintainability.svg)](https://qlty.sh/gh/ChromaAgency/projects/producteca_python)
2
+ [![Code Coverage](https://qlty.sh/badges/950972cf-31e6-47cb-ab37-0ad0565c3a59/test_coverage.svg)](https://qlty.sh/gh/ChromaAgency/projects/producteca_python)
3
+ [![Test](https://github.com/ChromaAgency/producteca_python/actions/workflows/ci-cd.yml/badge.svg?branch=main)](https://github.com/ChromaAgency/producteca_python/actions/workflows/ci-cd.yml)
4
+
5
+ # Producteca
6
+
7
+ This is a small module, to make requests to Producteca API.
8
+
9
+ ## Install for development
10
+
11
+ First of all, you need to install [Poetry, follow the instructions here](https://python-poetry.org/docs/#installation).
12
+
13
+ Once installed, run `poetry install` to install the dependencies.
14
+
15
+ ## Usage
16
+
17
+ To use the Producteca client, first instantiate `ProductecaClient` with your credentials or add it directly to your env with PRODUCTECA_TOKEN and PRODUCTECA_API_KEY:
18
+
19
+ ```python
20
+ from producteca.client import ProductecaClient
21
+
22
+ client = ProductecaClient(token='your_token', api_key='your_api_key')
23
+ ```
24
+
25
+ then with the client you should use every other module, like SalesOrder, Products, Payments, Shipments and Search
26
+
27
+ ## Contributing
28
+
29
+ We welcome contributions to improve this project! Here's how you can help:
30
+
31
+ ### Development Setup
32
+
33
+ 1. Fork the repository
34
+ 2. Clone your fork locally
35
+ 3. Create a new branch for your feature/fix
36
+ 4. Make your changes
37
+ 5. Run tests to ensure everything works
38
+ 6. Submit a pull request
39
+
40
+ ### Code Style
41
+
42
+ - Follow PEP 8 guidelines
43
+ - Write meaningful commit messages
44
+ - Add tests for new features
45
+ - Update documentation as needed
46
+
47
+ ### Reporting Issues
48
+
49
+ If you find a bug or have a feature request:
50
+
51
+ 1. Check existing issues first
52
+ 2. Create a new issue with:
53
+ - Clear description
54
+ - Steps to reproduce (for bugs)
55
+ - Expected vs actual behavior
56
+ - Version information
57
+
58
+ ### Questions?
59
+
60
+ Feel free to open an issue for any questions about contributing.
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "producteca"
3
- version = "1.0.6"
3
+ version = "1.0.8"
4
4
  description = ""
5
5
  authors = ["Chroma Agency, Matias Rivera <mrivera@chroma.agency>"]
6
6
  readme = "README.md"
@@ -12,7 +12,7 @@ test = 'scripts:test'
12
12
 
13
13
  [tool.poetry.dependencies]
14
14
  python = "^3.8"
15
- requests = "^2.31.0"
15
+ requests = "^2.32.4"
16
16
  coverage = "^7.2.0"
17
17
  pydantic = "^2.10.0"
18
18
 
producteca-1.0.6/PKG-INFO DELETED
@@ -1,20 +0,0 @@
1
- Metadata-Version: 2.3
2
- Name: producteca
3
- Version: 1.0.6
4
- Summary:
5
- Author: Chroma Agency, Matias Rivera
6
- Author-email: mrivera@chroma.agency
7
- Requires-Python: >=3.8,<4.0
8
- Classifier: Programming Language :: Python :: 3
9
- Classifier: Programming Language :: Python :: 3.8
10
- Classifier: Programming Language :: Python :: 3.9
11
- Classifier: Programming Language :: Python :: 3.10
12
- Classifier: Programming Language :: Python :: 3.11
13
- Classifier: Programming Language :: Python :: 3.12
14
- Classifier: Programming Language :: Python :: 3.13
15
- Requires-Dist: coverage (>=7.2.0,<8.0.0)
16
- Requires-Dist: pydantic (>=2.10.0,<3.0.0)
17
- Requires-Dist: requests (>=2.31.0,<3.0.0)
18
- Description-Content-Type: text/markdown
19
-
20
- # Very small module to connect with producteca
@@ -1 +0,0 @@
1
- # Very small module to connect with producteca