嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 10 元微信扫码支付:10 元
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
基于Django 的电影评论网站,包括电影简介、电影推荐、影评管理等功能
.
├── Dockerfile
├── MovieHunter
│ ├── __init__.py
│ ├── settings.py
│ ├── urls.py
│ ├── views.py
│ └── wsgi.py
├── Python基于Django 的电影评论网站,包括电影简介、电影推荐、影评管理等功能.zip
├── add_data.py
├── data.csv
├── docker.build
├── docker.run
├── manage.py
├── movie
│ ├── __init__.py
│ ├── __pycache__
│ │ ├── __init__.cpython-35.pyc
│ │ ├── admin.cpython-35.pyc
│ │ ├── models.cpython-35.pyc
│ │ ├── urls.cpython-35.pyc
│ │ └── views.cpython-35.pyc
│ ├── admin.py
│ ├── apps.py
│ ├── initializer.py
│ ├── migrations
│ │ ├── 0001_initial.py
│ │ ├── __init__.py
│ │ └── __pycache__
│ │ ├── 0001_initial.cpython-35.pyc
│ │ ├── 0002_favorite.cpython-35.pyc
│ │ ├── 0003_seen.cpython-35.pyc
│ │ ├── 0004_expect.cpython-35.pyc
│ │ ├── 0005_auto_20170412_2330.cpython-35.pyc
│ │ └── __init__.cpython-35.pyc
│ ├── models.py
│ ├── search_cache.py
│ ├── search_index.py
│ ├── tests.py
│ ├── urls.py
│ └── views.py
├── movie.db
├── requirements.txt
├── static
│ ├── css
│ │ ├── base.css
│ │ ├── bootstrap-social.css
│ │ ├── bootstrap.min.css
│ │ ├── font-awesome.min.css
│ │ ├── index.css
│ │ └── navbar.css
│ ├── fonts
│ │ ├── FontAwesome.otf
│ │ ├── fontawesome-webfont.eot
│ │ ├── fontawesome-webfont.svg
│ │ ├── fontawesome-webfont.ttf
│ │ ├── fontawesome-webfont.woff
│ │ ├── fontawesome-webfont.woff2
│ │ ├── glyphicons-halflings-regular.eot
│ │ ├── glyphicons-halflings-regular.svg
│ │ ├── glyphicons-halflings-regular.ttf
│ │ ├── glyphicons-halflings-regular.woff
│ │ └── glyphicons-halflings-regular.woff2
│ ├── images
│ │ ├── 404.jpg
│ │ ├── movie.jpg
│ │ └── stars.png
│ └── js
│ ├── bootstrap.min.js.download
│ └── jquery-1.10.2.min.js.download
├── templates
│ ├── 404.html
│ ├── 500.html
│ ├── actor_list.html
│ ├── actor_search.html
│ ├── base.html
│ ├── expect.html
│ ├── movie_list.html
│ ├── movie_search.html
│ ├── register.html
│ ├── search_result.html
│ └── seen.html
├── trigger.sql
└── user
├── __init__.py
├── __pycache__
│ ├── __init__.cpython-35.pyc
│ ├── admin.cpython-35.pyc
│ ├── models.cpython-35.pyc
│ ├── urls.cpython-35.pyc
│ └── views.cpython-35.pyc
├── admin.py
├── apps.py
├── migrations
│ ├── __init__.py
│ └── __pycache__
│ └── __init__.cpython-35.pyc
├── models.py
├── tests.py
├── urls.py
└── views.py
15 directories, 85 files