Open Side Menu Go to the Top
Register
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013

02-24-2015 , 02:27 PM
Hi
I try to use new version, it works for holdem and draw, but not for stud with errors in log like
Traceback (most recent call last):
File "<string>", line 452, in idle_create
File "Z:\fpdb\build\fpdb\out01-PYZ.pyz\Mucked", line 70, in create
NameError: global name 'gtk' is not defined
2015-02-24 19:10:23,331 - hud DEBUG Received hand no 436
2015-02-24 19:10:23,365 - db INFO HudCache query get_stats_from_hand_aggregated took 0.001 seconds
2015-02-24 19:10:23,372 - hud ERROR ...HUD ...hand... 436.
Traceback (most recent call last):
File "<string>", line 462, in idle_update
File "Z:\fpdb\build\fpdb\out01-PYZ.pyz\Mucked", line 85, in update_gui
File "Z:\fpdb\build\fpdb\out01-PYZ.pyz\Mucked", line 251, in update_gui
File "Z:\fpdb\build\fpdb\out01-PYZ.pyz\Mucked", line 284, in clear
KeyError: (1, 0)

After I change
game aux="stud_mucked, Classic_HUD" game_name="studhi"
not using stud_mucked like
<game aux="Classic_HUD, mucked" game_name="studhi">
It works OK
I don't need stud_mucked HUD at all so no problem for me, but I think it's important for you to know this bug

Great thanks for software BTW I repeat it many times in this thread already
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
02-24-2015 , 05:52 PM
Quote:
Originally Posted by nookatee
Phil, just started playing at a different stakes and noticed that my hud only has 42 hands for me. I have well over 3K in my db. Does the hud only display your stats based on the stakes you're at or something?
Exactly this. You can tell it to show stats over a range of stakes if you want with the aggregation_level_multiplier settings.
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
02-24-2015 , 05:53 PM
Quote:
Originally Posted by Fold&Forget
Hi
I try to use new version, it works for holdem and draw, but not for stud with errors in log like
Traceback (most recent call last):
File "<string>", line 452, in idle_create
File "Z:\fpdb\build\fpdb\out01-PYZ.pyz\Mucked", line 70, in create
NameError: global name 'gtk' is not defined
2015-02-24 19:10:23,331 - hud DEBUG Received hand no 436
2015-02-24 19:10:23,365 - db INFO HudCache query get_stats_from_hand_aggregated took 0.001 seconds
2015-02-24 19:10:23,372 - hud ERROR ...HUD ...hand... 436.
Traceback (most recent call last):
File "<string>", line 462, in idle_update
File "Z:\fpdb\build\fpdb\out01-PYZ.pyz\Mucked", line 85, in update_gui
File "Z:\fpdb\build\fpdb\out01-PYZ.pyz\Mucked", line 251, in update_gui
File "Z:\fpdb\build\fpdb\out01-PYZ.pyz\Mucked", line 284, in clear
KeyError: (1, 0)

After I change
game aux="stud_mucked, Classic_HUD" game_name="studhi"
not using stud_mucked like
<game aux="Classic_HUD, mucked" game_name="studhi">
It works OK
I don't need stud_mucked HUD at all so no problem for me, but I think it's important for you to know this bug

Great thanks for software BTW I repeat it many times in this thread already
Thanks for the report! I have never used the stud HUD so I am not surprised to find it doesn't work. I'll have a look at it.
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
02-25-2015 , 07:11 AM
Small remark - due to this problem standard HUD also didn't work for stud games, not only stud_mucked
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
02-26-2015 , 01:43 AM
Quote:
Originally Posted by phil_r
Thanks for the report! I have never used the stud HUD so I am not surprised to find it doesn't work. I'll have a look at it.
So it turns out I missed the stud_mucked stuff when I was doing the GTK->Qt port. Fixed, will be in next release.
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
02-27-2015 , 10:53 AM
phil,

couple things:

first when running from source, i get this issue: https://github.com/philroberts/FPDB-for-OSX/issues/1

I added a comment.

Secondly I'm running from source because it still looks like rc6 is missing some sessions in the sessions viewer. I modified the source to set unknown seat to -1 so i'm seeing a lot more sessions show up when I run from source. I'd now like to run the hud from source, too. Hence the issue at the link above.
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
02-27-2015 , 12:46 PM
Still using 40.5 on windows 7 on MySQL
I wanted to do a database query to see how certain players played by position.

I tried to use the positionscache table, but everyone other than myself has position='N'

How is this cache used by fpdb?

Is there a way to repopulate it with all the players' data?

