topologicpy 0.8.46__py3-none-any.whl → 0.8.47__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.
- topologicpy/ANN.py +19 -19
- topologicpy/BVH.py +5 -5
- topologicpy/CSG.py +17 -17
- topologicpy/Cell.py +295 -295
- topologicpy/CellComplex.py +67 -67
- topologicpy/Cluster.py +35 -35
- topologicpy/Color.py +8 -8
- topologicpy/DGL.py +52 -52
- topologicpy/Dictionary.py +22 -22
- topologicpy/Edge.py +77 -77
- topologicpy/EnergyModel.py +25 -25
- topologicpy/Face.py +270 -270
- topologicpy/Graph.py +1052 -675
- topologicpy/Grid.py +24 -24
- topologicpy/Helper.py +8 -8
- topologicpy/Honeybee.py +13 -13
- topologicpy/Matrix.py +11 -11
- topologicpy/Neo4j.py +21 -21
- topologicpy/Plotly.py +213 -213
- topologicpy/PyG.py +41 -41
- topologicpy/ShapeGrammar.py +7 -7
- topologicpy/Shell.py +104 -104
- topologicpy/Sun.py +46 -46
- topologicpy/Topology.py +392 -392
- topologicpy/Vector.py +25 -25
- topologicpy/Vertex.py +64 -64
- topologicpy/Wire.py +250 -250
- topologicpy/version.py +1 -1
- {topologicpy-0.8.46.dist-info → topologicpy-0.8.47.dist-info}/METADATA +1 -1
- topologicpy-0.8.47.dist-info/RECORD +38 -0
- topologicpy-0.8.46.dist-info/RECORD +0 -38
- {topologicpy-0.8.46.dist-info → topologicpy-0.8.47.dist-info}/WHEEL +0 -0
- {topologicpy-0.8.46.dist-info → topologicpy-0.8.47.dist-info}/licenses/LICENSE +0 -0
- {topologicpy-0.8.46.dist-info → topologicpy-0.8.47.dist-info}/top_level.txt +0 -0
topologicpy/DGL.py
CHANGED
@@ -1480,7 +1480,7 @@ class DGL:
|
|
1480
1480
|
predicted : list
|
1481
1481
|
The input list of predicted values.
|
1482
1482
|
mantissa : int , optional
|
1483
|
-
The
|
1483
|
+
The number of decimal places to round the result to. Default is 6.
|
1484
1484
|
|
1485
1485
|
Returns
|
1486
1486
|
-------
|
@@ -1519,7 +1519,7 @@ class DGL:
|
|
1519
1519
|
predicted : list
|
1520
1520
|
The input list of predicted values.
|
1521
1521
|
mantissa : int , optional
|
1522
|
-
The
|
1522
|
+
The number of decimal places to round the result to. Default is 6.
|
1523
1523
|
|
1524
1524
|
Returns
|
1525
1525
|
-------
|
@@ -1576,7 +1576,7 @@ class DGL:
|
|
1576
1576
|
method : str, optional
|
1577
1577
|
The method of sampling. This can be "undersampling" or "oversampling". It is case insensitive. The defaul is "undersampling".
|
1578
1578
|
key : str , optional
|
1579
|
-
The key used for the node attributes.
|
1579
|
+
The key used for the node attributes. Default is "feat".
|
1580
1580
|
|
1581
1581
|
Returns
|
1582
1582
|
-------
|
@@ -1622,9 +1622,9 @@ class DGL:
|
|
1622
1622
|
categories : list
|
1623
1623
|
The list of categories of node features.
|
1624
1624
|
node_attr_key : str , optional
|
1625
|
-
The dictionary key of the node features.
|
1625
|
+
The dictionary key of the node features. Default is "feat".
|
1626
1626
|
tolerance : float , optional
|
1627
|
-
The desired tolerance.
|
1627
|
+
The desired tolerance. Default is 0.0001.
|
1628
1628
|
|
1629
1629
|
Returns
|
1630
1630
|
-------
|
@@ -1697,9 +1697,9 @@ class DGL:
|
|
1697
1697
|
labels : list
|
1698
1698
|
The input list of labels.
|
1699
1699
|
categories : list , optional
|
1700
|
-
The list of node categories. If not specified, the categories are computed directly from the labels.
|
1700
|
+
The list of node categories. If not specified, the categories are computed directly from the labels. Default is None.
|
1701
1701
|
mantissa : int , optional
|
1702
|
-
The
|
1702
|
+
The number of decimal places to round the result to. Default is 6.
|
1703
1703
|
|
1704
1704
|
Returns
|
1705
1705
|
-------
|
@@ -1770,7 +1770,7 @@ class DGL:
|
|
1770
1770
|
predicted : list
|
1771
1771
|
The input list of predicts labels.
|
1772
1772
|
normalized : bool , optional
|
1773
|
-
If set to True, the returned data will be normalized (proportion of 1). Otherwise, actual numbers are returned.
|
1773
|
+
If set to True, the returned data will be normalized (proportion of 1). Otherwise, actual numbers are returned. Default is False.
|
1774
1774
|
|
1775
1775
|
Returns
|
1776
1776
|
-------
|
@@ -1942,7 +1942,7 @@ class DGL:
|
|
1942
1942
|
Parameters
|
1943
1943
|
----------
|
1944
1944
|
name : str
|
1945
|
-
The name of the sample dataset. This can be "ENZYMES", "DD", "COLLAB", or "MUTAG". It is case insensitive.
|
1945
|
+
The name of the sample dataset. This can be "ENZYMES", "DD", "COLLAB", or "MUTAG". It is case insensitive. Default is "ENZYMES".
|
1946
1946
|
|
1947
1947
|
Returns
|
1948
1948
|
-------
|
@@ -1973,7 +1973,7 @@ class DGL:
|
|
1973
1973
|
Parameters
|
1974
1974
|
----------
|
1975
1975
|
name : str
|
1976
|
-
The name of the sample dataset to load. This can be "Cora", "Citeseer", or "Pubmed". It is case insensitive.
|
1976
|
+
The name of the sample dataset to load. This can be "Cora", "Citeseer", or "Pubmed". It is case insensitive. Default is "Cora".
|
1977
1977
|
|
1978
1978
|
Raises
|
1979
1979
|
------
|
@@ -2052,29 +2052,29 @@ class DGL:
|
|
2052
2052
|
The desired type of model. The options are:
|
2053
2053
|
- "Classifier"
|
2054
2054
|
- "Regressor"
|
2055
|
-
The option is case insensitive.
|
2055
|
+
The option is case insensitive. Default is "classifierholdout"
|
2056
2056
|
optimizer : Optimizer
|
2057
2057
|
The desired optimizer.
|
2058
2058
|
cv_type : str , optional
|
2059
|
-
The desired cross-validation method. This can be "Holdout" or "K-Fold". It is case-insensitive.
|
2059
|
+
The desired cross-validation method. This can be "Holdout" or "K-Fold". It is case-insensitive. Default is "Holdout".
|
2060
2060
|
split : list , optional
|
2061
|
-
The desired split between training validation, and testing. [0.8, 0.1, 0.1] means that 80% of the data is used for training 10% of the data is used for validation, and 10% is used for testing.
|
2061
|
+
The desired split between training validation, and testing. [0.8, 0.1, 0.1] means that 80% of the data is used for training 10% of the data is used for validation, and 10% is used for testing. Default is [0.8, 0.1, 0.1].
|
2062
2062
|
k_folds : int , optional
|
2063
|
-
The desired number of k-folds.
|
2063
|
+
The desired number of k-folds. Default is 5.
|
2064
2064
|
hl_widths : list , optional
|
2065
|
-
The list of hidden layer widths. A list of [16, 32, 16] means that the model will have 3 hidden layers with number of neurons in each being 16, 32, 16 respectively from input to output.
|
2065
|
+
The list of hidden layer widths. A list of [16, 32, 16] means that the model will have 3 hidden layers with number of neurons in each being 16, 32, 16 respectively from input to output. Default is [32].
|
2066
2066
|
conv_layer_type : str , optional
|
2067
|
-
The desired type of the convolution layer. The options are "Classic", "GraphConv", "GINConv", "SAGEConv", "TAGConv", "DGN". It is case insensitive.
|
2067
|
+
The desired type of the convolution layer. The options are "Classic", "GraphConv", "GINConv", "SAGEConv", "TAGConv", "DGN". It is case insensitive. Default is "SAGEConv".
|
2068
2068
|
pooling : str , optional
|
2069
|
-
The desired type of pooling. The options are "AvgPooling", "MaxPooling", or "SumPooling". It is case insensitive.
|
2069
|
+
The desired type of pooling. The options are "AvgPooling", "MaxPooling", or "SumPooling". It is case insensitive. Default is "AvgPooling".
|
2070
2070
|
batch_size : int , optional
|
2071
|
-
The desired batch size.
|
2071
|
+
The desired batch size. Default is 1.
|
2072
2072
|
epochs : int , optional
|
2073
|
-
The desired number of epochs.
|
2073
|
+
The desired number of epochs. Default is 1.
|
2074
2074
|
use_gpu : bool , optional
|
2075
|
-
If set to True, the model will attempt to use the GPU.
|
2075
|
+
If set to True, the model will attempt to use the GPU. Default is False.
|
2076
2076
|
loss_function : str , optional
|
2077
|
-
The desired loss function. The options are "Cross-Entropy" or "Negative Log Likelihood". It is case insensitive.
|
2077
|
+
The desired loss function. The options are "Cross-Entropy" or "Negative Log Likelihood". It is case insensitive. Default is "Cross-Entropy".
|
2078
2078
|
|
2079
2079
|
Returns
|
2080
2080
|
-------
|
@@ -2146,7 +2146,7 @@ class DGL:
|
|
2146
2146
|
dataset : DGLDataset
|
2147
2147
|
The input dataset
|
2148
2148
|
graphLabelHeader: str , optional
|
2149
|
-
The key string under which the graph labels are stored.
|
2149
|
+
The key string under which the graph labels are stored. Default is "label".
|
2150
2150
|
|
2151
2151
|
Returns
|
2152
2152
|
-------
|
@@ -2182,7 +2182,7 @@ class DGL:
|
|
2182
2182
|
dataset : DGLDataset
|
2183
2183
|
The input dataset
|
2184
2184
|
graphFeaturesHeader: str , optional
|
2185
|
-
The key string under which the graph features are stored.
|
2185
|
+
The key string under which the graph features are stored. Default is "feat".
|
2186
2186
|
|
2187
2187
|
Returns
|
2188
2188
|
-------
|
@@ -2287,7 +2287,7 @@ class DGL:
|
|
2287
2287
|
dataset : DGLDataset
|
2288
2288
|
The input dataset
|
2289
2289
|
split : list , optional
|
2290
|
-
A list of length 3 containing the fraction to use for training, validation and test. If None, we will use [0.8, 0.1, 0.1].
|
2290
|
+
A list of length 3 containing the fraction to use for training, validation and test. If None, we will use [0.8, 0.1, 0.1]. Default is [0.8, 0.1, 0.1]
|
2291
2291
|
randomState : int or array_like , optional
|
2292
2292
|
Random seed used to initialize the pseudo-random number generator. Can be any integer between 0 and 2**32 - 1 inclusive, an array (or other sequence) of such integers, or None (the default). If seed is None, then RandomState will try to read data from /dev/urandom (or the Windows analogue) if available or seed from the clock otherwise.
|
2293
2293
|
|
@@ -2364,17 +2364,17 @@ class DGL:
|
|
2364
2364
|
Parameters
|
2365
2365
|
----------
|
2366
2366
|
amsgrad : bool , optional.
|
2367
|
-
amsgrad is an extension to the Adam version of gradient descent that attempts to improve the convergence properties of the algorithm, avoiding large abrupt changes in the learning rate for each input variable.
|
2367
|
+
amsgrad is an extension to the Adam version of gradient descent that attempts to improve the convergence properties of the algorithm, avoiding large abrupt changes in the learning rate for each input variable. Default is True.
|
2368
2368
|
betas : tuple , optional
|
2369
|
-
Betas are used as for smoothing the path to the convergence also providing some momentum to cross a local minima or saddle point.
|
2369
|
+
Betas are used as for smoothing the path to the convergence also providing some momentum to cross a local minima or saddle point. Default is (0.9, 0.999).
|
2370
2370
|
eps : float . optional.
|
2371
|
-
eps is a term added to the denominator to improve numerical stability.
|
2371
|
+
eps is a term added to the denominator to improve numerical stability. Default is 0.000001.
|
2372
2372
|
lr : float
|
2373
|
-
The learning rate (lr) defines the adjustment in the weights of our network with respect to the loss gradient descent.
|
2373
|
+
The learning rate (lr) defines the adjustment in the weights of our network with respect to the loss gradient descent. Default is 0.001.
|
2374
2374
|
maximize : float , optional
|
2375
|
-
maximize the params based on the objective, instead of minimizing.
|
2375
|
+
maximize the params based on the objective, instead of minimizing. Default is False.
|
2376
2376
|
weightDecay : float , optional
|
2377
|
-
weightDecay (L2 penalty) is a regularization technique applied to the weights of a neural network.
|
2377
|
+
weightDecay (L2 penalty) is a regularization technique applied to the weights of a neural network. Default is 0.0.
|
2378
2378
|
|
2379
2379
|
Returns
|
2380
2380
|
-------
|
@@ -2403,7 +2403,7 @@ class DGL:
|
|
2403
2403
|
model : Model
|
2404
2404
|
The input trained model.
|
2405
2405
|
nodeATTRKey : str , optional
|
2406
|
-
The key used for node attributes.
|
2406
|
+
The key used for node attributes. Default is "feat".
|
2407
2407
|
|
2408
2408
|
Returns
|
2409
2409
|
-------
|
@@ -2443,7 +2443,7 @@ class DGL:
|
|
2443
2443
|
model : Model
|
2444
2444
|
The input trained model.
|
2445
2445
|
nodeATTRKey : str , optional
|
2446
|
-
The key used for node attributes.
|
2446
|
+
The key used for node attributes. Default is "feat".
|
2447
2447
|
|
2448
2448
|
Returns
|
2449
2449
|
-------
|
@@ -2573,23 +2573,23 @@ class DGL:
|
|
2573
2573
|
labels : list
|
2574
2574
|
The labels to use for the data.
|
2575
2575
|
width : int , optional
|
2576
|
-
The desired width of the figure.
|
2576
|
+
The desired width of the figure. Default is 950.
|
2577
2577
|
height : int , optional
|
2578
|
-
The desired height of the figure.
|
2578
|
+
The desired height of the figure. Default is 500.
|
2579
2579
|
title : str , optional
|
2580
|
-
The chart title.
|
2580
|
+
The chart title. Default is "Training and Testing Results".
|
2581
2581
|
xTitle : str , optional
|
2582
|
-
The X-axis title.
|
2582
|
+
The X-axis title. Default is "Epochs".
|
2583
2583
|
xSpacing : float , optional
|
2584
|
-
The X-axis spacing.
|
2584
|
+
The X-axis spacing. Default is 1.0.
|
2585
2585
|
yTitle : str , optional
|
2586
|
-
The Y-axis title.
|
2586
|
+
The Y-axis title. Default is "Accuracy and Loss".
|
2587
2587
|
ySpacing : float , optional
|
2588
|
-
The Y-axis spacing.
|
2588
|
+
The Y-axis spacing. Default is 0.1.
|
2589
2589
|
useMarkers : bool , optional
|
2590
|
-
If set to True, markers will be displayed.
|
2590
|
+
If set to True, markers will be displayed. Default is False.
|
2591
2591
|
chartType : str , optional
|
2592
|
-
The desired type of chart. The options are "Line", "Bar", or "Scatter". It is case insensitive.
|
2592
|
+
The desired type of chart. The options are "Line", "Bar", or "Scatter". It is case insensitive. Default is "Line".
|
2593
2593
|
backgroundColor : str , optional
|
2594
2594
|
The desired background color. This can be any plotly color string and may be specified as:
|
2595
2595
|
- A hex string (e.g. '#ff0000')
|
@@ -2607,15 +2607,15 @@ class DGL:
|
|
2607
2607
|
- A named CSS color.
|
2608
2608
|
The default is 'lightgray'.
|
2609
2609
|
marginLeft : int , optional
|
2610
|
-
The desired left margin in pixels.
|
2610
|
+
The desired left margin in pixels. Default is 0.
|
2611
2611
|
marginRight : int , optional
|
2612
|
-
The desired right margin in pixels.
|
2612
|
+
The desired right margin in pixels. Default is 0.
|
2613
2613
|
marginTop : int , optional
|
2614
|
-
The desired top margin in pixels.
|
2614
|
+
The desired top margin in pixels. Default is 40.
|
2615
2615
|
marginBottom : int , optional
|
2616
|
-
The desired bottom margin in pixels.
|
2616
|
+
The desired bottom margin in pixels. Default is 0.
|
2617
2617
|
renderer : str , optional
|
2618
|
-
The desired plotly renderer.
|
2618
|
+
The desired plotly renderer. Default is "notebook".
|
2619
2619
|
|
2620
2620
|
Returns
|
2621
2621
|
-------
|
@@ -2737,7 +2737,7 @@ class DGL:
|
|
2737
2737
|
path : str
|
2738
2738
|
The file path at which to save the model.
|
2739
2739
|
overwrite : bool, optional
|
2740
|
-
If set to True, any existing file will be overwritten. Otherwise, it won't.
|
2740
|
+
If set to True, any existing file will be overwritten. Otherwise, it won't. Default is False.
|
2741
2741
|
|
2742
2742
|
Returns
|
2743
2743
|
-------
|
@@ -2863,7 +2863,7 @@ class DGL:
|
|
2863
2863
|
path : str
|
2864
2864
|
The input BIN file path.
|
2865
2865
|
graphLabelKey : str , optional
|
2866
|
-
The graph label key to use.
|
2866
|
+
The graph label key to use. Default is "label".
|
2867
2867
|
|
2868
2868
|
Returns
|
2869
2869
|
-------
|
@@ -2887,7 +2887,7 @@ class DGL:
|
|
2887
2887
|
data : dict
|
2888
2888
|
The input data. See Data(model)
|
2889
2889
|
overwrite : bool , optional
|
2890
|
-
If set to True, previous saved results files are overwritten. Otherwise, the new results are appended to the previously saved files.
|
2890
|
+
If set to True, previous saved results files are overwritten. Otherwise, the new results are appended to the previously saved files. Default is False.
|
2891
2891
|
|
2892
2892
|
Returns
|
2893
2893
|
-------
|
@@ -2955,7 +2955,7 @@ class DGL:
|
|
2955
2955
|
predicted : list
|
2956
2956
|
The input list of predicted values.
|
2957
2957
|
mantissa : int , optional
|
2958
|
-
The
|
2958
|
+
The number of decimal places to round the result to. Default is 6.
|
2959
2959
|
|
2960
2960
|
Returns
|
2961
2961
|
-------
|
@@ -2994,7 +2994,7 @@ class DGL:
|
|
2994
2994
|
predicted : list
|
2995
2995
|
The input list of predicted values.
|
2996
2996
|
mantissa : int , optional
|
2997
|
-
The
|
2997
|
+
The number of decimal places to round the result to. Default is 6.
|
2998
2998
|
|
2999
2999
|
Returns
|
3000
3000
|
-------
|
@@ -3038,7 +3038,7 @@ class DGL:
|
|
3038
3038
|
testingDataset : DGLDataset
|
3039
3039
|
The input testing dataset. If not specified, a portion of the trainingDataset will be used for testing according the to the split list as specified in the hyper-parameters.
|
3040
3040
|
overwrite : bool , optional
|
3041
|
-
If set to True, previous saved results files are overwritten. Otherwise, the new results are appended to the previously saved files.
|
3041
|
+
If set to True, previous saved results files are overwritten. Otherwise, the new results are appended to the previously saved files. Default is False.
|
3042
3042
|
|
3043
3043
|
Returns
|
3044
3044
|
-------
|
topologicpy/Dictionary.py
CHANGED
@@ -59,15 +59,15 @@ class Dictionary():
|
|
59
59
|
The type of subTopology on which to base the adjacency dictionary.
|
60
60
|
labelKey : str , optional
|
61
61
|
The returned subTopologies are labelled according to the dictionary values stored under this key.
|
62
|
-
If the labelKey does not exist, it will be created and the subTopologies are labelled numerically and stored in the subTopologies' dictionary under this key.
|
62
|
+
If the labelKey does not exist, it will be created and the subTopologies are labelled numerically and stored in the subTopologies' dictionary under this key. Default is None.
|
63
63
|
weightKey : str , optional
|
64
|
-
If set, the sharedTopologies' dictionaries will be searched for this key to set their weight. If the key is set to "Area" or "Length" (case insensitive), the area of shared faces or the length of the shared edges will be used as its weight. If set to None, a weight of 1 will be used.
|
64
|
+
If set, the sharedTopologies' dictionaries will be searched for this key to set their weight. If the key is set to "Area" or "Length" (case insensitive), the area of shared faces or the length of the shared edges will be used as its weight. If set to None, a weight of 1 will be used. Default is None.
|
65
65
|
includeWeights : bool , optional
|
66
|
-
If set to True, edge weights are included. Otherwise, they are not.
|
66
|
+
If set to True, edge weights are included. Otherwise, they are not. Default is False.
|
67
67
|
mantissa : int , optional
|
68
|
-
The
|
68
|
+
The number of decimal places to round the result to. Default is 6.
|
69
69
|
silent : bool , optional
|
70
|
-
If set to True, error and warning messages are suppressed.
|
70
|
+
If set to True, error and warning messages are suppressed. Default is False.
|
71
71
|
|
72
72
|
Returns
|
73
73
|
-------
|
@@ -178,7 +178,7 @@ class Dictionary():
|
|
178
178
|
value : int, float, str, or list
|
179
179
|
A value corresponding to the input key. A value can be an integer, a float, a string, or a list.
|
180
180
|
silent : bool , optional
|
181
|
-
If set to True, error and warning messages are suppressed.
|
181
|
+
If set to True, error and warning messages are suppressed. Default is False.
|
182
182
|
|
183
183
|
Returns
|
184
184
|
-------
|
@@ -249,7 +249,7 @@ class Dictionary():
|
|
249
249
|
values : list
|
250
250
|
A list of values corresponding to the list of keys. Values can be integers, floats, strings, or lists
|
251
251
|
silent : bool , optional
|
252
|
-
If set to True, error and warning messages are suppressed.
|
252
|
+
If set to True, error and warning messages are suppressed. Default is False.
|
253
253
|
|
254
254
|
Returns
|
255
255
|
-------
|
@@ -290,7 +290,7 @@ class Dictionary():
|
|
290
290
|
dictionaries : list or comma separated dictionaries
|
291
291
|
The input list of dictionaries to be merged.
|
292
292
|
silent : bool , optional
|
293
|
-
If set to True, error and warning messages are suppressed.
|
293
|
+
If set to True, error and warning messages are suppressed. Default is False.
|
294
294
|
|
295
295
|
Returns
|
296
296
|
-------
|
@@ -458,7 +458,7 @@ class Dictionary():
|
|
458
458
|
pythonDictionary : dict
|
459
459
|
The input python dictionary.
|
460
460
|
silent : bool , optional
|
461
|
-
If set to True, error and warning messages are suppressed.
|
461
|
+
If set to True, error and warning messages are suppressed. Default is False.
|
462
462
|
|
463
463
|
Returns
|
464
464
|
-------
|
@@ -513,11 +513,11 @@ class Dictionary():
|
|
513
513
|
dictionaries : list
|
514
514
|
The input list of dictionaries to be filtered.
|
515
515
|
searchType : str , optional
|
516
|
-
The type of search query to conduct in the topology's dictionary. This can be one of "any", "equal to", "contains", "starts with", "ends with", "not equal to", "does not contain".
|
516
|
+
The type of search query to conduct in the topology's dictionary. This can be one of "any", "equal to", "contains", "starts with", "ends with", "not equal to", "does not contain". Default is "any".
|
517
517
|
key : str , optional
|
518
|
-
The dictionary key to search within.
|
518
|
+
The dictionary key to search within. Default is None which means it will filter by topology type only.
|
519
519
|
value : str , optional
|
520
|
-
The value to search for at the specified key.
|
520
|
+
The value to search for at the specified key. Default is None which means it will filter by topology type only.
|
521
521
|
|
522
522
|
Returns
|
523
523
|
-------
|
@@ -602,7 +602,7 @@ class Dictionary():
|
|
602
602
|
dictionary : topologic_core.Dictionary or dict
|
603
603
|
The input dictionary.
|
604
604
|
silent : bool , optional
|
605
|
-
If set to True, error and warning messages are suppressed.
|
605
|
+
If set to True, error and warning messages are suppressed. Default is False.
|
606
606
|
|
607
607
|
Returns
|
608
608
|
-------
|
@@ -657,7 +657,7 @@ class Dictionary():
|
|
657
657
|
dictionary : topologic_core.Dictionary
|
658
658
|
The input dictionary.
|
659
659
|
silent : bool , optional
|
660
|
-
If set to True, error and warning messages are suppressed.
|
660
|
+
If set to True, error and warning messages are suppressed. Default is False.
|
661
661
|
|
662
662
|
Returns
|
663
663
|
-------
|
@@ -710,7 +710,7 @@ class Dictionary():
|
|
710
710
|
key : string
|
711
711
|
The input key.
|
712
712
|
silent : bool , optional
|
713
|
-
If set to True, error and warning messages are suppressed.
|
713
|
+
If set to True, error and warning messages are suppressed. Default is False.
|
714
714
|
|
715
715
|
Returns
|
716
716
|
-------
|
@@ -769,7 +769,7 @@ class Dictionary():
|
|
769
769
|
value : int , float , string, or list
|
770
770
|
The value associated with the key.
|
771
771
|
silent : bool , optional
|
772
|
-
If set to True, error and warning messages are suppressed.
|
772
|
+
If set to True, error and warning messages are suppressed. Default is False.
|
773
773
|
|
774
774
|
Returns
|
775
775
|
-------
|
@@ -827,7 +827,7 @@ class Dictionary():
|
|
827
827
|
values : list
|
828
828
|
A list of values corresponding to the list of keys. Values can be integers, floats, strings, or lists
|
829
829
|
silent : bool , optional
|
830
|
-
If set to True, error and warning messages are suppressed.
|
830
|
+
If set to True, error and warning messages are suppressed. Default is False.
|
831
831
|
|
832
832
|
Returns
|
833
833
|
-------
|
@@ -942,9 +942,9 @@ class Dictionary():
|
|
942
942
|
key : string
|
943
943
|
The input key.
|
944
944
|
defaultValue : any , optional
|
945
|
-
The default value to return if the key or value are not found.
|
945
|
+
The default value to return if the key or value are not found. Default is None.
|
946
946
|
silent : bool , optional
|
947
|
-
If set to True, error and warning messages are suppressed.
|
947
|
+
If set to True, error and warning messages are suppressed. Default is False.
|
948
948
|
|
949
949
|
Returns
|
950
950
|
-------
|
@@ -979,7 +979,7 @@ class Dictionary():
|
|
979
979
|
dictionary : topologic_core.Dictionary or dict
|
980
980
|
The input dictionary.
|
981
981
|
silent : bool , optional
|
982
|
-
If set to True, error and warning messages are suppressed.
|
982
|
+
If set to True, error and warning messages are suppressed. Default is False.
|
983
983
|
|
984
984
|
Returns
|
985
985
|
-------
|
@@ -1025,9 +1025,9 @@ class Dictionary():
|
|
1025
1025
|
keys : list
|
1026
1026
|
The input list of keys.
|
1027
1027
|
defaultValue : any , optional
|
1028
|
-
The default value to return if the key or value are not found.
|
1028
|
+
The default value to return if the key or value are not found. Default is None.
|
1029
1029
|
silent : bool , optional
|
1030
|
-
If set to True, error and warning messages are suppressed.
|
1030
|
+
If set to True, error and warning messages are suppressed. Default is False.
|
1031
1031
|
|
1032
1032
|
Returns
|
1033
1033
|
-------
|