Skip to content
This repository has been archived by the owner on Jul 13, 2023. It is now read-only.

Latest commit

 

History

History
20 lines (16 loc) · 605 Bytes

README.md

File metadata and controls

20 lines (16 loc) · 605 Bytes

WarpKeyGen

A simple async license key generator for warp vpn!😎

Dependencies⚙️

  • Python 3.9+
  • aiohttp (pip install aiohttp)

How to use it🤔

from aiohttp import ClientSession
from warp import WarpKeyGenerator

async def main():
    async with ClientSession() as session:
        key_gen = WarpKeyGenerator(session)
        print(await key_gen.generate_key())

Result✅