Parses binary cookies from a given .binarycookies file
Project description
Binary Cookies Reader
This project provides a Python script to read and interpret binary cookie files. The project is based on the cookie reader written by Satishb3
Requirements
- Python 3.8 or higher
Installation
pip install binary-cookies-parser
If you want to use the bcr CLI, it's recommended to use pipx to install the package in an isolated environment.
Usage
After installation, you can use the command-line interface to read a binary cookies file:
bcparser <path_to_binary_cookies_file>
Replace <path_to_binary_cookies_file> with the path to the binary cookie file you want to read.
Or use it in Python:
from binary_cookies_parser.parser import read_binary_cookies_file
cookies = read_binary_cookies_file("path/to/cookies.binarycookies")
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.