From f0332c2b56adc70a7fe33cf3e630442d0f4593e6 Mon Sep 17 00:00:00 2001 From: minoplhy Date: Thu, 5 Aug 2021 20:35:22 +0700 Subject: [PATCH] Remove 'Out Of Scope' code --- crawler.py | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/crawler.py b/crawler.py index b2d47e7..ec7c755 100644 --- a/crawler.py +++ b/crawler.py @@ -85,10 +85,4 @@ def sort(incoming): lines = sorted(f.readlines()) with open(incoming, 'w') as f: for line in lines: - f.write(line) - -if __name__ == "__main__": - download_filters('https://filters.kylz.nl/RPZ/someonewhocares/rpz.txt','test.txt') - filtering('test.txt') - filteringcon('test.txt') - killingdup('test.txt') \ No newline at end of file + f.write(line) \ No newline at end of file