funcnodes-basic 0.1.5__py3-none-any.whl → 0.1.7__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 +2 -2
- funcnodes_basic/dicts.py +2 -1
- funcnodes_basic/lists.py +1 -1
- funcnodes_basic/logic.py +5 -5
- funcnodes_basic/math_nodes.py +2 -2
- funcnodes_basic/strings.py +3 -2
- funcnodes_basic-0.1.7.dist-info/METADATA +22 -0
- funcnodes_basic-0.1.7.dist-info/RECORD +10 -0
- funcnodes_basic-0.1.5.dist-info/METADATA +0 -15
- funcnodes_basic-0.1.5.dist-info/RECORD +0 -10
- {funcnodes_basic-0.1.5.dist-info → funcnodes_basic-0.1.7.dist-info}/WHEEL +0 -0
- {funcnodes_basic-0.1.5.dist-info → funcnodes_basic-0.1.7.dist-info}/entry_points.txt +0 -0
funcnodes_basic/__init__.py
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
from
|
1
|
+
from funcnodes_core import Shelf
|
2
2
|
from .logic import NODE_SHELF as logic_shelf
|
3
3
|
from .math_nodes import NODE_SHELF as math_shelf
|
4
4
|
from .lists import NODE_SHELF as lists_shelf
|
@@ -6,7 +6,7 @@ from .strings import NODE_SHELF as strings_shelf
|
|
6
6
|
from .dicts import NODE_SHELF as dicts_shelf
|
7
7
|
|
8
8
|
|
9
|
-
__version__ = "0.1.
|
9
|
+
__version__ = "0.1.7"
|
10
10
|
|
11
11
|
NODE_SHELF = Shelf(
|
12
12
|
nodes=[],
|
funcnodes_basic/dicts.py
CHANGED
funcnodes_basic/lists.py
CHANGED
funcnodes_basic/logic.py
CHANGED
@@ -1,11 +1,11 @@
|
|
1
1
|
"""Logic Nodes for control flow and decision making."""
|
2
2
|
|
3
|
-
from
|
4
|
-
from typing import Any, List, Optional
|
5
|
-
from
|
3
|
+
from funcnodes_core.node import Node, TriggerStack
|
4
|
+
from typing import Any, List, Optional
|
5
|
+
from funcnodes_core.io import NodeInput, NodeOutput, NoValue
|
6
6
|
import asyncio
|
7
7
|
|
8
|
-
import
|
8
|
+
import funcnodes_core as fn
|
9
9
|
|
10
10
|
|
11
11
|
class IfNode(Node):
|
@@ -101,7 +101,7 @@ class CollectorNode(Node):
|
|
101
101
|
if reset != NoValue:
|
102
102
|
self.collection = []
|
103
103
|
self.inputs["reset"].value = NoValue
|
104
|
-
|
104
|
+
|
105
105
|
self.collection.append(input)
|
106
106
|
self.outputs["output"].value = self.collection
|
107
107
|
|
funcnodes_basic/math_nodes.py
CHANGED
@@ -3,8 +3,8 @@
|
|
3
3
|
import math
|
4
4
|
import sys
|
5
5
|
from typing import List
|
6
|
-
from
|
7
|
-
from
|
6
|
+
from funcnodes_core.nodemaker import NodeDecorator
|
7
|
+
from funcnodes_core.lib import module_to_shelf
|
8
8
|
|
9
9
|
|
10
10
|
# region: Basic math nodes
|
funcnodes_basic/strings.py
CHANGED
@@ -0,0 +1,22 @@
|
|
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
|
+
|
@@ -0,0 +1,10 @@
|
|
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,,
|
@@ -1,15 +0,0 @@
|
|
1
|
-
Metadata-Version: 2.1
|
2
|
-
Name: funcnodes-basic
|
3
|
-
Version: 0.1.5
|
4
|
-
Summary: Basic functionalities for funcnodes
|
5
|
-
Author: Julian Kimmig
|
6
|
-
Author-email: julian.kimmig@gmx.net
|
7
|
-
Requires-Python: >=3.11,<4.0
|
8
|
-
Classifier: Programming Language :: Python :: 3
|
9
|
-
Classifier: Programming Language :: Python :: 3.11
|
10
|
-
Classifier: Programming Language :: Python :: 3.12
|
11
|
-
Requires-Dist: funcnodes
|
12
|
-
Requires-Dist: requests
|
13
|
-
Description-Content-Type: text/markdown
|
14
|
-
|
15
|
-
|
@@ -1,10 +0,0 @@
|
|
1
|
-
funcnodes_basic/__init__.py,sha256=pW8tjzQrw225_cB_Qu-wXdpyaRmsu-yg1dOFErMc_Xs,512
|
2
|
-
funcnodes_basic/dicts.py,sha256=Fgowtdw-G36jSH4iNpCl0MwOPsuuvZvDdmFZTZYHzys,2501
|
3
|
-
funcnodes_basic/lists.py,sha256=cDBaXY_I2D1-CHbIA4_7OV2Dn2zk47c20hCAQHhPoO4,1561
|
4
|
-
funcnodes_basic/logic.py,sha256=qmZMQ0LfXzv4XM8bxVhXXDt5I9CWzn_OIiUrZkJjDeM,3579
|
5
|
-
funcnodes_basic/math_nodes.py,sha256=eKgjAE-udWfpRzZ1d5luhwZQO0DnZwYasO83Zxi9wBA,10596
|
6
|
-
funcnodes_basic/strings.py,sha256=BbLuq6m96Sia02UEmi-aUi5L5bebGbcgwvpTnGFVD2E,16429
|
7
|
-
funcnodes_basic-0.1.5.dist-info/METADATA,sha256=6yOX2cSNBOES-b-gafTx4nvi_FWFoC2Pkcqj7Wrmc1s,432
|
8
|
-
funcnodes_basic-0.1.5.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
9
|
-
funcnodes_basic-0.1.5.dist-info/entry_points.txt,sha256=Y7-9Rw_0qbyg8MrdLG6zjiEmUYBug_K4TBdJz9MAKxA,76
|
10
|
-
funcnodes_basic-0.1.5.dist-info/RECORD,,
|
File without changes
|
File without changes
|