Exemplo n.º 1
0
 def __init__(self):
     super().__init__()
     self.name = 'telia'
     self.type = 'transit'
     self.email_esc = '*****@*****.**'
     if not Pro.query.filter_by(name=self.name, type=self.type).first():
         p = Pro(name=self.name, type=self.type, email_esc=self.email_esc)
         self.add_and_commit(p)
Exemplo n.º 2
0
 def __init__(self):
     super().__init__()
     self.name = 'gtt'
     self.type = 'transit'
     self.email_esc = '*****@*****.**'
     if not Pro.query.filter_by(name=self.name, type=self.type).first():
         p = Pro(name=self.name, type=self.type, email_esc=self.email_esc)
         self.add_and_commit(p)
Exemplo n.º 3
0
 def __init__(self):
     super().__init__()
     self.name = 'zayo'
     self.type = 'transit'
     self.email_esc = '*****@*****.**'
     if not Pro.query.filter_by(name=self.name, type=self.type).first():
         p = Pro(name=self.name, type=self.type, email_esc=self.email_esc)
         self.add_and_commit(p)
Exemplo n.º 4
0
 def __init__(self):
     super().__init__()
     self.name = 'packetfabric'
     self.type = 'transit'
     self.email_esc = '*****@*****.**'
     if not Pro.query.filter_by(name=self.name, type=self.type).first():
         p = Pro(name=self.name, type=self.type, email_esc=self.email_esc)
         self.add_and_commit(p)
Exemplo n.º 5
0
 def __init__(self):
     super().__init__()
     self.name = 'telstra'
     self.type = 'transit'
     self.email_esc = '*****@*****.**'
     if not Pro.query.filter_by(name=self.name, type=self.type).first():
         p = Pro(name=self.name, type=self.type, email_esc=self.email_esc)
         self.add_and_commit(p)
Exemplo n.º 6
0
 def __init__(self):
     super().__init__()
     self.name = 'eunetworks'
     self.type = 'transit'
     self.email_esc = 'fillmein'
     if not Pro.query.filter_by(name=self.name, type=self.type).first():
         p = Pro(name=self.name, type=self.type, email_esc=self.email_esc)
         self.add_and_commit(p)