Thanks,
--D
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
02-27-2015 , 09:33 PM
Quote:
Originally Posted by TheDruid
Still using 40.5 on windows 7 on MySQL
I wanted to do a database query to see how certain players played by position.

I tried to use the positionscache table, but everyone other than myself has position='N'

How is this cache used by fpdb?

Is there a way to repopulate it with all the players' data?

Thanks,
--D
Try the HandsPlayers table for this.
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
02-28-2015 , 12:52 PM
Quote:
Originally Posted by ChazDazzle
Try the HandsPlayers table for this.
I had been doing just that, but the query is beginning to take a significant amount of time.

Perhaps I'll work on speeding up the query.
The query returns a lot of data of interest to draw players:
RFI by position, and overall frequency of standing pat. I wanted to add how often they drew one, two or three by position, but it got too heavy very fast.
--D
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
02-28-2015 , 02:44 PM
where can I set up my hud for MTT? I can't seem to find it..
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
02-28-2015 , 03:23 PM
Any plans to support WPN??
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
02-28-2015 , 08:35 PM
Quote:
Originally Posted by myboatisfull
where can I set up my hud for MTT? I can't seem to find it..
Assuming be "set up my hud" you mean "set which stats are shown in the HUD" and by "MTT" you mean "hold'em MTT", let's dive into HUD_config.xml:

There should be a couple of lines like this:

Code:
<game game_name="holdem" aux="Classic_HUD, mucked">
    <game_stat_set game_type="tour" stat_set="holdem_tour"/>
Which means the stats you want to edit are under the "holdem_tour" stat set, later in the file:

Code:
<ss cols="3" name="holdem_tour" rows="3" xpad="1" ypad="0">
  <stat _rowcol="(1,1)" _stat_name="vpip_0" hudcolor="#ECEBD0" popup="poppreflop" hudprefix="vpi:" stat_hicolor="#D86C1D" stat_hith="40" stat_locolor="#5ec265" stat_loth="25" tip=""/>
  <stat _rowcol="(1,2)" _stat_name="pfr_0" hudcolor="#ECEBD0" popup="poppreflop" hudprefix="pfr:" stat_hicolor="#D86C1D" stat_hith="35" stat_locolor="#5ec265" stat_loth="20" tip=""/>
  <stat _rowcol="(1,3)" _stat_name="three_B_0" hudcolor="#ECEBD0" popup="pop3bet" hudprefix="3bp:" stat_hicolor="#D86C1D" stat_hith="13" stat_locolor="#5ec265" stat_loth="4" tip=""/>
  <stat _rowcol="(2,1)" _stat_name="n" hudcolor="#7F9476" popup="pophands" hudprefix="(" hudsuffix=")" tip=""/>
  <stat _rowcol="(2,2)" _stat_name="playershort" hudcolor="#7F9476" popup="holdtour_main" hudprefix="" hudsuffix="" tip=""/>
  <stat _rowcol="(2,3)" _stat_name="cb1_0" hudcolor="#D86C1D" popup="popcb" hudprefix="cbf:" stat_hicolor="#D86C1D" stat_hith="75" stat_locolor="#5ec265" stat_loth="35" tip=""/>
  <stat _rowcol="(3,1)" _stat_name="wtsd_0" hudcolor="#ECEBD0" popup="popwtsd" hudprefix="wts:" tip=""/>
  <stat _rowcol="(3,2)" _stat_name="steal_0" hudcolor="#ECEBD0" popup="popsteal" hudprefix="st:" stat_hicolor="#D86C1D" stat_hith="45" stat_locolor="#5ec265" stat_loth="10" tip=""/>
  <stat _rowcol="(3,3)" _stat_name="m_ratio" hudcolor="#FFFC00" hudprefix="M:" stat_hicolor="#5EC265" stat_hith="19.99" stat_locolor="#F33725" stat_loth="9.99" tip=""/>
</ss>
See here for more info on editing the stat config options.
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
02-28-2015 , 08:43 PM
Quote:
Originally Posted by LOL_ThatGuy
Any plans to support WPN??
I'm super unexcited about doing the work for this, but if someone sends me some hand histories and screenshots of corresponding table windows I might do something about it. No promises. Maybe someone else will put their hand up.
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
03-01-2015 , 10:52 AM
I will do it Phil if you really are wanting to add it. If not man don't stress. There are options for WPN players... They just don't wanna pay

Sent from my XT1080 using 2+2 Forums
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
03-01-2015 , 04:17 PM
Are you willing to take a look at the new SwCPoker HH file format?
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
03-01-2015 , 06:40 PM
Quote:
Originally Posted by VP$IP
Are you willing to take a look at the new SwCPoker HH file format?
Again, I'm not too excited at the prospect. It's just not my personal itch to scratch, ya know? Also, don't they support a million crazy games now?

