Skip to content

Instantly share code, notes, and snippets.

View timo-berg's full-sized avatar
🦧
Doing Monkey Business

timo-berg

🦧
Doing Monkey Business
  • TU Berlin
  • Berlin
View GitHub Profile
import json
import requests
from haralyzer import HarParser, HarPage
with open('pictures.har', 'r') as f:
har_page = HarPage('page_1', har_data=json.loads(f.read()))
for i, entry in enumerate(har_page.entries):
request = entry['request']