Browse Source

[enh] add helper to know if an isp does a technology

Laurent Peuch 9 years ago
parent
commit
2904f2e29d
1 changed files with 7 additions and 0 deletions
  1. 7 0
      ffdnispdb/models.py

+ 7 - 0
ffdnispdb/models.py

@@ -152,6 +152,13 @@ class ISP(db.Model):
                 pass
         return d
 
+    def has_technology(self, technology):
+        for i in self.json["coveredAreas"]:
+            if technology in i["technologies"]:
+                return True
+
+        return False
+
     def __repr__(self):
         return u'<ISP %r>' % (self.shortname if self.shortname else self.name,)