本文整理匯總了Python中Helper.Helper.formatDateStringIntoCleanedString方法的典型用法代碼示例。如果您正苦於以下問題:Python Helper.formatDateStringIntoCleanedString方法的具體用法?Python Helper.formatDateStringIntoCleanedString怎麽用?Python Helper.formatDateStringIntoCleanedString使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Helper.Helper
的用法示例。
在下文中一共展示了Helper.formatDateStringIntoCleanedString方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: readFile
# 需要導入模塊: from Helper import Helper [as 別名]
# 或者: from Helper.Helper import formatDateStringIntoCleanedString [as 別名]
def readFile(self, url):
try:
f = open(url, 'r')
except:
print('File not found')
newPath = input('Enter new path > ');
return self.readFile(newPath) #TODO: this doesn't work for entirely unknown reasons
newdate = re.compile('\s*([0-9]{1,2}-[0-9]{1,2}-[0-9]{2})\s*')
currentDateStr = None
currentDateObj = None
numWords = 0
namesFound = set()
totalWordNum = 0
currentDayEntry = '' #holds all the lines for the current day, so we can compute a hash of the day later on
line = f.readline()
while (line != ''):
if self.prefs.GUESS_NAMES:
self.guessNames(line)
#check a line to see if it's a date, therefore a new day
dateFound = newdate.match(line)
if dateFound != None: #it's a new date, so wrapup the previous date and set up to move onto the next one
if namesFound != None:
self.addRelatedNames(namesFound)
namesFound = set()
self.dayEntryHashTable[currentDateObj] = hashlib.md5(currentDayEntry.encode()) #TODO: deal with first date
if numWords > 0:
self.wordCountOfEntriesDict[currentDateObj] = numWords #should be here, since we want it triggered at the end
totalWordNum += numWords
numWords = 0
currentDateStr = dateFound.group(0)
currentDateStr = Helper.formatDateStringIntoCleanedString(currentDateStr)
currentDateObj = Helper.makeDateObject(currentDateStr)
if currentDateObj > self.mostRecentDate: #found a higher date than what we've seen so far
self.mostRecentDate = currentDateObj
if currentDateObj < self.firstDate: #found a lower date than what we have now
self.firstDate = currentDateObj
line = line[len(currentDateStr):] #remove date from line, so it's not a word
if currentDateStr != None:
(wordsFound, namesFoundThisLine) = self.addLine(line, currentDateObj)
for name in namesFoundThisLine:
namesFound.add(name)
numWords += wordsFound
line = f.readline()
currentDayEntry += line #add line to the day's entry
#need to capture the last date for the entry length
self.wordCountOfEntriesDict[currentDateObj] = numWords
self.totalNumberOfWords = totalWordNum + numWords #need to get words from last line
f.close()