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 math | |
import decimal | |
def convert_to_code(num): | |
""" | |
将数字转换为代码 | |
""" | |
def get_num(num, out=''): | |
num = decimal.Decimal(num) | |
codes = "abcdefghjkmnpqrstuvwxyz23456789ABCDEFGHJKMNPQRSTUVWXYZ" |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>KeepAlive</key> | |
<true/> | |
<key>OnDemand</key> | |
<false/> | |
<key>Label</key> | |
<string>com.me.shadowsocks.startup</string> |
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 re | |
def fetch_jd_price(id): | |
s = requests.Session() | |
buy_url = 'http://gate.360buy.com/InitCart.aspx?pid='+str(id)+'&pcount=1&ptype=1' | |
status_url = 'http://cart.360buy.com/cart/miniCartServiceNew.action?'+\ | |
'callback=jsonp&_=1358748376993&method=GetCart' | |
s.get(buy_url) | |
r = s.get(status_url) |
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
Benchmark Run: Sun Dec 30 2012 21:57:45 - 22:26:22 | |
2 CPUs in system; running 2 parallel copies of tests | |
Dhrystone 2 using register variables 26176109.2 lps (10.0 s, 7 samples) | |
Double-Precision Whetstone 5340.4 MWIPS (9.9 s, 7 samples) | |
Execl Throughput 7423.6 lps (29.7 s, 2 samples) | |
File Copy 1024 bufsize 2000 maxblocks 124316.5 KBps (30.0 s, 2 samples) | |
File Copy 256 bufsize 500 maxblocks 32652.9 KBps (30.0 s, 2 samples) | |
File Copy 4096 bufsize 8000 maxblocks 275769.1 KBps (30.0 s, 2 samples) | |
Pipe Throughput 2025220.5 lps (10.0 s, 7 samples) |
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
Benchmark Run: Sun Dec 30 2012 21:30:19 - 21:58:35 | |
unknown CPUs in system; running 1 parallel copy of tests | |
Dhrystone 2 using register variables 28050996.0 lps (10.0 s, 7 samples) | |
Double-Precision Whetstone 4032.4 MWIPS (9.8 s, 7 samples) | |
Execl Throughput 602.3 lps (29.9 s, 2 samples) | |
File Copy 1024 bufsize 2000 maxblocks 600186.9 KBps (30.0 s, 2 samples) | |
File Copy 256 bufsize 500 maxblocks 167574.2 KBps (30.0 s, 2 samples) | |
File Copy 4096 bufsize 8000 maxblocks 1390130.7 KBps (30.0 s, 2 samples) | |
Pipe Throughput 984698.6 lps (10.0 s, 7 samples) |
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
Benchmark Run: Sun Dec 30 2012 21:29:46 - 21:57:44 | |
1 CPU in system; running 1 parallel copy of tests | |
Dhrystone 2 using register variables 8184515.9 lps (10.0 s, 7 samples) | |
Double-Precision Whetstone 1833.6 MWIPS (9.8 s, 7 samples) | |
Execl Throughput 1137.1 lps (30.0 s, 2 samples) | |
File Copy 1024 bufsize 2000 maxblocks 170016.0 KBps (30.0 s, 2 samples) | |
File Copy 256 bufsize 500 maxblocks 47165.0 KBps (30.0 s, 2 samples) | |
File Copy 4096 bufsize 8000 maxblocks 402211.7 KBps (30.0 s, 2 samples) | |
Pipe Throughput 284207.8 lps (10.0 s, 7 samples) |
NewerOlder