From 0b05766f9ba23fcb15a051bd721f0c4555893944 Mon Sep 17 00:00:00 2001 From: Evgeniy Alekseev Date: Sat, 8 Jun 2019 20:09:23 +0300 Subject: [PATCH] moar imports --- ipython_config.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ipython_config.py b/ipython_config.py index 8b8266f..86e5a43 100644 --- a/ipython_config.py +++ b/ipython_config.py @@ -547,5 +547,9 @@ c.InteractiveShellApp.exec_lines.append('%autoreload 2') # logging c.InteractiveShellApp.exec_lines.append('import logging') #c.InteractiveShellApp.exec_lines.append('logging.basicConfig(level = logging.DEBUG)') +c.InteractiveShellApp.exec_lines.append('logging.basicConfig(level = logging.INFO)') # requests +c.InteractiveShellApp.exec_lines.append('import datetime') +c.InteractiveShellApp.exec_lines.append('import json') c.InteractiveShellApp.exec_lines.append('import requests') +c.InteractiveShellApp.exec_lines.append('from decimal import Decimal')