Get information from another program using Python

0

Hello, I would like to know how can I get information from another program using Python. In issue, I want to develop a blind counter for PokerStars.

Note: blinds in poker is the set of compulsory bets: big and small blind.

Example:

  • I enter a poker tournament, therefore I get a lot of chips;
  • The blinds level of the tournament is changeable, that is, it increases as time goes by;
  • My goal is to get the number of chips I have and divide by the big blind, thus getting my number of blinds.
  • In summary, I want to know how to "locate" the information on the amounts of my chips, as well as the current blind level in memory. Then divide the first by the second.

    Figure: a) Normal scenario of the game. Blind values: Big Blind = 100; Small Blind = 50. b) How the program should act. If the blind is at 100/50, then it's the same as I say 1 / 0.5 and divide the total chip count by the big blind.

    There are several programs that perform this task (and others more complex), but all are paid.

        
    asked by anonymous 21.11.2017 / 08:02

    0 answers