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
#!/usr/bin/python | |
# -*- coding: utf-8 -*- | |
# Filename: get_douban_album_pic.py | |
import urllib2, re, os, sys | |
from os.path import basename | |
from urlparse import urlsplit | |
def fetch(url): | |
try: |
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
body { | |
white-space: pre; | |
font-family: "Source Code Pro", consolas; | |
color: white; | |
background: #2d3845; | |
font-size: 13px; | |
} | |
.property { | |
color: orange; |
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
/*强制不换行*/ | |
div { | |
white-space: nowrap; | |
word-wrap: normal; | |
} | |
/*自动换行*/ | |
div { |