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