import class from module python code example
Example 1: how to import all functions from another python file
from scripts import *
Example 2: module import class python
class myClass:
def __init__(self,val):
self.val=val
def getVal(self):
return self.val