0

私は現在、(Web サイトから取得した) XML ファイルから各ユーザーのデータを出力するコードを持っています。XML は、より多くのユーザーが 1 日を通して対話するにつれて更新されます。現在、コードをループして、このデータを 5 分ごとにダウンロードしています。

コードが実行されるたびに、ユーザーとその統計のリストが生成されます。最初の 5 分間はユーザーを出力します: a、b、c

2 番目の 5 分でユーザーが出力されます: a、b、c、d、e

3 番目の 5 分間はユーザーを出力します: a、b、c、d、e、f、g

最初の 5 分を印刷するためにコードが必要なもの: a、b、c 2 番目の 5 分: d、e 3 番目の 5 分: f、g

一部のユーザーがすでに使用されていることを認識する方法。各ユーザーには、一致する可能性があると思われる一意のユーザー ID がありますか?

役立つ場合に備えて、コードの例を同封します。

import mechanize
import urllib
import json
import re
import random
import datetime
from sched import scheduler
from time import time, sleep

######Code to loop the script and set up scheduling time

s = scheduler(time, sleep)
random.seed()

def run_periodically(start, end, interval, func):
    event_time = start
    while event_time < end:
        s.enterabs(event_time, 0, func, ())
        event_time += interval + random.randrange(-5, 45)
    s.run()


###### Code to get the data required from the URL desired
def getData():  
    post_url = "URL OF INTEREST"
    browser = mechanize.Browser()
    browser.set_handle_robots(False)
    browser.addheaders = [('User-agent', 'Firefox')]

######These are the parameters you've got from checking with the aforementioned tools
    parameters = {'page' : '1',
              'rp' : '250',
              'sortname' : 'roi',
              'sortorder' : 'desc'
             }
#####Encode the parameters
    data = urllib.urlencode(parameters)
    trans_array = browser.open(post_url,data).read().decode('UTF-8')

    xmlload1 = json.loads(trans_array)
    pattern1 = re.compile('>&nbsp;&nbsp;(.*)<')
    pattern2 = re.compile('/control/profile/view/(.*)\' title=')
    pattern3 = re.compile('<span style=\'font-size:12px;\'>(.*)<\/span>')


#########################################################################
##### The request sent from here all the way down including comments#####
#########################################################################


##### Making the code identify each row, removing the need to numerically quantify the     number of rows in the xmlfile,
##### thus making number of rows dynamic (change as the list grows, required for looping function to work un interupted)

    for row in xmlload1['rows']:
        cell = row["cell"]

##### defining the Keys (key is the area from which data is pulled in the XML) for use in the pattern finding/regex

        user_delimiter = cell['username']
        selection_delimiter = cell['race_horse']


        if strikeratecalc2 < 12 : continue;

##### REMAINDER OF THE REGEX DELMITATIONS
        username_delimiter_results = re.findall(pattern1, user_delimiter)[0]
        userid_delimiter_results = (re.findall(pattern2, user_delimiter)[0])
        user_selection = re.findall(pattern3, selection_delimiter)[0]



##### Printing the results of the code at hand

        print "user id = ",userid_delimiter_results
        print "username = ",username_delimiter_results
        print "user selection = ",user_selection
        print ""





    getData()


    run_periodically(time()+5, time()+1000000, 3000, getData)

コメントをよろしくお願いします。私は累積で 11 日間コーディングを行っています。また、使用しているコードに重大なエラーがあった場合はご容赦ください。ただし、これまでのところ機能しています。

敬具

AEA

4

1 に答える 1