I have few code which set the configuration
pd.set_option('display.max_columns', None)logging.getLogger("urllib3").setLevel(logging.ERROR)
Where should I put these into the script or can I set up a configuration file for setting these, when I running a main.py like this:
import pybitimport pandas as pddef get_data(): # get data from bybit packagedef data_cleaning(data): # using pandas for cleaning the dataif __name__ == "__main__": data = get_data() cleaned_data = data_cleaning(data)