View logging.cfg
################################################### | |
[loggers] | |
keys=root,render,converter,worker | |
[logger_root] | |
level=INFO | |
handlers=syslogHandler,fileHandler | |
[logger_render] | |
level=INFO |
View compare_data_set.py
#!/usr/bin/env python | |
list1 = [ | |
{"id": 1, "name": "smile", "age": 23}, | |
{"id": 3, "name": "mary", "age": 40}, | |
{"id": 4, "name": "cherry", "age": 67} | |
] | |
list2 = [ | |
{"id": 1, "name": "smile", "age": 23}, |
View python-smtp-send-qq-mail.py
import smtplib | |
from getpass import getpass | |
def prompt(prompt): | |
return input(prompt).strip() | |
fromaddr = prompt("From: ") | |
toaddrs = prompt("To: ").split() | |
subject = prompt("Subject: ") | |
print("Enter message, end with ^D (Unix) or ^Z (Windows):") |
View cuter.py
# -*- coding: utf-8 -*- | |
import Image | |
def resize_and_crop(img_path, modified_path, size, crop_type='top'): | |
""" | |
Resize and crop an image to fit the specified size. | |
args: | |
img_path: path for the image to resize. |
View send_email.py
# see also: http://code.activestate.com/recipes/578150-sending-non-ascii-emails-from-python-3/ | |
import os | |
import smtplib | |
from email.utils import formataddr | |
from email.utils import formatdate | |
from email.utils import COMMASPACE | |
from email.header import Header |
View py3.5_ubuntu_14.04.txt
Felix Krull runs a PPA offering basically any version of Python (seriously, there is 2.3.7 build for vivid...) for many Ubuntu releases at | |
https://launchpad.net/~fkrull/+archive/ubuntu/deadsnakes | |
Do the usual: | |
sudo add-apt-repository ppa:fkrull/deadsnakes | |
sudo apt-get update | |
sudo apt-get install python3.5 | |
It will not overwrite your existing python3.4 which is still symlinked as python3. If you want python3.5 to be the default python3, change the symlink |
View PicConverText.py
#!/usr/bin/env python | |
# coding=utf8 | |
# author=evi1m0 | |
# website=linux.im | |
''' | |
12306 Captcha Picture: | |
author: Evi1m0@20150316 | |
1. Download Captcha | |
2. Pic Conver Text |
View Sublime Text 3 Build 3103 License Key - CRACK
I use the first | |
—– BEGIN LICENSE —– | |
Michael Barnes | |
Single User License | |
EA7E-821385 | |
8A353C41 872A0D5C DF9B2950 AFF6F667 | |
C458EA6D 8EA3C286 98D1D650 131A97AB | |
AA919AEC EF20E143 B361B1E7 4C8B7F04 |
View gitstars.json
{"tags":[],"lastModified":1517888208508} |
View auto-run.py
#!/usr/bin/env python | |
""" | |
This script scans the current working directory for changes to .go files and | |
runs `go test` in each folder where *_test.go files are found. It does this | |
indefinitely or until a KeyboardInterrupt is raised (<Ctrl+c>). This script | |
passes the verbosity command line argument (-v) to `go test`. | |
""" |
OlderNewer