From 6f244acdd6cd3770bc4df7f94156cbe57157ff79 Mon Sep 17 00:00:00 2001 From: Lukas Mehl Date: Sat, 19 Oct 2019 15:27:38 +0200 Subject: [PATCH] remove early break --- spider.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/spider.py b/spider.py index 9768ad1..c650f6c 100644 --- a/spider.py +++ b/spider.py @@ -166,8 +166,6 @@ def main(): key = "//".join([typ, level, land, kreis, stadt]) result.update({key: [typ, level, land, kreis, stadt, fbname, fbLikes, fbVerified, twtname, twtFollower, twtVerified, instaName, instaFollower, instaVerified]}) idx += 1 - if idx == 50: - break with open("docs/result.json", "w") as f: json.dump(result, f)