graphiant-sdk 25.5.0__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.
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 Graphiant-Inc
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.4
2
+ Name: graphiant-sdk
3
+ Version: 25.5.0
4
+ Summary: Python SDK for Graphiant NaaS
5
+ Home-page: https://www.graphiant.com
6
+ Author: Graphiant Inc
7
+ Author-email: support@graphiant.com
8
+ License: MIT
9
+ Keywords: SDK,Graphiant,NaaS
10
+ Classifier: Programming Language :: Python :: 3
11
+ Classifier: License :: OSI Approved :: MIT License
12
+ Classifier: Operating System :: OS Independent
13
+ Description-Content-Type: text/markdown
14
+ License-File: LICENSE
15
+ Requires-Dist: urllib3>=1.15
16
+ Requires-Dist: six>=1.10
17
+ Requires-Dist: certifi
18
+ Requires-Dist: python-dateutil
19
+ Dynamic: author
20
+ Dynamic: author-email
21
+ Dynamic: classifier
22
+ Dynamic: description
23
+ Dynamic: description-content-type
24
+ Dynamic: home-page
25
+ Dynamic: keywords
26
+ Dynamic: license
27
+ Dynamic: license-file
28
+ Dynamic: requires-dist
29
+ Dynamic: summary
30
+
31
+ # Graphiant-SDK-Python
32
+
33
+ Python SDK for [Graphiant NaaS](https://www.graphiant.com).
34
+
35
+ Refer [Graphiant Documentation](https://docs.graphiant.com/) to get started with our services.
36
+
37
+ ## Install
38
+
39
+ ```sh
40
+ pip install graphiant-sdk
41
+ ```
42
+
43
+ ## Build
44
+
45
+ This guide explains how to build and install Graphiant-SDK from source code.
46
+
47
+ ### Prerequisites
48
+
49
+ python version 3.12+
50
+
51
+ ### Create and activate python virtual environment
52
+ ```sh
53
+ python3 -m venv venv
54
+ source venv/bin/activate
55
+ ```
56
+
57
+ ### Install requirement packages
58
+ ```sh
59
+ pip install --upgrade pip setuptools wheel
60
+ ```
61
+
62
+ ### Clone the graphiant-sdk-python repo
63
+ ```sh
64
+ git clone git@github.com:Graphiant-Inc/graphiant-sdk-python.git
65
+ ```
66
+
67
+ ### Build the SDK Distribution
68
+ ```sh
69
+ cd graphiant-sdk-python
70
+ python setup.py sdist bdist_wheel
71
+ ```
72
+
73
+ ### Install the SDK locally
74
+
75
+ Install using the source archive:
76
+
77
+ ```sh
78
+ pip install dist/*.tar.gz
79
+ ```
80
+
81
+ ## License
82
+
83
+ Copyright (c) 2025 Graphiant-Inc
84
+
85
+ Permission is hereby granted, free of charge, to any person obtaining a copy
86
+ of this software and associated documentation files (the "Software"), to deal
87
+ in the Software without restriction, including without limitation the rights
88
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
89
+ copies of the Software, and to permit persons to whom the Software is
90
+ furnished to do so, subject to the following conditions:
91
+
92
+ The above copyright notice and this permission notice shall be included in all
93
+ copies or substantial portions of the Software.
94
+
95
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
96
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
97
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
98
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
99
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
100
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
101
+ SOFTWARE.
@@ -0,0 +1,71 @@
1
+ # Graphiant-SDK-Python
2
+
3
+ Python SDK for [Graphiant NaaS](https://www.graphiant.com).
4
+
5
+ Refer [Graphiant Documentation](https://docs.graphiant.com/) to get started with our services.
6
+
7
+ ## Install
8
+
9
+ ```sh
10
+ pip install graphiant-sdk
11
+ ```
12
+
13
+ ## Build
14
+
15
+ This guide explains how to build and install Graphiant-SDK from source code.
16
+
17
+ ### Prerequisites
18
+
19
+ python version 3.12+
20
+
21
+ ### Create and activate python virtual environment
22
+ ```sh
23
+ python3 -m venv venv
24
+ source venv/bin/activate
25
+ ```
26
+
27
+ ### Install requirement packages
28
+ ```sh
29
+ pip install --upgrade pip setuptools wheel
30
+ ```
31
+
32
+ ### Clone the graphiant-sdk-python repo
33
+ ```sh
34
+ git clone git@github.com:Graphiant-Inc/graphiant-sdk-python.git
35
+ ```
36
+
37
+ ### Build the SDK Distribution
38
+ ```sh
39
+ cd graphiant-sdk-python
40
+ python setup.py sdist bdist_wheel
41
+ ```
42
+
43
+ ### Install the SDK locally
44
+
45
+ Install using the source archive:
46
+
47
+ ```sh
48
+ pip install dist/*.tar.gz
49
+ ```
50
+
51
+ ## License
52
+
53
+ Copyright (c) 2025 Graphiant-Inc
54
+
55
+ Permission is hereby granted, free of charge, to any person obtaining a copy
56
+ of this software and associated documentation files (the "Software"), to deal
57
+ in the Software without restriction, including without limitation the rights
58
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
59
+ copies of the Software, and to permit persons to whom the Software is
60
+ furnished to do so, subject to the following conditions:
61
+
62
+ The above copyright notice and this permission notice shall be included in all
63
+ copies or substantial portions of the Software.
64
+
65
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
66
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
67
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
68
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
69
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
70
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
71
+ SOFTWARE.
@@ -0,0 +1,101 @@
1
+ Metadata-Version: 2.4
2
+ Name: graphiant-sdk
3
+ Version: 25.5.0
4
+ Summary: Python SDK for Graphiant NaaS
5
+ Home-page: https://www.graphiant.com
6
+ Author: Graphiant Inc
7
+ Author-email: support@graphiant.com
8
+ License: MIT
9
+ Keywords: SDK,Graphiant,NaaS
10
+ Classifier: Programming Language :: Python :: 3
11
+ Classifier: License :: OSI Approved :: MIT License
12
+ Classifier: Operating System :: OS Independent
13
+ Description-Content-Type: text/markdown
14
+ License-File: LICENSE
15
+ Requires-Dist: urllib3>=1.15
16
+ Requires-Dist: six>=1.10
17
+ Requires-Dist: certifi
18
+ Requires-Dist: python-dateutil
19
+ Dynamic: author
20
+ Dynamic: author-email
21
+ Dynamic: classifier
22
+ Dynamic: description
23
+ Dynamic: description-content-type
24
+ Dynamic: home-page
25
+ Dynamic: keywords
26
+ Dynamic: license
27
+ Dynamic: license-file
28
+ Dynamic: requires-dist
29
+ Dynamic: summary
30
+
31
+ # Graphiant-SDK-Python
32
+
33
+ Python SDK for [Graphiant NaaS](https://www.graphiant.com).
34
+
35
+ Refer [Graphiant Documentation](https://docs.graphiant.com/) to get started with our services.
36
+
37
+ ## Install
38
+
39
+ ```sh
40
+ pip install graphiant-sdk
41
+ ```
42
+
43
+ ## Build
44
+
45
+ This guide explains how to build and install Graphiant-SDK from source code.
46
+
47
+ ### Prerequisites
48
+
49
+ python version 3.12+
50
+
51
+ ### Create and activate python virtual environment
52
+ ```sh
53
+ python3 -m venv venv
54
+ source venv/bin/activate
55
+ ```
56
+
57
+ ### Install requirement packages
58
+ ```sh
59
+ pip install --upgrade pip setuptools wheel
60
+ ```
61
+
62
+ ### Clone the graphiant-sdk-python repo
63
+ ```sh
64
+ git clone git@github.com:Graphiant-Inc/graphiant-sdk-python.git
65
+ ```
66
+
67
+ ### Build the SDK Distribution
68
+ ```sh
69
+ cd graphiant-sdk-python
70
+ python setup.py sdist bdist_wheel
71
+ ```
72
+
73
+ ### Install the SDK locally
74
+
75
+ Install using the source archive:
76
+
77
+ ```sh
78
+ pip install dist/*.tar.gz
79
+ ```
80
+
81
+ ## License
82
+
83
+ Copyright (c) 2025 Graphiant-Inc
84
+
85
+ Permission is hereby granted, free of charge, to any person obtaining a copy
86
+ of this software and associated documentation files (the "Software"), to deal
87
+ in the Software without restriction, including without limitation the rights
88
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
89
+ copies of the Software, and to permit persons to whom the Software is
90
+ furnished to do so, subject to the following conditions:
91
+
92
+ The above copyright notice and this permission notice shall be included in all
93
+ copies or substantial portions of the Software.
94
+
95
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
96
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
97
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
98
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
99
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
100
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
101
+ SOFTWARE.
@@ -0,0 +1,8 @@
1
+ LICENSE
2
+ README.md
3
+ setup.py
4
+ graphiant_sdk.egg-info/PKG-INFO
5
+ graphiant_sdk.egg-info/SOURCES.txt
6
+ graphiant_sdk.egg-info/dependency_links.txt
7
+ graphiant_sdk.egg-info/requires.txt
8
+ graphiant_sdk.egg-info/top_level.txt
@@ -0,0 +1,4 @@
1
+ urllib3>=1.15
2
+ six>=1.10
3
+ certifi
4
+ python-dateutil
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,50 @@
1
+ # coding: utf-8
2
+ """
3
+ Copyright (c) 2025 Graphiant-Inc
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.
22
+ """
23
+
24
+ from setuptools import setup, find_packages # noqa: H301
25
+
26
+ NAME = "graphiant-sdk"
27
+ VERSION = "25.5.0"
28
+
29
+ REQUIRES = ["urllib3 >= 1.15", "six >= 1.10", "certifi", "python-dateutil"]
30
+
31
+ setup(
32
+ name=NAME,
33
+ version=VERSION,
34
+ url="https://www.graphiant.com",
35
+ author="Graphiant Inc",
36
+ author_email="support@graphiant.com",
37
+ description="Python SDK for Graphiant NaaS",
38
+ long_description=open('README.md').read(),
39
+ long_description_content_type='text/markdown',
40
+ license='MIT',
41
+ keywords=["SDK", "Graphiant", "NaaS"],
42
+ install_requires=REQUIRES,
43
+ packages=find_packages(),
44
+ classifiers=[
45
+ 'Programming Language :: Python :: 3',
46
+ 'License :: OSI Approved :: MIT License',
47
+ 'Operating System :: OS Independent',
48
+ ],
49
+ include_package_data=True,
50
+ )