Replies: 1 comment 1 reply
-
import sys
items = [item for item in sys.modules.keys() if item.startswith('pylero')]
# just fyi
print(items)
for item in items:
del(sys.modules[item]) |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
LGoraPOL
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have two servers from where I want get data.
I try the following:
But what I get is that the project2 seems to use (inherit) the connection from project1.
Is it possible to reset the connection completelty still in the same code?
Beta Was this translation helpful? Give feedback.
All reactions