funcnodes-basic 0.1.7__py3-none-any.whl → 0.1.9__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.
- funcnodes_basic/__init__.py +1 -1
- funcnodes_basic/math_nodes.py +1 -3
- funcnodes_basic/strings.py +1 -1
- funcnodes_basic-0.1.9.dist-info/LICENSE +21 -0
- funcnodes_basic-0.1.9.dist-info/METADATA +54 -0
- funcnodes_basic-0.1.9.dist-info/RECORD +11 -0
- funcnodes_basic-0.1.7.dist-info/METADATA +0 -22
- funcnodes_basic-0.1.7.dist-info/RECORD +0 -10
- {funcnodes_basic-0.1.7.dist-info → funcnodes_basic-0.1.9.dist-info}/WHEEL +0 -0
- {funcnodes_basic-0.1.7.dist-info → funcnodes_basic-0.1.9.dist-info}/entry_points.txt +0 -0
funcnodes_basic/__init__.py
CHANGED
funcnodes_basic/math_nodes.py
CHANGED
funcnodes_basic/strings.py
CHANGED
@@ -154,7 +154,7 @@ def string_split(s: str, delimiter: Optional[str] = None) -> List[str]:
|
|
154
154
|
{"name": "joined"},
|
155
155
|
],
|
156
156
|
)
|
157
|
-
def string_join(strings: List[str], delimiter: str = "
|
157
|
+
def string_join(strings: List[str], delimiter: str = "") -> str:
|
158
158
|
return delimiter.join(strings)
|
159
159
|
|
160
160
|
|
@@ -0,0 +1,21 @@
|
|
1
|
+
MIT License
|
2
|
+
|
3
|
+
Copyright (c) 2024 Linkdlab GmbH
|
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,54 @@
|
|
1
|
+
Metadata-Version: 2.1
|
2
|
+
Name: funcnodes-basic
|
3
|
+
Version: 0.1.9
|
4
|
+
Summary: Basic functionalities for funcnodes
|
5
|
+
License: MIT
|
6
|
+
Author: Julian Kimmig
|
7
|
+
Author-email: julian.kimmig@gmx.net
|
8
|
+
Requires-Python: >=3.11
|
9
|
+
Classifier: License :: OSI Approved :: MIT License
|
10
|
+
Classifier: Programming Language :: Python :: 3
|
11
|
+
Classifier: Programming Language :: Python :: 3.11
|
12
|
+
Classifier: Programming Language :: Python :: 3.12
|
13
|
+
Requires-Dist: funcnodes
|
14
|
+
Requires-Dist: funcnodes-core (>=0.1.14)
|
15
|
+
Project-URL: download, https://pypi.org/project/funcnodes-basic/#files
|
16
|
+
Project-URL: homepage, https://github.com/Linkdlab/funcnodes_basic
|
17
|
+
Project-URL: source, https://github.com/Linkdlab/funcnodes_basic
|
18
|
+
Project-URL: tracker, https://github.com/Linkdlab/funcnodes_basic/issues
|
19
|
+
Description-Content-Type: text/markdown
|
20
|
+
|
21
|
+
# FuncNodes Basic
|
22
|
+
|
23
|
+
## Overview
|
24
|
+
|
25
|
+
`funcnodes-basic` is a collection of essential nodes designed to handle fundamental operations in [Funcnodes](https://github.com/linkdlab/funcnodes), such as list manipulation, dictionary operations, logic control, mathematical functions, and string processing. It provides a foundation of commonly needed functionalities in computational graphs built with the FuncNodes framework. Each module within this package contains a set of nodes, grouped by their operation type, allowing seamless integration into broader systems.
|
26
|
+
|
27
|
+
## Installation
|
28
|
+
|
29
|
+
Install the package with:
|
30
|
+
|
31
|
+
```bash
|
32
|
+
pip install funcnodes-basic
|
33
|
+
```
|
34
|
+
|
35
|
+
## Getting Started
|
36
|
+
|
37
|
+
Please refere to the [Funcnodes](https://github.com/linkdlab/funcnodes) package
|
38
|
+
|
39
|
+
## Example Usage
|
40
|
+
|
41
|
+
You can integrate the provided nodes in your computational graphs, connecting inputs and outputs between nodes to build complex workflows that utilize dictionaries, lists, logic, math, and string operations.
|
42
|
+
|
43
|
+
## Contribution
|
44
|
+
|
45
|
+
Feel free to contribute to this project by submitting pull requests. You can help by adding new nodes, fixing bugs, or enhancing documentation.
|
46
|
+
|
47
|
+
## License
|
48
|
+
|
49
|
+
This project is licensed under the MIT License.
|
50
|
+
|
51
|
+
## Contact
|
52
|
+
|
53
|
+
For any questions or issues, please open an issue on the GitHub repository.
|
54
|
+
|
@@ -0,0 +1,11 @@
|
|
1
|
+
funcnodes_basic/__init__.py,sha256=36Udeh70dThxlUSkYl5mP48MUWEXZ8U3ylkuwjlXeJk,517
|
2
|
+
funcnodes_basic/dicts.py,sha256=koNJEwIq9ryC7evBpnI-QmR7MBIbgUWqpPpwhB3M69Y,2507
|
3
|
+
funcnodes_basic/lists.py,sha256=Sm4u1lqCbB9dQcY_YOTMRsBccUYfKGXaU_3kiqX8YhY,1566
|
4
|
+
funcnodes_basic/logic.py,sha256=ecWXzkgjxYMfMdvm0Gdt-agsSbe9-_ilCNfhLz5OFXk,3575
|
5
|
+
funcnodes_basic/math_nodes.py,sha256=PasNf-1wAvbJ_c-_qeiIDaUVfgPQEREJApeUcTS4FQg,10586
|
6
|
+
funcnodes_basic/strings.py,sha256=O6rcxBQJ5eYd765w_tolaD6xMwsNmtBjiPgJ_69tKyA,16429
|
7
|
+
funcnodes_basic-0.1.9.dist-info/LICENSE,sha256=VcvnA4LohgMs8yTDTS1sS3aZbSFa3Ei9YeJogeosE7Y,1070
|
8
|
+
funcnodes_basic-0.1.9.dist-info/METADATA,sha256=a6_9yI530Wo1vEAG85AXsrrMmg0pU1YeNEKjHJXvJjU,2065
|
9
|
+
funcnodes_basic-0.1.9.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
10
|
+
funcnodes_basic-0.1.9.dist-info/entry_points.txt,sha256=Y7-9Rw_0qbyg8MrdLG6zjiEmUYBug_K4TBdJz9MAKxA,76
|
11
|
+
funcnodes_basic-0.1.9.dist-info/RECORD,,
|
@@ -1,22 +0,0 @@
|
|
1
|
-
Metadata-Version: 2.1
|
2
|
-
Name: funcnodes-basic
|
3
|
-
Version: 0.1.7
|
4
|
-
Summary: Basic functionalities for funcnodes
|
5
|
-
License: MIT
|
6
|
-
Author: Julian Kimmig
|
7
|
-
Author-email: julian.kimmig@gmx.net
|
8
|
-
Requires-Python: >=3.11
|
9
|
-
Classifier: License :: OSI Approved :: MIT License
|
10
|
-
Classifier: Programming Language :: Python :: 3
|
11
|
-
Classifier: Programming Language :: Python :: 3.11
|
12
|
-
Classifier: Programming Language :: Python :: 3.12
|
13
|
-
Requires-Dist: funcnodes
|
14
|
-
Requires-Dist: funcnodes-core (>=0.1.14)
|
15
|
-
Project-URL: download, https://pypi.org/project/funcnodes-basic/#files
|
16
|
-
Project-URL: homepage, https://github.com/Linkdlab/funcnodes_basic
|
17
|
-
Project-URL: source, https://github.com/Linkdlab/funcnodes_basic
|
18
|
-
Project-URL: tracker, https://github.com/Linkdlab/funcnodes_basic/issues
|
19
|
-
Description-Content-Type: text/markdown
|
20
|
-
|
21
|
-
Basic Nodes for Funcnodes,
|
22
|
-
|
@@ -1,10 +0,0 @@
|
|
1
|
-
funcnodes_basic/__init__.py,sha256=3DSRkCFI9OP6St2-r0UTQN9lEdqcRXZmyPTo3AoVAN4,517
|
2
|
-
funcnodes_basic/dicts.py,sha256=koNJEwIq9ryC7evBpnI-QmR7MBIbgUWqpPpwhB3M69Y,2507
|
3
|
-
funcnodes_basic/lists.py,sha256=Sm4u1lqCbB9dQcY_YOTMRsBccUYfKGXaU_3kiqX8YhY,1566
|
4
|
-
funcnodes_basic/logic.py,sha256=ecWXzkgjxYMfMdvm0Gdt-agsSbe9-_ilCNfhLz5OFXk,3575
|
5
|
-
funcnodes_basic/math_nodes.py,sha256=tOwKty1x2TSXiHMFTFJQThZ1Ef0hSNUbCrOEhBPIpEM,10606
|
6
|
-
funcnodes_basic/strings.py,sha256=3K0VvObVLdXpQmw1Aaxz3ZOdX6jkw9pUh_IB2qITmX0,16430
|
7
|
-
funcnodes_basic-0.1.7.dist-info/METADATA,sha256=nmk19IvZptynIYHJED1YIRzFQU-B5q7k83GIHHbK9c0,812
|
8
|
-
funcnodes_basic-0.1.7.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
9
|
-
funcnodes_basic-0.1.7.dist-info/entry_points.txt,sha256=Y7-9Rw_0qbyg8MrdLG6zjiEmUYBug_K4TBdJz9MAKxA,76
|
10
|
-
funcnodes_basic-0.1.7.dist-info/RECORD,,
|
File without changes
|
File without changes
|