You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[](https://www.linuxfoundation.org/about/members)
16
16
</div>
17
17
18
18
## Overview
19
19
20
-
A minimal and agnostic PHP SDK for Openapi, inspired by a clean client implementation. This SDK provides only the core HTTP primitives needed to interact with any Openapi service.
20
+
A minimal and agnostic Python SDK for Openapi, inspired by a clean client implementation. This SDK provides only the core HTTP primitives needed to interact with any Openapi service.
21
21
22
22
## Pre-requisites
23
23
24
-
Before using the Openapi PHP Client, you will need an account at [Openapi](https://console.openapi.com/) and an API key to the sandbox and/or production environment
24
+
Before using the Openapi Python Client, you will need an account at [Openapi](https://console.openapi.com/) and an API key to the sandbox and/or production environment
25
25
26
26
## Features
27
27
28
28
-**Agnostic Design**: No API-specific classes, works with any OpenAPI service
29
-
-**Minimal Dependencies**: Only requires PHP 8.0+ and cURL
29
+
-**Minimal Dependencies**: Only requires Python 3.8+ and `requests`
30
30
-**OAuth Support**: Built-in OAuth client for token management
31
31
-**HTTP Primitives**: GET, POST, PUT, DELETE, PATCH methods
32
32
-**Clean Interface**: Similar to the Rust SDK design
33
33
34
34
## What you can do
35
35
36
-
With the Openapi PHP Client, you can easily interact with a variety of services in the Openapi Marketplace. For example, you can:
36
+
With the Openapi Python Client, you can easily interact with a variety of services in the Openapi Marketplace. For example, you can:
37
37
38
38
- 📩 **Send SMS messages** with delivery reports and custom sender IDs
39
39
- 💸 **Process bills and payments** in real time via API
@@ -43,9 +43,6 @@ With the Openapi PHP Client, you can easily interact with a variety of services
43
43
44
44
For a complete list of all available services, check out the [Openapi Marketplace](https://console.openapi.com/) 🌐
45
45
46
-
47
-
48
-
49
46
# OpenApi IT Python Client
50
47
51
48
This client is used to interact with the API found at [openapi.it](https://openapi.it/)
@@ -104,25 +101,6 @@ resp = client.request(
104
101
resp = oauth_client.delete_token(id=token)
105
102
```
106
103
107
-
## Contributing
108
-
109
-
Contributions are always welcome!
110
-
111
-
See `contributing.md` for ways to get started.
112
-
113
-
Please adhere to this project's `code of conduct`.
114
-
115
-
116
-
## License
117
-
118
-
[MIT](https://choosealicense.com/licenses/mit/)
119
-
120
-
121
-
## Authors
122
-
123
-
-[@maiku1008](https://www.github.com/maiku1008)
124
-
-[@openapi-it](https://github.com/openapi-it)
125
-
126
104
127
105
128
106
@@ -136,7 +114,7 @@ See [docs/contributing.md](docs/contributing.md) for detailed instructions on ho
0 commit comments