Parsing CsGoFast.com on python3

I need to make a program that will parse the game . Now I'm doing design, so I'll ask you in advance. The program will collect statistics on the loss of different colors and should also receive data on what bet was made on the red in each game. Because of this, you have to get the page every 20 - 25 seconds. Will the site block such frequent requests? If so, can you somehow get around them?

For parsing I use the requests module.

    1 answer 1

    It should not block, for 20-25 seconds it is not often

    • 3
      "Will the site block such frequent requests?" - we do not know what criteria the site uses. Maybe if the site sees that it does not make requests to the browser, then it introduces some restrictions (like google for example). - jfs