producteca 1.0.5__py3-none-any.whl → 1.0.7__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,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
+
@@ -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.5.dist-info/METADATA,sha256=nVAhXRWKZdppEQaoTotEDhDmmFXybTHAWawT6fX3G1c,772
29
- producteca-1.0.5.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
30
- producteca-1.0.5.dist-info/entry_points.txt,sha256=Fk7pn09epcdztiFc7kuYBBlB_e6R2C_c1hmPHsookHI,143
31
- producteca-1.0.5.dist-info/RECORD,,
28
+ producteca-1.0.7.dist-info/METADATA,sha256=3vYd_tm_y6JGt05-JGa5XiA1-_5ZuCcoLzl_Mqe0c9o,2674
29
+ producteca-1.0.7.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
30
+ producteca-1.0.7.dist-info/entry_points.txt,sha256=BFSDFLbB70p8YVZPiU7HDJdj2VyyLdMVa4ekLQAUAVc,125
31
+ producteca-1.0.7.dist-info/RECORD,,
@@ -1,6 +1,5 @@
1
1
  [console_scripts]
2
2
  generate_html_coverage=scripts:generate_html_coverage
3
3
  get_coverage=scripts:get_coverage
4
- main=logseek:main
5
4
  test=scripts:test
6
5
 
@@ -1,21 +0,0 @@
1
- Metadata-Version: 2.3
2
- Name: producteca
3
- Version: 1.0.5
4
- Summary:
5
- Author: Chroma Agency, Matias Rivera
6
- Author-email: mrivera@chroma.agency
7
- Requires-Python: >=3.7,<4.0
8
- Classifier: Programming Language :: Python :: 3
9
- Classifier: Programming Language :: Python :: 3.7
10
- Classifier: Programming Language :: Python :: 3.8
11
- Classifier: Programming Language :: Python :: 3.9
12
- Classifier: Programming Language :: Python :: 3.10
13
- Classifier: Programming Language :: Python :: 3.11
14
- Classifier: Programming Language :: Python :: 3.12
15
- Classifier: Programming Language :: Python :: 3.13
16
- Requires-Dist: coverage (>=7.2.0,<8.0.0)
17
- Requires-Dist: pydantic (==2.5.3)
18
- Requires-Dist: requests (>=2.31.0,<3.0.0)
19
- Description-Content-Type: text/markdown
20
-
21
- # Very small module to connect with producteca