mapepire-python 0.1.3__tar.gz → 0.1.4__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.
- {mapepire_python-0.1.3 → mapepire_python-0.1.4}/PKG-INFO +11 -10
- {mapepire_python-0.1.3 → mapepire_python-0.1.4}/README.md +10 -9
- {mapepire_python-0.1.3 → mapepire_python-0.1.4}/mapepire_python/version.py +1 -1
- {mapepire_python-0.1.3 → mapepire_python-0.1.4}/mapepire_python.egg-info/PKG-INFO +11 -10
- {mapepire_python-0.1.3 → mapepire_python-0.1.4}/LICENSE +0 -0
- {mapepire_python-0.1.3 → mapepire_python-0.1.4}/mapepire_python/client/query.py +0 -0
- {mapepire_python-0.1.3 → mapepire_python-0.1.4}/mapepire_python/client/sql_job.py +0 -0
- {mapepire_python-0.1.3 → mapepire_python-0.1.4}/mapepire_python/pool.py +0 -0
- {mapepire_python-0.1.3 → mapepire_python-0.1.4}/mapepire_python/py.typed +0 -0
- {mapepire_python-0.1.3 → mapepire_python-0.1.4}/mapepire_python/ssl.py +0 -0
- {mapepire_python-0.1.3 → mapepire_python-0.1.4}/mapepire_python/types.py +0 -0
- {mapepire_python-0.1.3 → mapepire_python-0.1.4}/mapepire_python.egg-info/SOURCES.txt +0 -0
- {mapepire_python-0.1.3 → mapepire_python-0.1.4}/mapepire_python.egg-info/dependency_links.txt +0 -0
- {mapepire_python-0.1.3 → mapepire_python-0.1.4}/mapepire_python.egg-info/requires.txt +0 -0
- {mapepire_python-0.1.3 → mapepire_python-0.1.4}/mapepire_python.egg-info/top_level.txt +0 -0
- {mapepire_python-0.1.3 → mapepire_python-0.1.4}/pyproject.toml +0 -0
- {mapepire_python-0.1.3 → mapepire_python-0.1.4}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: mapepire-python
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.4
|
|
4
4
|
Author-email: Allen Institute for Artificial Intelligence <contact@allenai.org>
|
|
5
5
|
License: Apache License
|
|
6
6
|
Version 2.0, January 2004
|
|
@@ -243,8 +243,8 @@ Requires-Dist: pre-commit; extra == "dev"
|
|
|
243
243
|
<a href="https://github.com/Mapepire-IBMi/mapepire-python/actions">
|
|
244
244
|
<img alt="CI" src="https://img.shields.io/github/actions/workflow/status/Mapepire-IBMi/mapepire-python/main.yml">
|
|
245
245
|
</a>
|
|
246
|
-
<a href="https://pypi.org/project/python
|
|
247
|
-
<img alt="PyPI" src="https://img.shields.io/pypi/v/python
|
|
246
|
+
<a href="https://pypi.org/project/mapepire-python/">
|
|
247
|
+
<img alt="PyPI" src="https://img.shields.io/pypi/v/mapepire-python">
|
|
248
248
|
</a>
|
|
249
249
|
<a href="https://github.com/Mapepire-IBMi/mapepire-python/blob/main/LICENSE">
|
|
250
250
|
<img alt="License" src="https://img.shields.io/github/license/allenai/tango.svg?color=blue&cachedrop">
|
|
@@ -273,14 +273,14 @@ Requires-Dist: pre-commit; extra == "dev"
|
|
|
273
273
|
|
|
274
274
|
|
|
275
275
|
|
|
276
|
+
## Overview
|
|
276
277
|
|
|
277
|
-
|
|
278
|
+
<img src="images/mapepire-logo.png" alt="logo" width="200"/>
|
|
278
279
|
|
|
279
|
-
|
|
280
|
+
---
|
|
280
281
|
|
|
281
|
-