If someone sends me the aforementioned, I might get really bored one day and do something about it.
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
03-02-2015 , 12:38 PM
Hi, I'm facing a problem after the installation of FPDB.

Whenever i try to launch it from the launcher, a terminal pops-up
with the message

Warning: Could not find '/usr/bin/fpdb', starting '/bin/bash' instead. Please check your profile settings.


Now, i used the locate command and found that fpdb is installed @

/usr/lib/python2.7/site-packages/fpdb

so i'll cd there and say

python fpdb_prerun.py

A window of FPDB pops-up asking me to choose language, then an error
shows up in terminal

Traceback (most recent call last):
File "fpdb_prerun.py", line 240, in <module>
os.chdir(os.path.join(config.fpdb_root_path, u"pyfpdb"))
OSError: [Errno 2] No such file or directory: '/usr/lib/python2.7/site-packages/pyfpdb'


I'm running Fedora 21. Thanks all.
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
03-02-2015 , 12:44 PM
Ok, i moved the pyfpdb folder from source .tar to /usr/lib/python2.7/site-packages
and now it runs ok so how do i make it run from launcher now ?
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
03-02-2015 , 12:51 PM
Quote:
Originally Posted by asoodoofoo
Ok, i moved the pyfpdb folder from source .tar to /usr/lib/python2.7/site-packages
and now it runs ok so how do i make it run from launcher now ?
I'm not familiar with fedora so I don't know what a launcher is, but it looks like it's trying to run /usr/bin/fpdb -- was the package supposed to install a script there perhaps? Can you tell it to run something else? Or you could make your own script and put it in /usr/bin/fpdb if you have root and don't mind tramping around in places you really shouldn't.
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
03-02-2015 , 01:39 PM
Should I run fpdb_prerun.py everytime ? is this the "executable" for fpdb ?

Or should it be run only once? The "prerun" confuses me.

Anyway, there's nothing @ /usr/bin/fpdb.
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
03-02-2015 , 02:51 PM
I hope someone can help me. I have used fpdb before and really loved the application!

I have installed fpdb on my win7 machine but it does not work.

The following happens:
when I click the exe file it says 'running admin shell' then the windows command screen disappears and briefly the fpdb window pops up but immediately disappears.
Then nothing...

Any ideas ??
I have installed mysql essentials, should I do anything else?

Thanks in advance...
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
03-02-2015 , 08:53 PM
Quote:
Originally Posted by asoodoofoo
Should I run fpdb_prerun.py everytime ? is this the "executable" for fpdb ?

Or should it be run only once? The "prerun" confuses me.

Anyway, there's nothing @ /usr/bin/fpdb.
The prerun script, as far as I know, is designed to be run once when you install the app to check that all the dependencies are installed and then start fpdb in "This is your first time running fpdb, set up this stuff" mode. I have never used it, personally - I typically run fpdb.py directly. (fpdb.py is in the pyfpdb directory).
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
03-02-2015 , 08:54 PM
Quote:
Originally Posted by xpedite
I hope someone can help me. I have used fpdb before and really loved the application!

I have installed fpdb on my win7 machine but it does not work.

The following happens:
when I click the exe file it says 'running admin shell' then the windows command screen disappears and briefly the fpdb window pops up but immediately disappears.
Then nothing...

Any ideas ??
I have installed mysql essentials, should I do anything else?

Thanks in advance...
1) Where did you get fpdb from?
2) Is there anything in %appdata%\fpdb\logs ?
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
03-04-2015 , 03:01 PM
Quote:
Originally Posted by phil_r
1) Where did you get fpdb from?
2) Is there anything in %appdata%\fpdb\logs ?
There were some files in the location above and since it worked before, I went ahead and deleted all files to do a clean install.
So your questions lead to the solution Thanks for this!
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
03-06-2015 , 09:13 AM
Quote:
Originally Posted by phil_r
Again, I'm not too excited at the prospect. It's just not my personal itch to scratch, ya know? Also, don't they support a million crazy games now?

If someone sends me the aforementioned, I might get really bored one day and do something about it.
Too early.
The site is new and still unstable, the client is frequently updated.
It should be a flavor of GRID software. I don't know anything about it, but maybe someone knows if there is some experience in parsing its hhs...

Moreover, this conversation
https://twitter.com/alexjcombs/statu...84339205820416
suggests to take a rest...

They now have a great number of different games (I think it's the larger games offer of the world), but unfortunately people seem willing to play just holdem and that open face useless ****,
so holdem could be the only one to bother about...
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote

      
m