Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 531 Bytes

Python.md

File metadata and controls

31 lines (22 loc) · 531 Bytes

Rookie Python Docs

Install

pip3 install -U rookiepy

Basic Usage

import rookiepy
cookies = rookiepy.chrome() # Load cookies from Chrome

Logging

Logging level can be controlled by using the logging module

import logging
logging.basicConfig()
logging.getLogger().setLevel(logging.DEBUG)

To fully disable rookiepy logging you can set the level to CRITICAL

import logging
logging.getLogger().setLevel(logging.CRITICAL)