示例#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)
示例#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)
示例#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)
示例#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)
示例#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)
示例#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)