another one

This commit is contained in:
Erik Frojdh
2020-02-13 16:57:12 +01:00
parent 990f32397b
commit 938d90bfb8
20 changed files with 19 additions and 15 deletions

9
python/slsdet/lookup.py Normal file
View File

@ -0,0 +1,9 @@
from .detector import Detector
def view(name):
names = find(name)
for n in names:
print(n)
def find(name):
return [n for n in dir(Detector) if name in n]