From 4ddd3aa3768a64d35d7c5fc340d9abfb08ea0f05 Mon Sep 17 00:00:00 2001 From: Joshua Widmann Date: Sat, 17 Jan 2015 13:58:38 +0100 Subject: [PATCH] =?UTF-8?q?swapped=20'=E2=80=A6'=20with=20'...'=20and=20re?= =?UTF-8?q?moved=20sqlite3=20import.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- get_incidents.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/get_incidents.py b/get_incidents.py index 8960736..7df298c 100644 --- a/get_incidents.py +++ b/get_incidents.py @@ -2,7 +2,6 @@ # Reachout Berlin homepage, checks if they're already in the database and inserts # them if needed. -import sqlite3 import hashlib import time from models import * @@ -14,7 +13,7 @@ encoding = 'UTF-8' current_milli_time = lambda: int(round(time.time() * 1000)) # First crawl through the whole index and get all articles we can find -print('Start crawling…') +print('Start crawling...') start_time = current_milli_time() scraper = Scraper() articles = scraper.scrape()