Exemplo n.º 1
0
    def __init__(self, *args, **kwargs):

        # Hoster list
        self.hoster = []
        # Timestamp
        self.ts = 0

        Account.__init__(self, *args, **kwargs)
Exemplo n.º 2
0
    def __init__(self, *args, **kwargs):

        # Hoster list
        self.hoster = []
        # Timestamp
        self.ts = 0

        Account.__init__(self, *args, **kwargs)
 def __init__(self,init_balance=0,interest_rate=0.16):
     if(init_balance >=0) and (interest_rate >=0):
         Account.__init__(self,init_balance)
         self.interest_rate=interest_rate
         self.tipe= "Saving account"
     else:
         print("Error al crear la cuenta, verifica los valores indicados")
         return
Exemplo n.º 4
0
 def __init__(self, username, password):
     Account.__init__(self, username, password)
     self.__userID = self.generateUserID()
     self.__name = ""
     self.__email = ""
     self._rights = False
     self.__cart = []
     self.__points = 0
     self.__myRewards = []
Exemplo n.º 5
0
 def __init__(self, account):
     Account.__init__(self, account)
     self.pos_obj = {}
     for prod in product_dict:
         self.pos_obj[prod] = {"q": 0, "price": 0, "win": 0, "lose": 0}
     self.pos = {}
     for prod in product_dict:
         self.pos[prod] = {"q": 0}
     self.check_all_position()
     self.margin_dict = {
         "HSIZ8": 110000,
         "HSIF9": 110000,
         "YMH9": 45000,
         "SSIZ8": 45000
     }
Exemplo n.º 6
0
 def __init__(self, deposit, withdrawal, balance):
     Account.__init__(self, balance)
     self.deposit = deposit
     self.withdrawal = withdrawal
     self.balance = balance
Exemplo n.º 7
0
 def __init__(self, firstname, lastname, account, balance):
     self.__firstname = firstname
     self.__lastname = lastname
     self.__account = account
     self.__balance = balance
     Account.__init__(self, self.__balance)
Exemplo n.º 8
0
 def __init__(self, name, balance, fac):
     Account.__init__(self, name, balance)
     self.fac = fac
Exemplo n.º 9
0
 def __init__(self, name, acno, bal, active, interest):
     Account.__init__(self, name, acno, bal, active)
     self.interest = interest
Exemplo n.º 10
0
 def __init__(self, username, password):
     Account.__init__(self, username, password)
     self.__userID = self.generateUserID()
     self.__name = ""
     self.__email = ""
     self._rights = True
Exemplo n.º 11
0
 def __init__(self, account):
     Account.__init__(self, account)
     self.latest_trade_time = datetime.datetime.now()
 def __init__(self, name, amount, column):
     Account.__init__(self, name, amount)
     self.column = column
Exemplo n.º 13
0
 def __init__(self, name, acno, bal, active, fees):
     Account.__init__(self, name, acno, bal, active)
     self.fees = fees
Exemplo n.º 14
0
 def __init__(self, tinnumber, accname, accno, bankname):
     self.tinnumber = tinnumber
     Account.__init__(self, accname, accno, bankname)
Exemplo n.º 15
0
 def __init__(self, account):
     Account.__init__(self, account)