From 36f5c5922604edac161c1c236e06531804fc0b22 Mon Sep 17 00:00:00 2001 From: Worros Date: Fri, 11 Feb 2011 18:13:43 +0800 Subject: [PATCH] Script: Fetch Winamax results This script will fetch all of the known Winamax tourney ids from the database, then fetch the results from the Winamax website and write them to ~/.fpdb/Results/Winamax Initial version is smart enough not to fetch results that have already been downloaded. In combination with the recent WinamaxSummary.py Winamax users should now be able to import and graph tournament results --- pyfpdb/ScriptFetchWinamaxResults.py | 74 +++++++++++++++++++++++++++++ 1 file changed, 74 insertions(+) create mode 100644 pyfpdb/ScriptFetchWinamaxResults.py diff --git a/pyfpdb/ScriptFetchWinamaxResults.py b/pyfpdb/ScriptFetchWinamaxResults.py new file mode 100644 index 00000000..2bdab268 --- /dev/null +++ b/pyfpdb/ScriptFetchWinamaxResults.py @@ -0,0 +1,74 @@ +#!/usr/bin/python +# -*- coding: utf-8 -*- + +#Copyright 2008-2011 Carl Gherardi +#This program is free software: you can redistribute it and/or modify +#it under the terms of the GNU Affero General Public License as published by +#the Free Software Foundation, version 3 of the License. +# +#This program is distributed in the hope that it will be useful, +#but WITHOUT ANY WARRANTY; without even the implied warranty of +#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +#GNU General Public License for more details. +# +#You should have received a copy of the GNU Affero General Public License +#along with this program. If not, see . +#In the "official" distribution you can find the license in agpl-3.0.txt + +"""A script for fetching Winamax tourney results""" + +import Configuration +import Database + +import logging, os, sys +import re, urllib2 + + +def fetch_winamax_results_page(tourney_id): + url = "https://www.winamax.fr/poker/tournament.php?ID=%s" % tourney_id + data = urllib2.urlopen(url).read() + return data + +def write_file(filename, data): + f = open(filename, 'w') + print f + f.write(data) + f.close() + print f + +def main(): + config = Configuration.Config() + db = Database.Database(config) + + tourney_ids = db.getSiteTourneyNos("Winamax") + tids = [] + + for tid in tourney_ids: + blah, = tid # Unpack tuple + tids.append(str(blah)) + # winamax_get_winning(tid,"blah") + results_dir = config.get_import_parameters().get("ResultsDirectory") + results_dir = os.path.expanduser(results_dir) + site_dir = os.path.join(results_dir, "Winamax") + print "DEBUG: site_dir: %s" % site_dir + filelist = [file for file in os.listdir(site_dir) if not file in [".",".."]] + print "DEBUG: filelist : %s" % filelist + print "DEBUG: tids : %s" % tids + + for f in filelist: + try: + tids.remove(f) + except ValueError: + print "Warning: '%s' is not a known tourney_id" % f + + if len(tids) == 0: + print "No tourney results files to fetch" + else: + for tid in tids: + filename = os.path.join(site_dir, tid) + data = fetch_winamax_results_page(tid) + print u"DEBUG: write_file(%s)" %(filename) + write_file(filename, data) + +if __name__ == '__main__': + main()