freeze_server32¤
Create a 32-bit server for inter-process communication.
Example:
from msl.loadlib import freeze_server32
freeze_server32.main(imports="numpy")
Note
There is also a command-line utility to create a new server.
main ¤
main(
*,
data=None,
dest=None,
imports=None,
keep_spec=False,
keep_tk=False,
skip_32bit_check=False,
spec=None,
)
Create a frozen server.
This function should be run using a 32-bit Python interpreter with PyInstaller installed.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
data
|
str | Iterable[str] | None
|
The path(s) to additional data files, or directories containing
data files, to be added to the frozen server. Each value should be in
the form |
None
|
dest
|
str | None
|
The destination directory to save the server to. Default is the current working directory. |
None
|
imports
|
str | Iterable[str] | None
|
The names of additional modules and packages that must be importable on the server. |
None
|
keep_spec
|
bool
|
By default, the |
False
|
keep_tk
|
bool
|
By default, the tkinter package is excluded from the
server. Setting this value to |
False
|
skip_32bit_check
|
bool
|
In the rare situation that you want to create a
frozen 64-bit server, you can set this value to |
False
|
spec
|
str | None
|
The path to a spec file to use to create the frozen server. Attention If a value for |
None
|
Source code in src/msl/loadlib/freeze_server32.py
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 |
|