evercatch 0.0.1__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.
evercatch/__init__.py
ADDED
|
File without changes
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Evercatch
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: evercatch
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Official Python SDK for Evercatch webhook infrastructure platform.
|
|
5
|
+
Home-page: https://git.psmattas.com/evercatch/evercatch-python
|
|
6
|
+
License: MIT
|
|
7
|
+
Keywords: evercatch,sdk,api,webhooks
|
|
8
|
+
Author: Evercatch
|
|
9
|
+
Author-email: support@evercatch.dev
|
|
10
|
+
Requires-Python: >=3.12,<4.0
|
|
11
|
+
Classifier: Development Status :: 1 - Planning
|
|
12
|
+
Classifier: Intended Audience :: Developers
|
|
13
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
14
|
+
Classifier: Programming Language :: Python :: 3
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
16
|
+
Project-URL: Repository, https://git.psmattas.com/evercatch/evercatch-python
|
|
17
|
+
Description-Content-Type: text/markdown
|
|
18
|
+
|
|
19
|
+
# 📦 Evercatch Python
|
|
20
|
+
|
|
21
|
+
> Official Python SDK for Evercatch webhook infrastructure platform.
|
|
22
|
+
|
|
23
|
+
---
|
|
24
|
+
|
|
25
|
+
## 🧭 Overview
|
|
26
|
+
|
|
27
|
+
This repository contains the official Python SDK for the Evercatch platform. Its purpose is to provide a simple and convenient interface for developers to interact with the Evercatch API, manage webhooks, and handle events within their Python applications.
|
|
28
|
+
|
|
29
|
+
**⚠️ This SDK is currently under active development and is not yet ready for production use. The package published on PyPI is a placeholder to reserve the name.**
|
|
30
|
+
|
|
31
|
+
---
|
|
32
|
+
|
|
33
|
+
## 🛠️ Tech Stack
|
|
34
|
+
|
|
35
|
+
The final technology stack is being determined. The planned stack is as follows:
|
|
36
|
+
|
|
37
|
+
| Layer | Technology |
|
|
38
|
+
| :--- | :--- |
|
|
39
|
+
| Language | Python |
|
|
40
|
+
| Framework | None (Standard Library + Minimal Dependencies) |
|
|
41
|
+
| Key Dependencies | `httpx` or `requests` (for HTTP), `Pydantic` (for data models) |
|
|
42
|
+
|
|
43
|
+
---
|
|
44
|
+
|
|
45
|
+
## 🚀 Getting Started
|
|
46
|
+
|
|
47
|
+
### Prerequisites
|
|
48
|
+
|
|
49
|
+
- Python 3.12+
|
|
50
|
+
|
|
51
|
+
### Installation (Future)
|
|
52
|
+
|
|
53
|
+
Once released, the package will be available on PyPI:
|
|
54
|
+
```bash
|
|
55
|
+
# This will not work until the first official release
|
|
56
|
+
pip install evercatch
|
|
57
|
+
```
|
|
58
|
+
|
|
59
|
+
### Local Development
|
|
60
|
+
|
|
61
|
+
The repository can be cloned for contribution or testing once development is further along.
|
|
62
|
+
|
|
63
|
+
```bash
|
|
64
|
+
# Clone the repo
|
|
65
|
+
git clone https://git.psmattas.com/Evercatch/evercatch-python.git
|
|
66
|
+
|
|
67
|
+
cd evercatch-python
|
|
68
|
+
|
|
69
|
+
# Note: The project is not yet functional.
|
|
70
|
+
```
|
|
71
|
+
|
|
72
|
+
---
|
|
73
|
+
|
|
74
|
+
## 🌿 Branching & Commits
|
|
75
|
+
|
|
76
|
+
All work follows the Evercatch contribution guide defined in the org README.
|
|
77
|
+
|
|
78
|
+
**Branch format:** `EC-ID-short-description`
|
|
79
|
+
**Commit format:** `EC-00: type(scope): message`
|
|
80
|
+
|
|
81
|
+
See [Evercatch Org README](https://git.psmattas.com/Evercatch) for full conventions.
|
|
82
|
+
|
|
83
|
+
---
|
|
84
|
+
|
|
85
|
+
## ⚙️ CI/CD
|
|
86
|
+
|
|
87
|
+
Automated via Jenkins. Merges to `main` trigger staging deployments.
|
|
88
|
+
|
|
89
|
+
| Pipeline | Status |
|
|
90
|
+
| :--- | :---: |
|
|
91
|
+
| Build |  |
|
|
92
|
+
| Lint |  |
|
|
93
|
+
| Test |  |
|
|
94
|
+
|
|
95
|
+
---
|
|
96
|
+
|
|
97
|
+
## 📄 License
|
|
98
|
+
|
|
99
|
+
**Copyright © 2026 Evercatch.**
|
|
100
|
+
Proprietary and confidential. Unauthorised distribution is strictly prohibited.
|
|
101
|
+
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
evercatch/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
+
evercatch-0.0.1.dist-info/LICENSE,sha256=1Clq9svCsJ08zzZY1NWPWZ6e2CfCY4kSZjUurvg8x8M,1066
|
|
3
|
+
evercatch-0.0.1.dist-info/METADATA,sha256=QO8pDyoaE5WGlwvrWnIUqmN-AK1qmjDSPLfmkrRsDVE,2863
|
|
4
|
+
evercatch-0.0.1.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
|
5
|
+
evercatch-0.0.1.dist-info/RECORD,,
|