-
System User authoredSystem User authored
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
pyprompt.ipy 382 B
# IPython prompt initialization for operation
# Turn automagic on
# This gives the possibility to use magic command without '%'.
# i.e. cd, pwd, ...
%automagic on
# Import usefull packages
import PyTango as tango
import numpy as np
import OpUtils as OU
print("Imported: tango, np, OU")
# Create a database object
DB = tango.Database()
print("Object DB created: tango database")