-
BRONES Romain authored
* For now, import pythontools only give access to core features. This will change in the future.
BRONES Romain authored* For now, import pythontools only give access to core features. This will change in the future.
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
pyprompt.ipy 371 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 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")