Kaynağa Gözat

Replace the datetime.strptime with a workaround for python 2.4

master
duncan.parkes 17 yıl önce
ebeveyn
işleme
2e5ab87650
2 değiştirilmiş dosya ile 9 ekleme ve 2 silme
  1. +8
    -1
      python_scrapers/AtriumePlanning.py
  2. +1
    -1
      python_scrapers/RutlandLike.py

+ 8
- 1
python_scrapers/AtriumePlanning.py Dosyayı Görüntüle

@@ -68,7 +68,14 @@ class AtriumePlanningParser:
if td.string.strip() == "Date Registered":
# We are starting a new App
self._current_application = PlanningApplication()
self._current_application.date_received = datetime.datetime.strptime(td.findNext("td").string, "%d-%m-%Y")

#
day, month, year = [int(x) for x in td.findNext("td").string.split("-")]
self._current_application.date_received = datetime.date(year, month, day)
# FIXME - when python on haggis is a bit newer,
#we can do the following, which is neater
#(and get rid of the import of time).
#self._current_application.date_received = datetime.datetime.strptime(td.findNext("td").string, "%d-%m-%Y")
elif td.string.strip() == "Application Number":
self._current_application.council_reference = td.findNext("td").string
elif td.string.strip() == "Location":


+ 1
- 1
python_scrapers/RutlandLike.py Dosyayı Görüntüle

@@ -2,7 +2,7 @@ import urllib2
import urllib
import urlparse

import datetime
import datetime, time
#import re

from BeautifulSoup import BeautifulSoup


Yükleniyor…
İptal
Kaydet