__init__.py |
|
330 |
constant.py |
A singleton class to store all constants. |
935 |
notebook-sections |
|
|
perftestetl.py |
Controller class for the PerftestETL. |
6014 |
perftestnotebook.py |
Controller class for PerftestNotebook. |
2911 |
template_upload_file.html |
|
1449 |
transformer.py |
Abstract class for data transformers. |
7304 |
transforms |
|
|
utilities.py |
Converts a dictionary with nested entries like this
{
"dict1": {
"dict2": {
"key1": value1,
"key2": value2,
...
},
...
},
...
"dict3": {
"key3": value3,
"key4": value4,
...
}
...
}
to a "flattened" dictionary like this that has no nested entries:
{
"dict1.dict2.key1": value1,
"dict1.dict2.key2": value2,
...
"dict3.key3": value3,
"dict3.key4": value4,
...
}
:param Iterable data : json data.
:param tuple parent_dir: json fields.
:return dict: {subtest: value}
|
1760 |