- Introductory Topics
- Mutable vs. immutable objects
- Classes and Objects
- Iterators
- Working with strings
- File I/O
- Python 2 and Python 3
- Is there a good Python IDE?
This file contains 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
# open an MRC file (optionally using mmap) and host it using Neuroglancer as a LocalVolume | |
# usage: python -m mrc_neuroglancer.py --mrcfile <filename> [--mmap] [--bind-address ADDRESS] | |
# | |
# requirements may be installed from PyPI: | |
# neuroglancer | |
# mrcfile | |
import argparse | |
import signal |
This file contains 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
from fabric import task | |
import os | |
import getpass | |
import subprocess | |
# you also need to install doctl and set it up for create/destroy to work | |
APP_NAME = 'the-name-of-your-app' | |
DOMAIN = 'example.com' # SSL is not in here yet |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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
import csv, datetime, os | |
from threading import Timer, Lock | |
import re | |
import numpy as np | |
import bokeh.plotting as bk | |
from bokeh.models import Range1d | |
# import u3 # LabJack library | |
# from LabJackPython import LabJackException |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.