Calculate how much money you spent on steam.
Warning : the scripts were developed using the French pages of steam, there may be some minor modifications to make for other languages
- login into your steam account
- got the the purchase history page.
- optional : show more transactions
- save the file as
account_history.html - run the data extractor
python get_account_history_html.py --html account_history.html
- login into your steam account
- copy the
/account/historyrequest intorequest.txt- open dev tools
- got to the network tab
- got the the purchase history page.
- select the
/account/historycall - copy as cURL (bash)
- convert the the curl command into a python. Example tool curlconverter.com.
- put the result string into request.txt
- replace the
response = requests.post ...withresponse1 = requests.post ...
- optional : show more transactions
- select the
/account/AjaxLoadMoreHistorycall - copy as cURL (bash)
- convert the the curl command into a python.
- put the result string into request.txt
- replace the
response = requests.post ...withresponse2 = requests.post ...
- select the
- run the data extractor
python get_account_history_requests.py --requests request.txt