Home

Awesome

rookie

PyPi Downloads PyPi Version NPM Version Crates License

Load cookies from any browser on any platform

Features 🚀

Usage ⚙️

Rust

cargo add rookie

Create main.rs with the following

use rookie::brave;

fn main() {
    let domains = vec!["google.com"];
    let cookies = brave(Some(domains)).unwrap();
    for cookie in cookies {
        println!("{:?}", cookie);
    }
}

Python

pip install rookiepy

And the usage it similar to Rust

import rookiepy
cookies = rookiepy.firefox(["google.com"])
for cookie in cookies:
    print(cookie['domain'], cookie['value'])

JavaScript

npm install @rookie-rs/api
import { brave } from "@rookie-rs/api";
const cookies = brave();
for (const cookie of cookies) {
  console.log(cookie);
}

Examples 📋

Rust examples/rust

Python examples/python

JavaScript examples/javascript

Docs 📘

Rust

Python

JavaScript

CLI 💻

You can use rookie as a CLI tool which will decrypt the cookies and print it as JSON
See cli folder

Contribute 🤝

So far the following platforms are supported:

You are welcome to contribute support for other browsers, or other platforms.

Support new browsers 🌐

If you have a browser with which the library isn't working with, it may not have been added to the list of supported browsers configs. You can create a pull request (PR) or an issue with the path to the cookies file on your computer, and I will add it.

look at rookie-rs/config.json to see what configurations is needed.

Testing Dates (DD/MM/YY) 📅

BrowserLinuxmacOSWindows
Arc2024/08/072024/08/072024/08/07
Brave2024/10/262024/10/262024/10/26
Cachy2024/06/04N/AN/A
Chromium2024/10/262024/10/262024/03/16
Chrome2024/10/262024/10/262024/03/16
Edge2023/10/012024/08/072024/03/16
Firefox2024/10/262023/11/252024/03/16
IEN/AN/A2024/03/16
LibreWolf2023/10/012023/11/252023/10/01
Opera2023/10/01-2023/10/01
Opera GXN/A-2023/10/01
SafariN/A2024/10/26N/A
Vivaldi2023/10/012023/11/252023/10/01
Zen-2024/10/26-

Credits 🙌

github.com/borisbabic/browser_cookie3