If you want to disable log messages from the Requests library then you can configure requests' logging level, and this is done via the standard logging module. Below-is the code for the same:-
import logging
logging.getLogger("requests").setLevel(logging.WARNING)