another-ayx-python-sdk 2.4.25__py3-none-any.whl → 2.5.0__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.
@@ -136,8 +136,8 @@ def pin_ayx_version_to_requirements(requirements_path: Path) -> None:
136
136
  with open(requirements_path, "r") as req_file:
137
137
  lines = req_file.readlines()
138
138
  for line_num in range(len(lines)):
139
- if re.match(r"^ayx_python_sdk$", lines[line_num]):
140
- lines[line_num] = f"ayx_python_sdk=={short_version}"
139
+ if re.match(r"^another_ayx_python_sdk$", lines[line_num]):
140
+ lines[line_num] = f"another_ayx_python_sdk=={short_version}"
141
141
  req_file = open(requirements_path, "w")
142
142
  req_file.writelines(lines)
143
143
 
@@ -78,7 +78,7 @@ class AyxSdkInput(PluginV2):
78
78
  df = pd.DataFrame(
79
79
  {
80
80
  "x": [1, 2, 3],
81
- "y": ["hello", "world", "from ayx_python_sdk!"],
81
+ "y": ["hello", "world", "from another_ayx_python_sdk!"],
82
82
  "z": [self.config_value, self.config_value, self.config_value],
83
83
  }
84
84
  )
@@ -1,4 +1,4 @@
1
- ayx_python_sdk
1
+ another_ayx_python_sdk
2
2
  Click==7.1.2
3
3
  grpcio==1.28.1
4
4
  grpcio-tools==1.28.1
@@ -1,7 +1,7 @@
1
1
  """FILE GENERATED FROM SETUP.PY."""
2
- short_version = "2.4.25"
3
- version = "2.4.25"
4
- full_version = "2.4.25"
2
+ short_version = "2.5.0"
3
+ version = "2.5.0"
4
+ full_version = "2.5.0"
5
5
  release = True
6
6
 
7
7
  if not release:
