3

datetime.strptimeを使用して、2つの文字列から1つの日時を取得しようとしています。

時間はとても簡単なので(例:午後8時53分)、次のようなことができます。

theTime = datetime.strptime(givenTime, "%I:%M%p")

ただし、文字列には単なる日付ではなく、に似た形式のリンクがありますhttp://site.com/?year=2011&month=10&day=5&hour=11。私は次のようなことができることを知っています:

theDate = datetime.strptime(givenURL, "http://site.com/?year=%Y&month=%m&day=%d&hour=%H")

しかし、他の場所で取得されているため、リンクからその時間を取得したくありません。最後の変数の柔軟なスペースとして機能するダミーシンボル(%xなど)を配置する方法はありますか?

結局、私は次のような単一の行を持つことを想定しています。

theDateTime = datetime.strptime(givenURL + givenTime, ""http://site.com/?year=%Y&month=%m&day=%d&hour=%x%I:%M%p")

(ただし、明らかに、%xは使用されません)。何か案は?

4

3 に答える 3

2

URLから時間を単純にスキップしたい場合は、たとえば次のように分割を使用できると考えてください。

givenURL = 'http://site.com/?year=2011&month=10&day=5&hour=11'
pattern = "http://site.com/?year=%Y&month=%m&day=%d"
theDate = datetime.strptime(givenURL.split('&hour=')[0], pattern)

だから、それがあなたを正しく理解したかどうかはわかりませんが、:

givenURL = 'http://site.com/?year=2011&month=10&day=5&hour=11'
datePattern = "http://site.com/?year=%Y&month=%m&day=%d"
timePattern = "&time=%I:%M%p"

theDateTime = datetime.strptime(givenURL.split('&hour=')[0] + '&time=' givenTime, datePattern + timePattern)
于 2011-08-15T20:20:16.383 に答える
1
import datetime
import re

givenURL  = 'http://site.com/?year=2011&month=10&day=5&hour=11'
givenTime = '08:53PM'

print ' givenURL == ' + givenURL
print 'givenTime == ' + givenTime

regx = re.compile('year=(\d\d\d\d)&month=(\d\d?)&day=(\d\d?)&hour=\d\d?')
print '\nmap(int,regx.search(givenURL).groups()) ==',map(int,regx.search(givenURL).groups())

theDate = datetime.date(*map(int,regx.search(givenURL).groups()))
theTime = datetime.datetime.strptime(givenTime, "%I:%M%p")

print '\ntheDate ==',theDate,type(theDate)
print '\ntheTime ==',theTime,type(theTime)


theDateTime = theTime.replace(theDate.year,theDate.month,theDate.day)
print '\ntheDateTime ==',theDateTime,type(theDateTime)

結果

 givenURL == http://site.com/?year=2011&month=10&day=5&hour=11
givenTime == 08:53PM

map(int,regx.search(givenURL).groups()) == [2011, 10, 5]

theDate == 2011-10-05 <type 'datetime.date'>

theTime == 1900-01-01 20:53:00 <type 'datetime.datetime'>

theDateTime == 2011-10-05 20:53:00 <type 'datetime.datetime'>

編集1

strptime()が遅いので、コードを改善してそれを排除しました

from datetime import datetime
import re
from time import clock


n = 10000

givenURL  = 'http://site.com/?year=2011&month=10&day=5&hour=11'
givenTime = '08:53AM'

# eyquem
regx = re.compile('year=(\d\d\d\d)&month=(\d\d?)&day=(\d\d?)&hour=\d\d? (\d\d?):(\d\d?)(PM|pm)?')
t0 = clock()
for i in xrange(n):
    given = givenURL + ' ' + givenTime
    mat = regx.search(given)
    grps = map(int,mat.group(1,2,3,4,5))
    if mat.group(6):
        grps[3] += 12 # when it is PM/pm, the hour must be augmented with 12
    theDateTime1 = datetime(*grps)
print clock()-t0,"seconds   eyquem's code"
print theDateTime1


print

# Artsiom Rudzenka
dateandtimePattern = "http://site.com/?year=%Y&month=%m&day=%d&time=%I:%M%p"
t0 = clock()
for i in xrange(n):
    theDateTime2 = datetime.strptime(givenURL.split('&hour=')[0] + '&time=' + givenTime, dateandtimePattern)
print clock()-t0,"seconds   Artsiom's code"
print theDateTime2

print
print theDateTime1 == theDateTime2

結果

0.460598763251 seconds   eyquem's code
2011-10-05 08:53:00

2.10386180366 seconds   Artsiom's code
2011-10-05 08:53:00

True

私のコードは4.5倍高速です。実行するそのような変換がたくさんある場合、それは興味深いかもしれません

于 2011-08-15T21:18:30.843 に答える
0

フォーマット文字列でそれを行う方法はありません。ただし、時間が問題にならない場合は、最初の例のようにURLから取得してから、を呼び出すことができますtheDateTime.replace(hour=hour_from_a_different_source)

そうすれば、追加の解析を行う必要はありません。

于 2011-08-15T20:19:30.620 に答える