producteca 1.0.6__py3-none-any.whl → 1.0.8__py3-none-any.whl

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.
@@ -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
+
@@ -25,7 +25,7 @@ producteca/shipments/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hS
25
25
  producteca/shipments/shipment.py,sha256=IELAYWVNT862CBvDHOTotqLMXrm6sFECic2E7RTSI-A,1625
26
26
  producteca/shipments/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
27
27
  producteca/shipments/tests/test_shipment.py,sha256=D42IM5OQOXy9Af9_p8-k_mSFnfX5fUeEWQBPEispOXw,2301
28
- producteca-1.0.6.dist-info/METADATA,sha256=izCjpLJra9Z20CgbKPZ7_0jG7WfYf2dXH9QHNBm_U3w,730
29
- producteca-1.0.6.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
30
- producteca-1.0.6.dist-info/entry_points.txt,sha256=BFSDFLbB70p8YVZPiU7HDJdj2VyyLdMVa4ekLQAUAVc,125
31
- producteca-1.0.6.dist-info/RECORD,,
28
+ producteca-1.0.8.dist-info/METADATA,sha256=1OMA4ZOp1Ak4I1tdzjn934FoEuK8tWEkiowB98KrL1M,2623
29
+ producteca-1.0.8.dist-info/WHEEL,sha256=FMvqSimYX_P7y0a7UY-_Mc83r5zkBZsCYPm7Lr0Bsq4,88
30
+ producteca-1.0.8.dist-info/entry_points.txt,sha256=BFSDFLbB70p8YVZPiU7HDJdj2VyyLdMVa4ekLQAUAVc,125
31
+ producteca-1.0.8.dist-info/RECORD,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: poetry-core 2.1.3
2
+ Generator: poetry-core 1.8.1
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
@@ -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