Go to file
PassThePeas 4a1dd26db3 First attempt to parsing summary files from FTP
modified:   FulltiltToFpdb.py
		* Modified re_HandInfo regex to take into account Matrix Tournament Hands Histories
		* Add Regex for Tourney Summaries files parsing
		* New methods : readSummaryInfo, determineTourneyType, getPlayersPositionsAndWinnings

	modified:   HandHistoryConverter.py
		* Add a Tourney object in the attributes to allow storing the summary info retrieved and the ability to hand it over after parsing
		* Add a new attribut parsedObjectType (string : "HH" or "Summary")
		* In follow = False mode : read the first line to swicth between HH & Summary parsing
		* TO DO : Deal with parsing summary files in follow = True mode
		* New methods added : isSummary, getParsedObjectType (to be called in fpdb_import), readSummaryInfo : abstract (to be implemented in each specific HHC), getTourney (returns the new attribute)

	new file:   Tourney.py
		* New object
		* Lots of attributes regarding the tourney info (buy-in, fee, entries, speed, Rebuy/add-on info, starting chips, KnockOut info, isHeadsUp, isShootout, isMatrix, ...
		* List of players with finishing positions (when available) and winnings (when available)
		* Methods :
		  ** addPlayer(self, rank, name, winnings)
		  ** incrementPlayerWinnings(self, name, additionnalWinnings): used for KO tourneys when KO occured (for Hero only)
		  ** calculatePayinAmount : unused yet, should be necessary for DB storage
		  ** some Hand methods copied that are still to be done including : assemble and insert
		  ** TO DO : write the insert method for the object to be stored in DB. This will have to deal with the fact that the DB write can occur both before (Bulk Import) or after the HH file info has been stored (tourney might or might not already exist)

	modified:   fpdb_import.py
		* import_file_dict modified :
		  ** after the construction of the hhc, it now calls the new getParsedObjectType method of HHC in order to know what has been parsed by the HHC
		  ** If it's a hand history file (actual expected behaviour) : do as before
		  ** If it's a summary file, gets the tourney object that has been built from the hhc and calls the insert method on it (similar to NEWIMPORT=True for HH)
2009-08-22 00:09:34 +02:00
docs update with latest handsplayers/hudcache changes 2009-06-07 21:55:49 +01:00
packaging Added new gentoo ebuild file for 0.10 release. 2009-01-30 17:02:32 -05:00
pyfpdb First attempt to parsing summary files from FTP 2009-08-22 00:09:34 +02:00
regression-test windows git is buggy 2008-11-10 03:22:21 -05:00
utils New util to convert mysql table descriptions to a wiki table. 2009-08-05 19:06:59 -04:00
THANKS.txt Finish sentence in THANKS.txt 2009-03-30 06:12:19 +08:00

README.txt
updated 26 March 2009, REB

fpdb - Free Poker Database

The most accurate and up-to-date information on fpdb will be found in the wiki:
http://fpdb.wiki.sourceforge.net/

Other resources are:
    Mailing list: http://sourceforge.net/mailarchive/forum.php?forum_name=fpdb-main
    Chat room(irc): #fpdb on freenode.net

fpdb is a free program for use with on line poker. It provides:
    Tracking of your results and statistics.
    Tracking of opponents' results statistics.
    Win/loss graphing
    Heads Up Display (HUD) with a variety of statistics
    Display of mucked cards in the HUD

fpdb supports:
    Sites:
        PokerStars
        Full Tilt Poker
        Everleaf Network
        Other sites are under development and are easily added

    Games:
        Holdem
        Omaha (incl Hi/low)
        7 Card Stud (incl Hi/low)
        Razz
        Draw support is under development
        Mixed Games -- HUD under development

    Operating Systems:
        Linux and other Unix-like, using X
        Windows
        Mac OS/X --  no support for HUD

    Databases:
        MySQL
        PostgreSQL
        SQLite under development

Downloads:
    Releases: http://sourceforge.net/project/showfiles.php?group_id=226872
    Development code via git: http://www.assembla.com/spaces/free_poker_tools/trac_git_tool

Developers:
    At least 7 people have contributed code or patches. Others are welcome.

License
=======
Trademarks of third parties have been used under Fair Use or similar laws.

Copyright 2008 Steffen Jobbagy-Felso
Copyright 2009 Ray E. Barker
Permission is granted to copy, distribute and/or modify this
document under the terms of the GNU Free Documentation License,
Version 1.2 as published by the Free Software Foundation; with
no Invariant Sections, no Front-Cover Texts, and with no Back-Cover
Texts. A copy of the license can be found in fdl-1.2.txt

fpdb itself is licensed under AGPLv3, see agpl-3.0.txt.