cillow.Client
Cillow client interface.
Examples:
>>> import cillow
>>>
>>> client = cillow.Client.new() # Connect as a new client
>>> # OR
>>> client = cillow.Client(id="<uid>") # Connect as an existing client
>>>
>>> client.current_environment # Get environment of selected interpreter
'$system'
>>> client.all_environments # Get environments of all running interpreter processes
['$system']
>>> client.run_code("""
... from PIL import Image, ImageDraw
...
... img = Image.new('RGB', (400, 300), 'white')
...
... draw = ImageDraw.Draw(img)
... draw.rectangle([50, 50, 150, 150], fill='blue')
... draw.ellipse([200, 50, 300, 150], fill='red')
... draw.line([50, 200, 350, 200], fill='green', width=5)
...
... img.show()
... """)
>>> # Switch to interpreter process with given environment
>>> client.switch_interpreter("/path/to/python/env")
>>> # Stop interpreter process running in given environment
>>> client.delete_interpreter("/path/to/python/env")
>>> # Install requirements in the current selected environment
>>> client.install_requirements("pkg-name1", "pkg-name2")
>>> # Run commands
>>> client.run_command("echo", "Hello World")
>>> # Set environment variables
>>> client.set_environment_variables({"VAR1": "value1", "VAR2": "value2"})
Source code in cillow/client.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 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 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 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 |
|
all_environments
property
¶
All running interpreter's python environments.
current_environment
property
¶
Current interpreter's python environment.
default_environment
property
¶
Default Python environment.
id
property
¶
Client's identifier.
request_timeout
property
writable
¶
Timeout for request in milliseconds.
delete_interpreter
¶
Stop the specified python environment's interpreter process.
Switches to default python environment's interpreter process.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
environment
|
PythonEnvironment | str
|
The Python environment to use |
required |
Source code in cillow/client.py
disconnect
¶
Close the connection to the server and remove the client.
Don't use this if you want to reconnect to the server later.
Source code in cillow/client.py
install_requirements
¶
Install the given requirements in the current Python environment.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
requirements
|
str
|
The requirements to install |
()
|
Source code in cillow/client.py
new
classmethod
¶
Connect to the server as a new client.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
host
|
str | None
|
The host to connect to (defaults to localhost) |
None
|
port
|
int | None
|
The port to connect to (defaults to 5556) |
None
|
environment
|
PythonEnvironment | str
|
The default python environment to use (defaults to "$system") |
'$system'
|
Source code in cillow/client.py
run_code
¶
Run the code in the current selected interpreter.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
code
|
str
|
The code to run |
required |
on_stream
|
Callable[[Stream | ByteStream], None] | None
|
The callback to capture streaming output. |
None
|
Returns:
Type | Description |
---|---|
Execution
|
The execution result containing the result, streams, byte streams and exception. |
Source code in cillow/client.py
run_command
¶
Run the given command.
⚠️ WARNING: This class allows execution of system commands and should be used with EXTREME CAUTION.
- Never run commands with user-supplied or untrusted input
- Always validate and sanitize any command arguments
- Be aware of potential security risks, especially with privilege escalation
Parameters:
Name | Type | Description | Default |
---|---|---|---|
cmd
|
str
|
The command to run |
()
|
on_stream
|
Callable[[Stream], None] | None
|
The callback to capture streaming output. |
None
|
Source code in cillow/client.py
set_environment_variables
¶
Set environment variables for the current interpreter.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
environment_variables
|
dict[str, str]
|
The environment variables to set |
required |
Source code in cillow/client.py
switch_interpreter
¶
Switch to specified python environment's interpreter process.
Creates a new interpreter process if it is not already running.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
environment
|
PythonEnvironment | str
|
The Python environment to use |
required |