pip3 install -U rookiepy
import rookiepy
cookies = rookiepy.chrome() # Load cookies from Chrome
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)