
python
文章平均质量分 50
夜里慢慢行456
十多年开发经验,专注于后端开发与系统架构设计、数据中台、人工智能。精通Java、Python等语言,熟悉Spring Boot、Django等框架,对云计算和大数据有深入研究。曾主导多个大型项目,成功优化系统性能,提升用户体验。
热爱技术分享,常在优快云撰写技术文章,帮助他人成长。同时,我也是开源爱好者,积极参与开源项目贡献。
期待在这里与大家交流技术,共同成长!
展开
-
python修炼之pip基本命令
文章目录pip配置pip installpip freeze卸载Usage: pip <command> [options]Commands: install Install packages. download Download packages. uninstall Uninstall packages. freeze原创 2022-04-13 15:02:02 · 445 阅读 · 0 评论 -
helium源码分析
简介前段时间在做web自动化测试方面的资料收集,无意间见到了一个selenium的封装库,使用下来真是要吹一波官网:selenium-python-helium文档:https://selenium-python-helium.readthedocs.io/en/latest/api.html使用启动浏览器# A Helium function:driver = start_chrome()# A Selenium API:driver.execute_script("alert('Hi原创 2021-04-12 15:52:32 · 729 阅读 · 1 评论 -
编程修炼之python--scrapy
文章目录简介Scrapy创建工程抽取数据爬取数据存储链接添加 Following links多个爬取策略spider参数命令行工具配置创建工程创建爬虫Spiderscrapy.SpiderSpider种类CrawlSpiderXMLFeedSpiderCSVFeedSpiderSitemapSpiderSelectorItems 数据元素俗话说得好,爬虫玩的好,牢底坐的早,想玩爬虫可不要做违法乱纪的事儿偶。简介scrapy是一款非常强大的网络爬虫框架,对于数据挖掘,信息处理等领域提供了非常便捷的数据原创 2020-08-29 11:26:13 · 324 阅读 · 0 评论 -
编程修炼之python常用代码段
文章目录使用Interpreter代码类型NumbersStringsListsSetsMap/ Dict控制流程ifforIO官网https://docs.python.org/3.8/tutorial/index.htmlpython的教材太多了,此博客主要为了记录工作中常用的代码段。使用Interpreter直接在cmd输入python即可,也可以使用ipython提供更多语法提示,减少失误代码# -*- coding: encoding -*-# -*- coding: cp125原创 2020-08-27 11:26:15 · 343 阅读 · 0 评论 -
python快速搭建简单文件服务器
开发过程中经常遇到要传输文件的情况python2python -m SimpleHTTPServer 8081[python3]python -m http.server 8081原创 2020-07-28 16:19:40 · 1022 阅读 · 0 评论 -
python测试与数据分离
数据获取json:{ "test": [ { "case": "normal", "data": { "score": 0, "tag": "qiniu", "templateId": 126 }, "expected": true }, { "case":...原创 2020-07-07 23:04:37 · 1184 阅读 · 0 评论 -
python opencv 学习记录1
这里写自定义目录标题安装安装pip install opencv-python参考:官网《OpenCV轻松入门:面向python》https://docs.opencv.org/3.4/d6/d00/tutorial_py_root.html原创 2020-02-02 17:06:59 · 303 阅读 · 0 评论