@@ -0,0 +1,151 @@
1
+ Metadata-Version: 2.4
2
+ Name: another-ayx-python-sdk
3
+ Version: 2.5.0
4
+ Summary: Python SDK for Alteryx Plugin Development and Testing
5
+ Author: Jupiter Bakakeu
6
+ Author-email: Jupiter Bakakeu <jupiter.bakakeu@gmail.com>
7
+ Maintainer: Jupiter Bakakeu
8
+ Maintainer-email: Jupiter Bakakeu <jupiter.bakakeu@gmail.com>
9
+ License-Expression: MIT
10
+ Project-URL: Homepage, https://github.com/jupiterbak/another-ayx-python-sdk
11
+ Project-URL: Repository, https://github.com/jupiterbak/another-ayx-python-sdk.git
12
+ Classifier: Development Status :: 5 - Production/Stable
13
+ Classifier: Intended Audience :: Developers
14
+ Classifier: Programming Language :: Python :: 3
15
+ Classifier: Programming Language :: Python :: 3.8
16
+ Classifier: Programming Language :: Python :: 3.9
17
+ Classifier: Programming Language :: Python :: 3.10
18
+ Classifier: Programming Language :: Python :: 3.11
19
+ Classifier: Programming Language :: Python :: 3.12
20
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
21
+ Classifier: Topic :: Software Development :: Build Tools
22
+ Classifier: Topic :: Software Development :: Testing
23
+ Classifier: Environment :: Console
24
+ Requires-Python: >=3.8
25
+ Description-Content-Type: text/markdown
26
+ License-File: LICENSE
27
+ Requires-Dist: pydantic
28
+ Requires-Dist: packaging
29
+ Requires-Dist: setuptools>=65.5.0
30
+ Requires-Dist: pyarrow
31
+ Requires-Dist: xmltodict
32
+ Requires-Dist: pyyaml
33
+ Requires-Dist: requests
34
+ Requires-Dist: another-ayx-plugin-cli>=1.2.4
35
+ Requires-Dist: typing-extensions
36
+ Requires-Dist: pypac
37
+ Requires-Dist: pandas
38
+ Requires-Dist: numpy
39
+ Requires-Dist: deprecation
40
+ Requires-Dist: grpcio
41
+ Requires-Dist: grpcio-tools
42
+ Requires-Dist: protobuf
43
+ Requires-Dist: psutil
44
+ Requires-Dist: Click
45
+ Requires-Dist: python-dateutil
46
+ Requires-Dist: pytz
47
+ Requires-Dist: six
48
+ Requires-Dist: typer
49
+ Requires-Dist: wincertstore
50
+ Provides-Extra: dev
51
+ Requires-Dist: pytest; extra == "dev"
52
+ Requires-Dist: pytest-cov; extra == "dev"
53
+ Requires-Dist: black; extra == "dev"
54
+ Requires-Dist: isort; extra == "dev"
55
+ Requires-Dist: flake8; extra == "dev"
56
+ Requires-Dist: mypy; extra == "dev"
57
+ Dynamic: author
58
+ Dynamic: license-file
59
+ Dynamic: maintainer
60
+ Dynamic: requires-python
61
+
62
+ # Another AYX Python SDK
63
+
64
+ A powerful Python SDK for Alteryx Plugin Development and Testing. This SDK provides a comprehensive set of tools and utilities to streamline the development, testing, and deployment of Alteryx plugins.
65
+
66
+ ## Features
67
+
68
+ - Plugin development framework
69
+ - Testing harness for Alteryx plugins
70
+ - CLI tools for plugin management
71
+ - Support for various Alteryx providers
72
+ - Comprehensive documentation and examples
73
+
74
+ ## Requirements
75
+
76
+ - Python 3.8 or higher
77
+ - Alteryx Designer (for plugin testing)
78
+
79
+ ## Installation
80
+
81
+ You can install the SDK using pip:
82
+
83
+ ```bash
84
+ pip install another-ayx-python-sdk
85
+ ```
86
+
87
+ For development, install with additional development dependencies:
88
+
89
+ ```bash
90
+ pip install "another-ayx-python-sdk[dev]"
91
+ ```
92
+
93
+ ## Quick Start
94
+
95
+ 1. Create a new plugin project:
96
+ ```bash
97
+ another-ayx-python-sdk create-plugin my-plugin
98
+ ```
99
+
100
+ 2. Develop your plugin using the provided framework
101
+ 3. Test your plugin using the testing harness
102
+ 4. Deploy your plugin to Alteryx Designer
103
+
104
+ ## Project Structure
105
+
106
+ ```
107
+ another_ayx_python_sdk/
108
+ ├── assets/ # Static assets and resources
109
+ ├── cli/ # Command-line interface tools
110
+ ├── core/ # Core SDK functionality
111
+ ├── examples/ # Example plugins and usage
112
+ ├── providers/ # Alteryx provider implementations
113
+ └── test_harness/ # Testing framework
114
+ ```
115
+
116
+ ## Development
117
+
118
+ To set up the development environment:
119
+
120
+ 1. Clone the repository:
121
+ ```bash
122
+ git clone https://github.com/jupiterbak/another-ayx-python-sdk.git
123
+ cd another-ayx-python-sdk
124
+ ```
125
+
126
+ 2. Install development dependencies:
127
+ ```bash
128
+ pip install -e ".[dev]"
129
+ ```
130
+
131
+ 3. Run tests:
132
+ ```bash
133
+ pytest
134
+ ```
135
+
136
+ ## Contributing
137
+
138
+ Contributions are welcome! Please feel free to submit a Pull Request.
139
+
140
+ ## License
141
+
142
+ This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
143
+
144
+ ## Author
145
+
146
+ - Jupiter Bakakeu (jupiter.bakakeu@gmail.com)
147
+
148
+ ## Support
149
+
150
+ For support, please open an issue on the [GitHub repository](https://github.com/jupiterbak/another-ayx-python-sdk/issues).
151
+
@@ -1,6 +1,6 @@
1
1
  another_ayx_python_sdk/__init__.py,sha256=rW_9jQFFsVtSstJyG_mC133azLPSahYsQNjBO2wGbvE,666
2
- another_ayx_python_sdk/__main__.py,sha256=mC0eQDRp4eYQ0nE1XMFhjnzz3JScvN2sZVaNTxxn-XU,15702
3
- another_ayx_python_sdk/version.py,sha256=XXHfkBnv56nyTsEjCY1Na-nWA_LPFJ590e0Vhzdgyro,163
2
+ another_ayx_python_sdk/__main__.py,sha256=YW5qSlVhtruF6vSLHAFoosqUfsLLCgDPO7wU7sQx0Gs,15718
3
+ another_ayx_python_sdk/version.py,sha256=YjC83LRqRDP0mYOJWkuSM68PdrtIo0uriqAHsO_yuRc,160
4
4
  another_ayx_python_sdk/assets/workspace_files/__init__.py,sha256=_B9-372ZW6ePlxj3OqOdbC4Pm0bnsxO_1p0LQO5u2XI,661
5
5
  another_ayx_python_sdk/assets/workspace_files/setup.py,sha256=WNhM036Hw3i7upZ7sNeTv0i-f-MkOAViP6X6T2b055M,1250
6
6
  another_ayx_python_sdk/cli/__init__.py,sha256=P_f8aZgkOMG8ipVYsJgHT_KZDzrGe7VJ3sjX84HR_rI,656
@@ -47,8 +47,8 @@ another_ayx_python_sdk/core/__pycache__/provider_base.cpython-310.pyc,sha256=XX-
47
47
  another_ayx_python_sdk/core/__pycache__/record_packet.cpython-310.pyc,sha256=K4Fr1BKPXYHj_UAyYzVYOeLf_xoypdbrWusqW7StWlk,2417
48
48
  another_ayx_python_sdk/core/__pycache__/record_packet_base.cpython-310.pyc,sha256=Jm8FvVo9GeeXox9SYnlH-2Mu4Nt5xvfTpsjCYZBdRJQ,3732
49
49
  another_ayx_python_sdk/core/__pycache__/register_plugin.cpython-310.pyc,sha256=g2lnCknvsGmbwAAD02OfuPxq0GJ_Ah-CUPpVFvNJ0ws,3018
50
- another_ayx_python_sdk/examples/requirements.txt,sha256=NWsfgytJqM478PjvMhzmmquejk5LzTm09C_aqihogFo,289
51
- another_ayx_python_sdk/examples/AyxSdkInput/main.py,sha256=dNpM5QI3B5CsRXGuvlO7X334tuXi5ZMmGwxcdkvQIdQ,3286
50
+ another_ayx_python_sdk/examples/requirements.txt,sha256=sHq0-QPJH4FKfTejTopVRRkgregIpUkmjA3h6MLQiKk,297
51
+ another_ayx_python_sdk/examples/AyxSdkInput/main.py,sha256=ppX1RohBbxkaNbCm6r5f5jMSefP89H9sYUwjBoNzUbs,3294
52
52
  another_ayx_python_sdk/examples/AyxSdkMultiConnectionsMultiOutputAnchor/main.py,sha256=aMKMKS8Tu03m82ZIFG3FCm-3JNGi7c51z_SlsJJm7MA,3971
53
53
  another_ayx_python_sdk/examples/AyxSdkMultiConnectionsMultiOutputAnchor/__pycache__/main.cpython-310.pyc,sha256=7ltz8-a-PyJbqMCX0kDkI0nX3KyYynMAlZfvR-JCLgs,4018
54
54
  another_ayx_python_sdk/examples/AyxSdkMultipleInputAnchors/AyxSdkMultipleInputAnchorsConfig.xml,sha256=PhzSEozpfxVeJZ-aCEr8XVF18lOgLJdZQ-08HDZARRU,1085
@@ -395,9 +395,9 @@ another_ayx_python_sdk/test_harness/__pycache__/__main__.cpython-310.pyc,sha256=
395
395
  another_ayx_python_sdk/test_harness/__pycache__/plugin_runner.cpython-310.pyc,sha256=x1mnw7Fe0mLWImALcMBxe_9bbLtClkDoMORGigyOl6k,12315
396
396
  another_ayx_python_sdk/test_harness/__pycache__/process_lifecycle_manager.cpython-310.pyc,sha256=Tbh8cz3wbDSa-MVPpWfglkewGlmEedgs4pDMEU6pR90,2766
397
397
  another_ayx_python_sdk/test_harness/__pycache__/sdk_engine_service.cpython-310.pyc,sha256=PD6MeaHo-E9_Y5pYGXmHV622isQXQdrAScVpRs9S6EY,3878
398
- another_ayx_python_sdk-2.4.25.dist-info/licenses/LICENSE,sha256=idX7EpV9wC_oqjijMHjcA6svWNkQJBUr_ZoV2WtRegU,1092
399
- another_ayx_python_sdk-2.4.25.dist-info/METADATA,sha256=137aOrxLQfp3xRRT3VlYxZ0Ldt6WCljgIabzmrAQF-w,2191
400
- another_ayx_python_sdk-2.4.25.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
401
- another_ayx_python_sdk-2.4.25.dist-info/entry_points.txt,sha256=NqVRYuHblqbm6riofdadL-81b6QzS31HgSTiNGyrmU0,80
402
- another_ayx_python_sdk-2.4.25.dist-info/top_level.txt,sha256=uervU294PnXXmasUBpVYCnJglldB2hUIUzEDrtSxX5I,23
403
- another_ayx_python_sdk-2.4.25.dist-info/RECORD,,
398
+ another_ayx_python_sdk-2.5.0.dist-info/licenses/LICENSE,sha256=idX7EpV9wC_oqjijMHjcA6svWNkQJBUr_ZoV2WtRegU,1092
399
+ another_ayx_python_sdk-2.5.0.dist-info/METADATA,sha256=8XGmoXG8pNRiAByHu-eyeSZ0yO1PsBPyC2UpIUB4lbI,4294
400
+ another_ayx_python_sdk-2.5.0.dist-info/WHEEL,sha256=lTU6B6eIfYoiQJTZNc-fyaR6BpL6ehTzU3xGYxn2n8k,91
401
+ another_ayx_python_sdk-2.5.0.dist-info/entry_points.txt,sha256=NqVRYuHblqbm6riofdadL-81b6QzS31HgSTiNGyrmU0,80
402
+ another_ayx_python_sdk-2.5.0.dist-info/top_level.txt,sha256=uervU294PnXXmasUBpVYCnJglldB2hUIUzEDrtSxX5I,23
403
+ another_ayx_python_sdk-2.5.0.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (80.9.0)
2
+ Generator: setuptools (78.1.1)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -1,63 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: another-ayx-python-sdk
3
- Version: 2.4.25
4
- Summary: Python SDK for Alteryx Plugin Development and Testing
5
- Author: Jupiter Bakakeu
6
- Author-email: Jupiter Bakakeu <jupiter.bakakeu@gmail.com>
7
- Maintainer: Jupiter Bakakeu
8
- Maintainer-email: Jupiter Bakakeu <jupiter.bakakeu@gmail.com>
9
- License-Expression: MIT
10
- Project-URL: Homepage, https://github.com/jupiterbak/another-ayx-python-sdk
11
- Project-URL: Repository, https://github.com/jupiterbak/another-ayx-python-sdk.git
12
- Classifier: Development Status :: 5 - Production/Stable
13
- Classifier: Intended Audience :: Developers
14
- Classifier: Programming Language :: Python :: 3
15
- Classifier: Programming Language :: Python :: 3.8
16
- Classifier: Programming Language :: Python :: 3.9
17
- Classifier: Programming Language :: Python :: 3.10
18
- Classifier: Programming Language :: Python :: 3.11
19
- Classifier: Programming Language :: Python :: 3.12
20
- Classifier: Topic :: Software Development :: Libraries :: Python Modules
21
- Classifier: Topic :: Software Development :: Build Tools
22
- Classifier: Topic :: Software Development :: Testing
23
- Classifier: Environment :: Console
24
- Requires-Python: >=3.8
25
- Description-Content-Type: text/markdown
26
- License-File: LICENSE
27
- Requires-Dist: pydantic
28
- Requires-Dist: packaging
29
- Requires-Dist: setuptools>=65.5.0
30
- Requires-Dist: pyarrow
31
- Requires-Dist: xmltodict
32
- Requires-Dist: pyyaml
33
- Requires-Dist: requests
34
- Requires-Dist: another-ayx-plugin-cli>=1.2.4
35
- Requires-Dist: typing-extensions
36
- Requires-Dist: pypac
37
- Requires-Dist: pandas
38
- Requires-Dist: numpy
39
- Requires-Dist: deprecation
40
- Requires-Dist: grpcio
41
- Requires-Dist: grpcio-tools
42
- Requires-Dist: protobuf
43
- Requires-Dist: psutil
44
- Requires-Dist: Click
45
- Requires-Dist: python-dateutil
46
- Requires-Dist: pytz
47
- Requires-Dist: six
48
- Requires-Dist: typer
49
- Requires-Dist: wincertstore
50
- Provides-Extra: dev
51
- Requires-Dist: pytest; extra == "dev"
52
- Requires-Dist: pytest-cov; extra == "dev"
53
- Requires-Dist: black; extra == "dev"
54
- Requires-Dist: isort; extra == "dev"
55
- Requires-Dist: flake8; extra == "dev"
56
- Requires-Dist: mypy; extra == "dev"
57
- Dynamic: author
58
- Dynamic: license-file
59
- Dynamic: maintainer
60
- Dynamic: requires-python
61
-
62
- # another-ayx-python-sdk
63
-