Skip to content

Instantly share code, notes, and snippets.

View moaz-ahmed's full-sized avatar

Moaz moaz-ahmed

  • Egypt
View GitHub Profile
@3dprogramin
3dprogramin / selenium-cookies-importer.py
Last active September 15, 2025 12:31
Import cookies from text file into selenium webdriver
from selenium import webdriver
from time import sleep
# read cookies from file
# format
# ... expiry1 key1 value1
# ... expiry2 key2 value2
def read_cookies(p = 'cookies.txt'):
cookies = []
with open(p, 'r') as f: