Skip to content

Instantly share code, notes, and snippets.

@dosumis
Created July 14, 2020 12:37
Show Gist options
  • Save dosumis/7ecf8626bf88efb43134b59953341dc2 to your computer and use it in GitHub Desktop.
Save dosumis/7ecf8626bf88efb43134b59953341dc2 to your computer and use it in GitHub Desktop.
from vfb_connect.cross_server_tools import VfbConnect
vc = VfbConnect()
out = set()
for x in vc.oc.lookup.keys():
m = re.findall('[^A-Za-z0-9 ]', x)
if m:
out.update(m)
print(out)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment