The general.py module#
Summary#
Generic enumeration. |
|
Generic enumeration. |
|
Generic enumeration. |
|
Generic enumeration. |
Convert a net dictionary to a Python dictionary. |
|
Convert a Python tuple into a .NET tuple. |
|
Convert a Python dictionary to a .NET dictionary. |
|
Convert a Python list to a Net list. |
|
Convert a Net list to a Python list. |
|
Description#
This module contains EDB general methods and related methods.
Module detail#
- general.convert_netdict_to_pydict(dict_in)#
Convert a net dictionary to a Python dictionary.
- general.convert_pytuple_to_nettuple(_tuple)#
Convert a Python tuple into a .NET tuple. Parameters ———- tuple : Python tuple
- Returns:
NETtuple.
- general.convert_pydict_to_netdict(input_dict)#
Convert a Python dictionary to a .NET dictionary.
- general.convert_py_list_to_net_list(pylist, list_type=None)#
Convert a Python list to a Net list.
- general.convert_net_list_to_py_list(netlist)#
Convert a Net list to a Python list.
- general.pascal_to_snake(s)#
- general.snake_to_pascal(s)#
- general.logger#