All Projects → zkqiang → Job Web Demo

zkqiang / Job Web Demo

Licence: mit
Python Web 实战项目,Flask + Jinja2 + Bootstrap 开发的招聘网站

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Job Web Demo

Bootstrap Flask
Bootstrap 4 helper for Flask/Jinja2.
Stars: ✭ 441 (+406.9%)
Mutual labels:  flask, bootstrap, jinja2
Flaskex
Simple flask example for quick prototypes and small applications
Stars: ✭ 679 (+680.46%)
Mutual labels:  flask, website
Gae Init
Google App Engine based on Python, Flask, RESTful, Bootstrap and tons of other cool features
Stars: ✭ 533 (+512.64%)
Mutual labels:  flask, bootstrap
Fuse
A simple file sharing web service in Vue.js and Flask
Stars: ✭ 7 (-91.95%)
Mutual labels:  flask, bootstrap
Flasksaas
A great starting point to build your SaaS in Flask & Python, with Stripe subscription billing 🚀
Stars: ✭ 412 (+373.56%)
Mutual labels:  flask, bootstrap
Beibq
基于flask开发类似gitbook的知识管理网站。 http://demo.beibq.cn
Stars: ✭ 480 (+451.72%)
Mutual labels:  flask, bootstrap
Tableexport
The simple, easy-to-implement library to export HTML tables to xlsx, xls, csv, and txt files.
Stars: ✭ 781 (+797.7%)
Mutual labels:  flask, bootstrap
Uix Kit
A free UI toolkit based on some common libraries for building beautiful responsive website, compatible with Bootstrap v4.
Stars: ✭ 318 (+265.52%)
Mutual labels:  bootstrap, website
P2p
一个基于 python 的 flask 框架的资讯网站, http://119.29.100.53:8086/
Stars: ✭ 28 (-67.82%)
Mutual labels:  flask, website
Freemo
A free resume,portfolio and CV HTML template
Stars: ✭ 30 (-65.52%)
Mutual labels:  bootstrap, website
Cancer Donation Portal Python Flask App
Flask App for Cancer Donation Portal using basic Python, SQLite3, HTML, CSS and Javascript
Stars: ✭ 32 (-63.22%)
Mutual labels:  flask, website
Cookiecutter Flask
A flask template with Bootstrap 4, asset bundling+minification with webpack, starter templates, and registration/authentication. For use with cookiecutter.
Stars: ✭ 3,967 (+4459.77%)
Mutual labels:  flask, bootstrap
Swarmops
Manage swarm clusters to provide a more concise and compact intermediate layer web application with swarm ui.
Stars: ✭ 63 (-27.59%)
Mutual labels:  flask, bootstrap
Responsiveframework
Easily make Flutter apps responsive. Automatically adapt UI to different screen sizes. Responsiveness made simple. Demo: https://gallery.codelessly.com/flutterwebsites/minimal/
Stars: ✭ 476 (+447.13%)
Mutual labels:  bootstrap, website
Pepy
pepy is a site to get statistics information about any Python package.
Stars: ✭ 369 (+324.14%)
Mutual labels:  flask, website
Sparrow
运维管理平台(python3+flask+pycharts+apscheduler+gunicorn),模块化结构设计,底层依托mysql、influxdb、elasticsearch、zabbix、k8s等数据源数据
Stars: ✭ 723 (+731.03%)
Mutual labels:  flask, website
Issue Label Bot
Code For The Issue Label Bot, an App that automatically labels issues using machine learning, available on the GitHub Marketplace. This is also code for the blog article: "How to automate tasks on GitHub with machine learning for fun and profit"
Stars: ✭ 292 (+235.63%)
Mutual labels:  flask, bootstrap
Wikipedia Map
A web app for visualizing the connections between Wikipedia pages.
Stars: ✭ 302 (+247.13%)
Mutual labels:  flask, website
Databook
A facebook for data
Stars: ✭ 26 (-70.11%)
Mutual labels:  flask, bootstrap
Laravel Settings
Simple Settings package for a laravel application
Stars: ✭ 45 (-48.28%)
Mutual labels:  bootstrap, website

简单的招聘网站示例

基于 Flask / Jinja2 / Bootstrap / MySQL 开发,仿照拉勾网的风格,实现了招聘网站的必需功能

环境

  • Python 3
  • MySQL

快速开始

1. 安装 Python 依赖

$ pip3 install -r requirements.txt

2. 修改配置文件

根据自己情况,修改 job_web/config.py

主要是 SQLALCHEMY_DATABASE_URI 数据库的链接

3. 创建数据库

根据上面配置中的库名,创建数据库

4. 利用 flask-migrate 建表

命令行终端,先进入项目目录,然后依次执行下列命令:

$ export FLASK_APP=manage.py
# windows 系统:set FLASK_APP=manage.py

$ flask db init
$ flask db migrate
$ flask db upgrade

5. 生成测试数据(可选)

可执行 test_data.py 生成一些随机数据

实现功能

  • 个人和企业两种角色的注册登录编辑
  • 职位和企业的索引页、详情页及搜索功能
  • 个人简历上传和投递操作
  • 企业对职位的增删改查上下线,及对简历的反馈处理

TODO

  • [ ] 职位和企业的条件筛选
  • [ ] 管理员后台和权限功能
  • [ ] 简历支持 PDF,并将 PDF 转图片在线浏览
  • [ ] 职位和企业该为列表展示
  • [ ] 个人对职位收藏

运行截图

pic pic pic pic pic

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].