Last active
August 25, 2016 14:24
-
-
Save u8sand/a06583d48111e8eb876c44d295cbca34 to your computer and use it in GitHub Desktop.
My ipython startup profile
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/python | |
# 00-imports.py | |
import os | |
import re | |
import json | |
import numpy as np | |
import pandas as pd | |
import scipy as sp | |
from matplotlib import pyplot as plt | |
from subprocess import Popen | |
from threading import Thread | |
from importlib import reload | |
from functools import reduce | |
from itertools import * | |
from collections import * | |
from queue import * | |
# 02-draw.py (https://gist.github.com/u8sand/21218c9cf5b6d5b286e117399c333a65#file-draw-py-L1) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment