{"id":18879104,"url":"https://github.com/zhuima/findjob","last_synced_at":"2026-03-10T02:06:34.480Z","repository":{"id":24247627,"uuid":"101012820","full_name":"zhuima/findjob","owner":"zhuima","description":"为了方便找工作，爬去拉勾数据进行数据可视化展示分析以便找到一个合适的工作，本项目仅做学习交流使用，请勿作他用","archived":false,"fork":false,"pushed_at":"2022-03-02T14:53:24.000Z","size":1008,"stargazers_count":25,"open_issues_count":4,"forks_count":13,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-04-14T19:12:19.159Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/zhuima.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2017-08-22T02:35:26.000Z","updated_at":"2024-11-15T03:31:11.000Z","dependencies_parsed_at":"2022-07-27T04:46:13.130Z","dependency_job_id":null,"html_url":"https://github.com/zhuima/findjob","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/zhuima/findjob","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zhuima%2Ffindjob","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zhuima%2Ffindjob/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zhuima%2Ffindjob/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zhuima%2Ffindjob/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/zhuima","download_url":"https://codeload.github.com/zhuima/findjob/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zhuima%2Ffindjob/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30322638,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-10T01:36:58.598Z","status":"online","status_checked_at":"2026-03-10T02:00:06.579Z","response_time":106,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-08T06:33:23.461Z","updated_at":"2026-03-10T02:06:34.442Z","avatar_url":"https://github.com/zhuima.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"拉钩爬虫出图\n==========\n\n[![Python 2.6](https://img.shields.io/badge/python-2.6-yellow.svg)](https://www.python.org/)\n[![](https://img.shields.io/badge/flask-0.10.1-green.svg)](http://docs.jinkan.org/docs/flask/)\n[![](https://img.shields.io/badge/Scrapy-1.4.0-green.svg)](http://scrapy-chs.readthedocs.io/zh_CN/0.24/intro/tutorial.html)\n[![](https://img.shields.io/badge/bs4-0.0.1-brightgreen.svg)](https://www.crummy.com/software/BeautifulSoup/bs4/doc/index.zh.html)\n[![](https://img.shields.io/badge/requests-2.9.1-brightgreen.svg)](http://docs.python-requests.org/zh_CN/latest/user/quickstart.html)\n\n\n\n### 一、关于findjob\n\n- 爬取拉勾devops以及运维开发的数据\n- 进行可视化显示\n- 目的是为了方便找工作，爬去拉勾数据进行数据可视化展示分析以便找到一个称心如意的工作\n\n\n\n### 二、依赖环境\n\n```cpp\npip install -r requirments.txt\n```\n\n### 三、具体部署步骤\n\n\u003e 1. 进入项目目录\n\n``` cpp\ncd findjob/config/\n``` \n\n\u003e 2.创建数据库lagou,创建表lagou\n\n```cpp\nCREATE DATABASE lagou;\n\nCREATE TABLE `jobinfo` (\n  `positionId` varchar(255) DEFAULT NULL,\n  `positionName` varchar(255) DEFAULT NULL,\n  `city` varchar(255) DEFAULT NULL,\n  `createTime` varchar(255) DEFAULT NULL,\n  `salary` varchar(255) DEFAULT NULL,\n  `companyId` varchar(50) DEFAULT NULL,\n  `companyName` varchar(255) DEFAULT NULL,\n  `companyFullName` varchar(255) DEFAULT NULL,\n  `minsalary` double DEFAULT NULL,\n  `munsalary` double DEFAULT NULL,\n  `maxsalary` double DEFAULT NULL\n) ENGINE=InnoDB DEFAULT CHARSET=utf8;\n```\n\n\u003e 3.编辑service.conf, 配置数据库地址以及账号密码和flask启动绑定的端口和地址\n\n```cpp\n[common]\n    mysql_host = 127.0.0.1\n    mysql_port = 3306\n    mysql_user = root\n    mysql_passwd = 123456\n    mysql_db = lagou\n    mysql_charset = utf8\n    passport_key = 123456\n[web]\n    bind = 0.0.0.0\n    port = 8000\n```\n\n\n### 四、如何访问\n\n```cpp\n\n1.cd lagou\n2.scrapy crawl lagou\n3.cd lagou/runweb\n4.python runweb.py\n5.访问http://IP:8000/jobstomoney \u0026\u0026 访问http://IP:8000/jobstocity\n```\n\n### 五、版权\n\n代码内容采用 [新 BSD 许可](LICENSE)\n文档内容采用 [署名-禁止演绎 4.0 国际协议许可](https://creativecommons.org/licenses/by-nd/4.0/deed.zh)\n\n### 六、TODO\n\n- [ ] 集成BOSS直聘等平台数据，进行综合评测\n- [ ] 针对不同的岗位可进行筛选操作\n\n### 七、鸣谢\n\n- 核心代码贡献者: 国内大型互联网公司首席扛服务器工程师－－刘老师\n- 场景的需求才会让这个项目诞生\n\n\n### 八、Demo\n\n![](./doc/demo1.jpg \"例子1\")\n![](./doc/demo2.jpg \"例子2\")\n\n### 九、特别提示\n\n- 本项目仅做沟通交流使用，请勿用作非法用途，谢谢\n- 欢迎大家提pr\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzhuima%2Ffindjob","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzhuima%2Ffindjob","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzhuima%2Ffindjob/lists"}