sentor-ml 1.0.0__tar.gz → 1.0.1__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.
- {sentor_ml-1.0.0 → sentor_ml-1.0.1}/PKG-INFO +27 -8
- {sentor_ml-1.0.0 → sentor_ml-1.0.1}/README.md +26 -7
- {sentor_ml-1.0.0 → sentor_ml-1.0.1}/sentor_ml.egg-info/PKG-INFO +27 -8
- {sentor_ml-1.0.0 → sentor_ml-1.0.1}/setup.py +1 -1
- {sentor_ml-1.0.0 → sentor_ml-1.0.1}/sentor/__init__.py +0 -0
- {sentor_ml-1.0.0 → sentor_ml-1.0.1}/sentor/client.py +0 -0
- {sentor_ml-1.0.0 → sentor_ml-1.0.1}/sentor/exceptions.py +0 -0
- {sentor_ml-1.0.0 → sentor_ml-1.0.1}/sentor_ml.egg-info/SOURCES.txt +0 -0
- {sentor_ml-1.0.0 → sentor_ml-1.0.1}/sentor_ml.egg-info/dependency_links.txt +0 -0
- {sentor_ml-1.0.0 → sentor_ml-1.0.1}/sentor_ml.egg-info/entry_points.txt +0 -0
- {sentor_ml-1.0.0 → sentor_ml-1.0.1}/sentor_ml.egg-info/requires.txt +0 -0
- {sentor_ml-1.0.0 → sentor_ml-1.0.1}/sentor_ml.egg-info/top_level.txt +0 -0
- {sentor_ml-1.0.0 → sentor_ml-1.0.1}/setup.cfg +0 -0
- {sentor_ml-1.0.0 → sentor_ml-1.0.1}/tests/__init__.py +0 -0
- {sentor_ml-1.0.0 → sentor_ml-1.0.1}/tests/test_client.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: sentor-ml
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.1
|
|
4
4
|
Summary: A Python SDK for interacting with the Sentor ML API for sentiment analysis
|
|
5
5
|
Home-page: https://github.com/NIKX-Tech/sentor-ml-python-sdk
|
|
6
6
|
Author: NIKX Technologies
|
|
@@ -32,12 +32,6 @@ Dynamic: summary
|
|
|
32
32
|
|
|
33
33
|
A Python SDK for interacting with the Sentor ML API for sentiment analysis. This SDK provides a simple and intuitive interface for sentiment analysis operations.
|
|
34
34
|
|
|
35
|
-
## Installation
|
|
36
|
-
|
|
37
|
-
```bash
|
|
38
|
-
pip install sentor-ml
|
|
39
|
-
```
|
|
40
|
-
|
|
41
35
|
## Features
|
|
42
36
|
|
|
43
37
|
- 🚀 Python 3.7+ support
|
|
@@ -47,6 +41,30 @@ pip install sentor-ml
|
|
|
47
41
|
- 🛡️ Comprehensive error handling
|
|
48
42
|
- 🔄 Real-time sentiment analysis
|
|
49
43
|
|
|
44
|
+
## Installation
|
|
45
|
+
|
|
46
|
+
```bash
|
|
47
|
+
pip install sentor-ml
|
|
48
|
+
```
|
|
49
|
+
|
|
50
|
+
## Get API key
|
|
51
|
+
|
|
52
|
+
### Try with guest API key
|
|
53
|
+
Get a guest API key to try the API.
|
|
54
|
+
|
|
55
|
+
```bash
|
|
56
|
+
curl -X 'POST' \
|
|
57
|
+
'https://ml.sentor.app/api/auth/guest-access' \
|
|
58
|
+
-H 'accept: application/json' \
|
|
59
|
+
-d ''
|
|
60
|
+
```
|
|
61
|
+
|
|
62
|
+
### Work like a PRO
|
|
63
|
+
|
|
64
|
+
1. Go to [Sentor ML API](https://ml.sentor.app)
|
|
65
|
+
2. Subscribe to the Starter plan
|
|
66
|
+
3. Get your API key
|
|
67
|
+
|
|
50
68
|
## Usage
|
|
51
69
|
|
|
52
70
|
### Basic Usage
|
|
@@ -111,7 +129,8 @@ print(result)
|
|
|
111
129
|
|
|
112
130
|
## API Reference
|
|
113
131
|
|
|
114
|
-
Please refer to the [Sentor ML API Documentation](https://ml.sentor.app) for more details.
|
|
132
|
+
Please refer to the [Sentor ML API Documentation](https://ml.sentor.app/docs/guide/) for more details.
|
|
133
|
+
You can also try the API in the [Sentor ML API Swagger Playground](https://ml.sentor.app/docs).
|
|
115
134
|
|
|
116
135
|
## Contributing
|
|
117
136
|
|
|
@@ -2,12 +2,6 @@
|
|
|
2
2
|
|
|
3
3
|
A Python SDK for interacting with the Sentor ML API for sentiment analysis. This SDK provides a simple and intuitive interface for sentiment analysis operations.
|
|
4
4
|
|
|
5
|
-
## Installation
|
|
6
|
-
|
|
7
|
-
```bash
|
|
8
|
-
pip install sentor-ml
|
|
9
|
-
```
|
|
10
|
-
|
|
11
5
|
## Features
|
|
12
6
|
|
|
13
7
|
- 🚀 Python 3.7+ support
|
|
@@ -17,6 +11,30 @@ pip install sentor-ml
|
|
|
17
11
|
- 🛡️ Comprehensive error handling
|
|
18
12
|
- 🔄 Real-time sentiment analysis
|
|
19
13
|
|
|
14
|
+
## Installation
|
|
15
|
+
|
|
16
|
+
```bash
|
|
17
|
+
pip install sentor-ml
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
## Get API key
|
|
21
|
+
|
|
22
|
+
### Try with guest API key
|
|
23
|
+
Get a guest API key to try the API.
|
|
24
|
+
|
|
25
|
+
```bash
|
|
26
|
+
curl -X 'POST' \
|
|
27
|
+
'https://ml.sentor.app/api/auth/guest-access' \
|
|
28
|
+
-H 'accept: application/json' \
|
|
29
|
+
-d ''
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
### Work like a PRO
|
|
33
|
+
|
|
34
|
+
1. Go to [Sentor ML API](https://ml.sentor.app)
|
|
35
|
+
2. Subscribe to the Starter plan
|
|
36
|
+
3. Get your API key
|
|
37
|
+
|
|
20
38
|
## Usage
|
|
21
39
|
|
|
22
40
|
### Basic Usage
|
|
@@ -81,7 +99,8 @@ print(result)
|
|
|
81
99
|
|
|
82
100
|
## API Reference
|
|
83
101
|
|
|
84
|
-
Please refer to the [Sentor ML API Documentation](https://ml.sentor.app) for more details.
|
|
102
|
+
Please refer to the [Sentor ML API Documentation](https://ml.sentor.app/docs/guide/) for more details.
|
|
103
|
+
You can also try the API in the [Sentor ML API Swagger Playground](https://ml.sentor.app/docs).
|
|
85
104
|
|
|
86
105
|
## Contributing
|
|
87
106
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: sentor-ml
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.1
|
|
4
4
|
Summary: A Python SDK for interacting with the Sentor ML API for sentiment analysis
|
|
5
5
|
Home-page: https://github.com/NIKX-Tech/sentor-ml-python-sdk
|
|
6
6
|
Author: NIKX Technologies
|
|
@@ -32,12 +32,6 @@ Dynamic: summary
|
|
|
32
32
|
|
|
33
33
|
A Python SDK for interacting with the Sentor ML API for sentiment analysis. This SDK provides a simple and intuitive interface for sentiment analysis operations.
|
|
34
34
|
|
|
35
|
-
## Installation
|
|
36
|
-
|
|
37
|
-
```bash
|
|
38
|
-
pip install sentor-ml
|
|
39
|
-
```
|
|
40
|
-
|
|
41
35
|
## Features
|
|
42
36
|
|
|
43
37
|
- 🚀 Python 3.7+ support
|
|
@@ -47,6 +41,30 @@ pip install sentor-ml
|
|
|
47
41
|
- 🛡️ Comprehensive error handling
|
|
48
42
|
- 🔄 Real-time sentiment analysis
|
|
49
43
|
|
|
44
|
+
## Installation
|
|
45
|
+
|
|
46
|
+
```bash
|
|
47
|
+
pip install sentor-ml
|
|
48
|
+
```
|
|
49
|
+
|
|
50
|
+
## Get API key
|
|
51
|
+
|
|
52
|
+
### Try with guest API key
|
|
53
|
+
Get a guest API key to try the API.
|
|
54
|
+
|
|
55
|
+
```bash
|
|
56
|
+
curl -X 'POST' \
|
|
57
|
+
'https://ml.sentor.app/api/auth/guest-access' \
|
|
58
|
+
-H 'accept: application/json' \
|
|
59
|
+
-d ''
|
|
60
|
+
```
|
|
61
|
+
|
|
62
|
+
### Work like a PRO
|
|
63
|
+
|
|
64
|
+
1. Go to [Sentor ML API](https://ml.sentor.app)
|
|
65
|
+
2. Subscribe to the Starter plan
|
|
66
|
+
3. Get your API key
|
|
67
|
+
|
|
50
68
|
## Usage
|
|
51
69
|
|
|
52
70
|
### Basic Usage
|
|
@@ -111,7 +129,8 @@ print(result)
|
|
|
111
129
|
|
|
112
130
|
## API Reference
|
|
113
131
|
|
|
114
|
-
Please refer to the [Sentor ML API Documentation](https://ml.sentor.app) for more details.
|
|
132
|
+
Please refer to the [Sentor ML API Documentation](https://ml.sentor.app/docs/guide/) for more details.
|
|
133
|
+
You can also try the API in the [Sentor ML API Swagger Playground](https://ml.sentor.app/docs).
|
|
115
134
|
|
|
116
135
|
## Contributing
|
|
117
136
|
|
|
@@ -5,7 +5,7 @@ with open("README.md", "r", encoding="utf-8") as fh:
|
|
|
5
5
|
|
|
6
6
|
setup(
|
|
7
7
|
name="sentor-ml",
|
|
8
|
-
version="1.0.
|
|
8
|
+
version="1.0.1",
|
|
9
9
|
author="NIKX Technologies",
|
|
10
10
|
author_email="sentor@nikx.one",
|
|
11
11
|
description="A Python SDK for interacting with the Sentor ML API for sentiment analysis",
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|