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 requests | |
import inspect | |
from selenium import webdriver | |
from bs4 import BeautifulSoup | |
from PIL import Image | |
import hashlib | |
import uuid | |
import cgi | |
import arrow | |
import httplib2 |
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 xadmin | |
from xadmin import views | |
from models import Sheet1, Change, MyChange | |
from xadmin.layout import * | |
class BaseSetting(object): | |
enable_themes = False | |
use_bootswatch = False | |
show_bookmarks = False |
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 django.db import models | |
from django.contrib.auth.models import User | |
class Sheet1(models.Model): | |
Name = models.CharField(max_length=100) | |
Year = models.SmallIntegerField(max_length=5) | |
Start_Date = models.DateField(help_text='in EST') | |
End_Date = models.DateField(help_text='in EST') |
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
#! /usr/bin/python | |
import os | |
import getpass | |
import paramiko | |
import xlsxwriter | |
import socket | |
import re | |
import sys | |
import smtplib |