文件名称:RecipeMate:python和Django的练习
文件大小:725KB
文件格式:ZIP
更新时间:2024-04-18 10:51:56
Python
配方伴侣 关于 Django / Python练习 项目要求 在该项目中,用户将共享和搜索食谱。 想要煮菜的人可以搜索食谱。 只有注册用户可以共享食谱。 匿名用户只能使用内容。 该网站将在一些数据库中存储用户,食谱,食材,喜欢和评分,并在页面右侧显示最常用的5种食材。 “喜欢”,“不喜欢”和“费率”功能 安装 $ git clone https://github.com/yz-baskoy/RecipeMate $ python -m venv env $ source env/bin/activate $ pip install -r requirements.txt $ python manage.py migrate 用法 $ python manage.py runserver
【文件预览】:
RecipeMate-master
----recipesharing()
--------recipesharing()
--------manage.py(633B)
----accounts()
--------models.py(57B)
--------apps.py(91B)
--------templates()
--------__init__.py(0B)
--------migrations()
--------views.py(352B)
--------admin.py(63B)
--------tests.py(60B)
--------urls.py(166B)
----Backend_Exercise_v3.1.pdf(655KB)
----requirements.txt(82B)
----homepage.png(85KB)
----.gitignore(2KB)
----README.md(817B)
----blog()
--------models.py(1KB)
--------apps.py(83B)
--------templates()
--------static()
--------__init__.py(0B)
--------migrations()
--------views.py(3KB)
--------admin.py(162B)
--------tests.py(60B)
--------urls.py(631B)
--------forms.py(611B)