LoginSignup
0
0

More than 5 years have passed since last update.

Jupyterでサーバ管理( 1 ) import 

Last updated at Posted at 2017-02-07

jupyter で、サーバ管理はじめました。
いろんなライブラリをつかうので、標準的に import しておくには
なにがいいかを手探りしています。

現時点(2017.2.7)時点ではとりあえずこれです。
最後に、'import' と書いてあるのがポイントです。
hide input で、セルそのものを見えなくするときに、
ここに、なんのセルがあったのかを示すためです。

#!/usr/bin/env python
# -*- coding: utf-8 -*-
# routine work 用 import list
import os,sys,re,json,codecs,inspect,platform


# 表示関連
from pprint import pprint as pp
from IPython.display import display,HTML

# 日付時刻
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 データベース読み込み 
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'
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0