├── .gitignore ├── README.md ├── app ├── __init__.py ├── admin.py ├── apps.py ├── forms.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20200210_1715.py │ ├── 0003_product_expire.py │ ├── 0004_remove_product_desc.py │ ├── 0005_auto_20200211_1132.py │ └── __init__.py ├── models.py ├── templatetags │ ├── __init__.py │ └── app_tag.py ├── tests.py ├── urls.py └── views.py ├── helpers.py ├── manage.py ├── mask.conf ├── mask ├── __init__.py ├── settings.py ├── urls.py └── wsgi.py ├── python_mask.sql ├── requirements.txt ├── static ├── css │ ├── semantic.custom.css │ ├── style.css │ └── style_v2.css ├── img │ ├── .DS_Store │ ├── demo01.png │ ├── demo02.png │ ├── demo03.png │ ├── ic_buy.png │ ├── ic_consumer.png │ ├── ic_provider.png │ ├── ic_sell.png │ └── logo.png └── js │ ├── clipboard.min.js │ ├── common-v2.js │ ├── function-new.js │ ├── jquery.min.js │ ├── layer.js │ ├── m-detail.js │ ├── webcam.js │ └── webcam.min.js ├── templates ├── app │ ├── commit.html │ ├── demo.html │ ├── detail.html │ ├── index.html │ └── search.html └── base │ ├── base.html │ ├── footer.html │ ├── form_errors.html │ ├── form_messages.html │ ├── header.html │ └── page_nav.html └── 开发过程.md /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | __pycache__ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeeeeeeek/python_mask/HEAD/README.md -------------------------------------------------------------------------------- /app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeeeeeeek/python_mask/HEAD/app/__init__.py -------------------------------------------------------------------------------- /app/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeeeeeeek/python_mask/HEAD/app/admin.py -------------------------------------------------------------------------------- /app/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeeeeeeek/python_mask/HEAD/app/apps.py -------------------------------------------------------------------------------- /app/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeeeeeeek/python_mask/HEAD/app/forms.py -------------------------------------------------------------------------------- /app/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeeeeeeek/python_mask/HEAD/app/migrations/0001_initial.py -------------------------------------------------------------------------------- /app/migrations/0002_auto_20200210_1715.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeeeeeeek/python_mask/HEAD/app/migrations/0002_auto_20200210_1715.py -------------------------------------------------------------------------------- /app/migrations/0003_product_expire.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeeeeeeek/python_mask/HEAD/app/migrations/0003_product_expire.py -------------------------------------------------------------------------------- /app/migrations/0004_remove_product_desc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeeeeeeek/python_mask/HEAD/app/migrations/0004_remove_product_desc.py -------------------------------------------------------------------------------- /app/migrations/0005_auto_20200211_1132.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeeeeeeek/python_mask/HEAD/app/migrations/0005_auto_20200211_1132.py -------------------------------------------------------------------------------- /app/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeeeeeeek/python_mask/HEAD/app/models.py -------------------------------------------------------------------------------- /app/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/templatetags/app_tag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeeeeeeek/python_mask/HEAD/app/templatetags/app_tag.py -------------------------------------------------------------------------------- /app/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeeeeeeek/python_mask/HEAD/app/tests.py -------------------------------------------------------------------------------- /app/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeeeeeeek/python_mask/HEAD/app/urls.py -------------------------------------------------------------------------------- /app/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeeeeeeek/python_mask/HEAD/app/views.py -------------------------------------------------------------------------------- /helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeeeeeeek/python_mask/HEAD/helpers.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeeeeeeek/python_mask/HEAD/manage.py -------------------------------------------------------------------------------- /mask.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeeeeeeek/python_mask/HEAD/mask.conf -------------------------------------------------------------------------------- /mask/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mask/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeeeeeeek/python_mask/HEAD/mask/settings.py -------------------------------------------------------------------------------- /mask/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeeeeeeek/python_mask/HEAD/mask/urls.py -------------------------------------------------------------------------------- /mask/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeeeeeeek/python_mask/HEAD/mask/wsgi.py -------------------------------------------------------------------------------- /python_mask.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeeeeeeek/python_mask/HEAD/python_mask.sql -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeeeeeeek/python_mask/HEAD/requirements.txt -------------------------------------------------------------------------------- /static/css/semantic.custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeeeeeeek/python_mask/HEAD/static/css/semantic.custom.css -------------------------------------------------------------------------------- /static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeeeeeeek/python_mask/HEAD/static/css/style.css -------------------------------------------------------------------------------- /static/css/style_v2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeeeeeeek/python_mask/HEAD/static/css/style_v2.css -------------------------------------------------------------------------------- /static/img/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeeeeeeek/python_mask/HEAD/static/img/.DS_Store -------------------------------------------------------------------------------- /static/img/demo01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeeeeeeek/python_mask/HEAD/static/img/demo01.png -------------------------------------------------------------------------------- /static/img/demo02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeeeeeeek/python_mask/HEAD/static/img/demo02.png -------------------------------------------------------------------------------- /static/img/demo03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeeeeeeek/python_mask/HEAD/static/img/demo03.png -------------------------------------------------------------------------------- /static/img/ic_buy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeeeeeeek/python_mask/HEAD/static/img/ic_buy.png -------------------------------------------------------------------------------- /static/img/ic_consumer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeeeeeeek/python_mask/HEAD/static/img/ic_consumer.png -------------------------------------------------------------------------------- /static/img/ic_provider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeeeeeeek/python_mask/HEAD/static/img/ic_provider.png -------------------------------------------------------------------------------- /static/img/ic_sell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeeeeeeek/python_mask/HEAD/static/img/ic_sell.png -------------------------------------------------------------------------------- /static/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeeeeeeek/python_mask/HEAD/static/img/logo.png -------------------------------------------------------------------------------- /static/js/clipboard.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeeeeeeek/python_mask/HEAD/static/js/clipboard.min.js -------------------------------------------------------------------------------- /static/js/common-v2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeeeeeeek/python_mask/HEAD/static/js/common-v2.js -------------------------------------------------------------------------------- /static/js/function-new.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeeeeeeek/python_mask/HEAD/static/js/function-new.js -------------------------------------------------------------------------------- /static/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeeeeeeek/python_mask/HEAD/static/js/jquery.min.js -------------------------------------------------------------------------------- /static/js/layer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeeeeeeek/python_mask/HEAD/static/js/layer.js -------------------------------------------------------------------------------- /static/js/m-detail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeeeeeeek/python_mask/HEAD/static/js/m-detail.js -------------------------------------------------------------------------------- /static/js/webcam.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeeeeeeek/python_mask/HEAD/static/js/webcam.js -------------------------------------------------------------------------------- /static/js/webcam.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeeeeeeek/python_mask/HEAD/static/js/webcam.min.js -------------------------------------------------------------------------------- /templates/app/commit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeeeeeeek/python_mask/HEAD/templates/app/commit.html -------------------------------------------------------------------------------- /templates/app/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeeeeeeek/python_mask/HEAD/templates/app/demo.html -------------------------------------------------------------------------------- /templates/app/detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeeeeeeek/python_mask/HEAD/templates/app/detail.html -------------------------------------------------------------------------------- /templates/app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeeeeeeek/python_mask/HEAD/templates/app/index.html -------------------------------------------------------------------------------- /templates/app/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeeeeeeek/python_mask/HEAD/templates/app/search.html -------------------------------------------------------------------------------- /templates/base/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeeeeeeek/python_mask/HEAD/templates/base/base.html -------------------------------------------------------------------------------- /templates/base/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeeeeeeek/python_mask/HEAD/templates/base/footer.html -------------------------------------------------------------------------------- /templates/base/form_errors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeeeeeeek/python_mask/HEAD/templates/base/form_errors.html -------------------------------------------------------------------------------- /templates/base/form_messages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeeeeeeek/python_mask/HEAD/templates/base/form_messages.html -------------------------------------------------------------------------------- /templates/base/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeeeeeeek/python_mask/HEAD/templates/base/header.html -------------------------------------------------------------------------------- /templates/base/page_nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeeeeeeek/python_mask/HEAD/templates/base/page_nav.html -------------------------------------------------------------------------------- /开发过程.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeeeeeeek/python_mask/HEAD/开发过程.md --------------------------------------------------------------------------------