Cli
respo.cli
bad(text)
Styles text to yellow.
Source code in respo/cli.py
89 90 91 |
|
create(file, no_python_file)
Parses FILENAME with declared respo resource policies.
Creates pickled model representation by default in .respo_cache folder and python file with generated model in respo_model.py to improve typing support for end user.
Source code in respo/cli.py
99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 |
|
generate_respo_model_file(respo_model)
Generates python file with class RespoModel.
Generated file contains class definition that inheritates from RespoModel, but with additional typing annotations. It is saved in config.RESPO_FILE_NAME_RESPO_MODEL.
Source code in respo/cli.py
30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 |
|
good(text)
Styles text to green.
Source code in respo/cli.py
84 85 86 |
|
save_respo_model(model)
Dumps respo model into bin and yml format files.
Pickle file is generated and saved to path specified in settings. Path may be overwritten using environment variables.
Source code in respo/cli.py
16 17 18 19 20 21 22 23 24 25 26 27 |
|