Usage - Rakhilukky/infinityfree GitHub Wiki

🛠️ Usage Guide

🔹 Basic GET Request

from infinityfree import Bypasse

response = Bypasse.get(
    url="http://elentinaai.ct.ws"
    #headers=headers #if you have any headers
    #cookies=cookies # if you have any 
    # you can use requests module args here
    )
print(response.text)

🔹 POST Request with Custom Headers & Cookies

custom_headers = {"User-Agent": "MyCustomAgent"}
custom_cookies = {"session_id": "abcd1234"}

response = Bypasse.post(
    url="http://elentinaai.ct.ws",
    headers=custom_headers,
    cookies=custom_cookies
    timeout=30
    )
print(response.text)

you can also use a custom variable

import infinityfree
rr3 = infinityfree.Bypasse()

⬅️ Back to Home