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