This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import requests | |
| import time | |
| import json | |
| # --- KONFIGURATION --- | |
| # Indsæt Token ID for det Polymarket marked du vil overvåge | |
| # Du finder dette ID på Polymarket under "Details" eller via deres API. | |
| # Eksempel: Hvis du vil handle på om BTC er over en vis pris. | |
| POLYMARKET_TOKEN_ID = "INDSAET_TOKEN_ID_HER" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| proxies = {'http' : 'http://10.10.0.0:0000', | |
| 'https': 'http://120.10.0.0:0000'} | |
| page_response = requests.get(page_link, proxies=proxies, timeout=5) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Forked ebooks of interst from Git Hub |