|
|
|
|
|
by redsky880
442 days ago
|
|
Hmmm this seems bad That code is bad for several reasons including not catching+handling exceptions (and possibly retrying), and accessing the JSON properties w/o get() The overhead of re-installing stuff and setting up a header seem very unnecessary to run a simple script If this is about sending some Python for somebody else to run easily - the recipient should always check the code. You should never run arbitrary code. For example, there have been hacks performed using YAML loader (crypto exchange). For dependencies, use the standard pyproject.toml |
|