资源简介

bootstrap案例模板

资源截图

代码片段和文件信息

#!/usr/bin/env python2.7
# pylint: disable=C0301
from __future__ import absolute_import unicode_literals print_function division

from sys import argv
from os import environ stat chdir remove as _delete_file
from os.path import dirname basename abspath realpath expandvars
from hashlib import sha256
from subprocess import check_call as run
from json import load dump as save
from contextlib import contextmanager
from datetime import datetime

from boto.s3.connection import S3Connection
from boto.s3.key import Key
from boto.exception import S3ResponseError


CONFIG_FILE = ‘./S3Cachefile.json‘
UPLOAD_TODO_FILE = ‘./S3CacheTodo.json‘
BYTES_PER_MB = 1024 * 1024


@contextmanager
def timer():
    start = datetime.utcnow()
    yield
    end = datetime.utcnow()
    elapsed = end - start

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2015-06-16 16:13  bootstrap-3.3.5\
     文件         191  2015-06-16 16:13  bootstrap-3.3.5\.editorconfig
     文件         363  2015-06-16 16:13  bootstrap-3.3.5\.gitattributes
     文件         380  2015-06-16 16:13  bootstrap-3.3.5\.gitignore
     文件        3265  2015-06-16 16:13  bootstrap-3.3.5\.travis.yml
     文件          17  2015-06-16 16:13  bootstrap-3.3.5\CNAME
     文件       13492  2015-06-16 16:13  bootstrap-3.3.5\CONTRIBUTING.md
     文件       14881  2015-06-16 16:13  bootstrap-3.3.5\Gruntfile.js
     文件        1084  2015-06-16 16:13  bootstrap-3.3.5\LICENSE
     文件        6994  2015-06-16 16:13  bootstrap-3.3.5\README.md
     文件        1061  2015-06-16 16:13  bootstrap-3.3.5\_config.yml
     文件         640  2015-06-16 16:13  bootstrap-3.3.5\bower.json
     文件         743  2015-06-16 16:13  bootstrap-3.3.5\composer.json
     目录           0  2015-06-16 16:13  bootstrap-3.3.5\dist\
     目录           0  2015-06-16 16:13  bootstrap-3.3.5\dist\css\
     文件       26132  2015-06-16 16:13  bootstrap-3.3.5\dist\css\bootstrap-theme.css
     文件       47721  2015-06-16 16:13  bootstrap-3.3.5\dist\css\bootstrap-theme.css.map
     文件       23357  2015-06-16 16:13  bootstrap-3.3.5\dist\css\bootstrap-theme.min.css
     文件      147430  2015-06-16 16:13  bootstrap-3.3.5\dist\css\bootstrap.css
     文件      390518  2015-06-16 16:13  bootstrap-3.3.5\dist\css\bootstrap.css.map
     文件      122540  2015-06-16 16:13  bootstrap-3.3.5\dist\css\bootstrap.min.css
     目录           0  2015-06-16 16:13  bootstrap-3.3.5\dist\fonts\
     文件       20127  2015-06-16 16:13  bootstrap-3.3.5\dist\fonts\glyphicons-halflings-regular.eot
     文件      108738  2015-06-16 16:13  bootstrap-3.3.5\dist\fonts\glyphicons-halflings-regular.svg
     文件       45404  2015-06-16 16:13  bootstrap-3.3.5\dist\fonts\glyphicons-halflings-regular.ttf
     文件       23424  2015-06-16 16:13  bootstrap-3.3.5\dist\fonts\glyphicons-halflings-regular.woff
     文件       18028  2015-06-16 16:13  bootstrap-3.3.5\dist\fonts\glyphicons-halflings-regular.woff2
     目录           0  2015-06-16 16:13  bootstrap-3.3.5\dist\js\
     文件       68890  2015-06-16 16:13  bootstrap-3.3.5\dist\js\bootstrap.js
     文件       36816  2015-06-16 16:13  bootstrap-3.3.5\dist\js\bootstrap.min.js
     文件         484  2015-06-16 16:13  bootstrap-3.3.5\dist\js\npm.js
............此处省略390个文件信息

评论

共有 条评论