I started server management with jupyter. Since various libraries are used, to import as standard I'm groping for what's good.
At this point (2017.2.7), this is for the time being. Finally, the point is that it says'import'. When you hide the cell itself with hide input, This is to show what cells were here.
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#import list for routine work
import os,sys,re,json,codecs,inspect,platform
#Display related
from pprint import pprint as pp
from IPython.display import display,HTML
#Date Time
import datetime
import time
from datetime import datetime as dt
# pandas
import pandas as pd
import numpy as np
import matplotlib.pyplot as plt
#network
import requests
import socket,ssl
import lxml
# fabric
from fabric.api import env,sudo,get,run,put,local,execute,hosts
from fabric.decorators import task,hosts
from fabric.context_managers import hide
#mysql database read
import pymysql
import sqlite3
# utility
import getpass
import difflib
# selenium
from selenium import webdriver
from selenium.webdriver.common.by import By
from selenium.webdriver.common.keys import Keys
from selenium.webdriver.support.ui import Select
from selenium.common.exceptions import NoSuchElementException
from selenium.common.exceptions import NoAlertPresentException
# excel
import openpyxl as px
'import'
Recommended Posts