|
|
282
282
|
|
|
283
|
-
`mapepire-python` is a Python client implementation that
|
|
283
|
+
`mapepire-python` is a Python client implementation for [Mapepire](https://github.com/Mapepire-IBMi) that provides a simple interface for connecting to an IBM i server and running SQL queries. The client is designed to work with the [Mapepire Server Component](https://github.com/Mapepire-IBMi/mapepire-server)
|
|
284
284
|
|
|
285
285
|
## Setup
|
|
286
286
|
|
|
@@ -288,13 +288,14 @@ Requires-Dist: pre-commit; extra == "dev"
|
|
|
288
288
|
|
|
289
289
|
### Install with `pip`
|
|
290
290
|
|
|
291
|
-
`mapepire-python` is available on [PyPi](https://pypi.org/project/python
|
|
291
|
+
`mapepire-python` is available on [PyPi](https://pypi.org/project/mapepire-python/). Just Run
|
|
292
292
|
|
|
293
293
|
```bash
|
|
294
|
-
pip install python
|
|
294
|
+
pip install mapepire-python
|
|
295
295
|
```
|
|
296
296
|
|
|
297
|
-
### Server Component Setup
|
|
297
|
+
### Server Component Setup
|
|
298
|
+
To use mapire-python, you will need to have the Mapepire Server Component running on your IBM i server. Follow these instructions to set up the server component: [Mapepire Server Installation](https://mapepire-ibmi.github.io/guides/sysadmin/)
|
|
298
299
|
|
|
299
300
|
## Example usage
|
|
300
301
|
|
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
<a href="https://github.com/Mapepire-IBMi/mapepire-python/actions">
|
|
4
4
|
<img alt="CI" src="https://img.shields.io/github/actions/workflow/status/Mapepire-IBMi/mapepire-python/main.yml">
|
|
5
5
|
</a>
|
|
6
|
-
<a href="https://pypi.org/project/python
|
|
7
|
-
<img alt="PyPI" src="https://img.shields.io/pypi/v/python
|
|
6
|
+
<a href="https://pypi.org/project/mapepire-python/">
|
|
7
|
+
<img alt="PyPI" src="https://img.shields.io/pypi/v/mapepire-python">
|
|
8
8
|
</a>
|
|
9
9
|
<a href="https://github.com/Mapepire-IBMi/mapepire-python/blob/main/LICENSE">
|
|
10
10
|
<img alt="License" src="https://img.shields.io/github/license/allenai/tango.svg?color=blue&cachedrop">
|
|
@@ -33,14 +33,14 @@
|
|
|
33
33
|
|
|
34
34
|
|
|
35
35
|
|
|
36
|
+
## Overview
|
|
36
37
|
|
|
37
|
-
|
|
38
|
+
<img src="images/mapepire-logo.png" alt="logo" width="200"/>
|
|
38
39
|
|
|
39
|
-
|
|
40
|
+
---
|
|
40
41
|
|
|
41
|
-

|
|
42
42
|
|
|
43
|
-
`mapepire-python` is a Python client implementation that
|
|
43
|
+
`mapepire-python` is a Python client implementation for [Mapepire](https://github.com/Mapepire-IBMi) that provides a simple interface for connecting to an IBM i server and running SQL queries. The client is designed to work with the [Mapepire Server Component](https://github.com/Mapepire-IBMi/mapepire-server)
|
|
44
44
|
|
|
45
45
|
## Setup
|
|
46
46
|
|
|
@@ -48,13 +48,14 @@
|
|
|
48
48
|
|
|
49
49
|
### Install with `pip`
|
|
50
50
|
|
|
51
|
-
`mapepire-python` is available on [PyPi](https://pypi.org/project/python
|
|
51
|
+
`mapepire-python` is available on [PyPi](https://pypi.org/project/mapepire-python/). Just Run
|
|
52
52
|
|
|
53
53
|
```bash
|
|
54
|
-
pip install python
|
|
54
|
+
pip install mapepire-python
|
|
55
55
|
```
|
|
56
56
|
|
|
57
|
-
### Server Component Setup
|
|
57
|
+
### Server Component Setup
|
|
58
|
+
To use mapire-python, you will need to have the Mapepire Server Component running on your IBM i server. Follow these instructions to set up the server component: [Mapepire Server Installation](https://mapepire-ibmi.github.io/guides/sysadmin/)
|
|
58
59
|
|
|
59
60
|
## Example usage
|
|
60
61
|
|
|
@@ -2,7 +2,7 @@ _MAJOR = "0"
|
|
|
2
2
|
_MINOR = "1"
|
|
3
3
|
# On main and in a nightly release the patch should be one ahead of the last
|
|
4
4
|
# released build.
|
|
5
|
-
_PATCH = "
|
|
5
|
+
_PATCH = "4"
|
|
6
6
|
# This is mainly for nightly builds which have the suffix ".dev$DATE". See
|
|
7
7
|
# https://semver.org/#is-v123-a-semantic-version for the semantics.
|
|
8
8
|
_SUFFIX = ""
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: mapepire-python
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.4
|
|
4
4
|
Author-email: Allen Institute for Artificial Intelligence <contact@allenai.org>
|
|
5
5
|
License: Apache License
|
|
6
6
|
Version 2.0, January 2004
|
|
@@ -243,8 +243,8 @@ Requires-Dist: pre-commit; extra == "dev"
|
|
|
243
243
|
<a href="https://github.com/Mapepire-IBMi/mapepire-python/actions">
|
|
244
244
|
<img alt="CI" src="https://img.shields.io/github/actions/workflow/status/Mapepire-IBMi/mapepire-python/main.yml">
|
|
245
245
|
</a>
|
|
246
|
-
<a href="https://pypi.org/project/python
|
|
247
|
-
<img alt="PyPI" src="https://img.shields.io/pypi/v/python
|
|
246
|
+
<a href="https://pypi.org/project/mapepire-python/">
|
|
247
|
+
<img alt="PyPI" src="https://img.shields.io/pypi/v/mapepire-python">
|
|
248
248
|
</a>
|
|
249
249
|
<a href="https://github.com/Mapepire-IBMi/mapepire-python/blob/main/LICENSE">
|
|
250
250
|
<img alt="License" src="https://img.shields.io/github/license/allenai/tango.svg?color=blue&cachedrop">
|
|
@@ -273,14 +273,14 @@ Requires-Dist: pre-commit; extra == "dev"
|
|
|
273
273
|
|
|
274
274
|
|
|
275
275
|
|
|
276
|
+
## Overview
|
|
276
277
|
|
|
277
|
-
|
|
278
|
+
<img src="images/mapepire-logo.png" alt="logo" width="200"/>
|
|
278
279
|
|
|
279
|
-
|
|
280
|
+
---
|
|
280
281
|
|
|
281
|
-

|
|
282
282
|
|
|
283
|
-
`mapepire-python` is a Python client implementation that
|
|
283
|
+
`mapepire-python` is a Python client implementation for [Mapepire](https://github.com/Mapepire-IBMi) that provides a simple interface for connecting to an IBM i server and running SQL queries. The client is designed to work with the [Mapepire Server Component](https://github.com/Mapepire-IBMi/mapepire-server)
|
|
284
284
|
|
|
285
285
|
## Setup
|
|
286
286
|
|
|
@@ -288,13 +288,14 @@ Requires-Dist: pre-commit; extra == "dev"
|
|
|
288
288
|
|
|
289
289
|
### Install with `pip`
|
|
290
290
|
|
|
291
|
-
`mapepire-python` is available on [PyPi](https://pypi.org/project/python
|
|
291
|
+
`mapepire-python` is available on [PyPi](https://pypi.org/project/mapepire-python/). Just Run
|
|
292
292
|
|
|
293
293
|
```bash
|
|
294
|
-
pip install python
|
|
294
|
+
pip install mapepire-python
|
|
295
295
|
```
|
|
296
296
|
|
|
297
|
-
### Server Component Setup
|
|
297
|
+
### Server Component Setup
|
|
298
|
+
To use mapire-python, you will need to have the Mapepire Server Component running on your IBM i server. Follow these instructions to set up the server component: [Mapepire Server Installation](https://mapepire-ibmi.github.io/guides/sysadmin/)
|
|
298
299
|
|
|
299
300
|
## Example usage
|
|
300
301
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{mapepire_python-0.1.3 → mapepire_python-0.1.4}/mapepire_python.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|