上一页 1 ··· 32 33 34 35 36 37 38 39 40 ··· 56 下一页
摘要: 在线微博数据可视化 在线微博数据可视化,即时采集微博数据,通过不同词云进行展示数据 完整代码gitee地址:https://gitee.com/lyc96/weibo 1.先来效果图(压压惊) 1)输入明星完整名字 2)点击查看后,可以看到明星的言语文字... 阅读全文
posted @ 2020-08-19 13:02 Python研究者 阅读(117) 评论(0) 推荐(0) 编辑
摘要: 1.安装pyinstaller pip install pyinstaller 2.打包exe程序打开DOS窗口,输入命令:pyinstaller -F -w *.py(星号是.py的全部路径) pyinstaller -F -w G:\automation\test.py 如下图显示,打包成功,会 阅读全文
posted @ 2020-08-12 15:08 Python研究者 阅读(2467) 评论(0) 推荐(0) 编辑
摘要: 安装nginx:https://www.cnblogs.com/gede/p/11011693.html 获取免费https证书:https://certbot.eff.org/lets-encrypt/ubuntuxenial-nginx 关注公众号:Python爬虫数据分析挖掘,学习更多pyth 阅读全文
posted @ 2020-08-03 08:05 Python研究者 阅读(218) 评论(0) 推荐(0) 编辑
摘要: 在线微博数据可视化,即时采集微博数据,通过不同词云进行展示数据 完整代码gitee地址:https://gitee.com/lyc96/weibo 1.先来效果图(压压惊) 1)输入明星完整名字 2)点击查看后,可以看到明星的言语文字可视化,有六种图形,可以随意切换 2.程序功能介绍 1)根据明星姓 阅读全文
posted @ 2020-07-23 16:40 Python研究者 阅读(1225) 评论(0) 推荐(0) 编辑
摘要: 使用python3对ESP8266恢复出厂设置 1.安装Python库包 pip install esptool 2.恢复出厂设置 首先要确认一下ESP8266所连接的串口号,要以串口号作为指令的参数,如我的设备是在COM3, 我运行的指令就是:esptool.exe --port COM3 era 阅读全文
posted @ 2020-07-14 23:43 Python研究者 阅读(2881) 评论(0) 推荐(0) 编辑
摘要: 1 #include <Arduino.h> 2 #include <U8g2lib.h> 3 #include <Wire.h> 4 5 //iic驱动方式 6 U8G2_SSD1306_128X64_NONAME_1_SW_I2C u8g2(U8G2_R0, /* clock=*/ SCL, / 阅读全文
posted @ 2020-07-13 17:53 Python研究者 阅读(2058) 评论(0) 推荐(0) 编辑
摘要: opencv环境 1、访问Python Extension Packages for Windows,下载python对应版本的opencv。 比如小编下载的是opencv_python-3.3.0+contrib-cp36-cp36m-win_amd64.whl,cp36表示Python是3.6版 阅读全文
posted @ 2020-07-07 20:47 Python研究者 阅读(5377) 评论(0) 推荐(0) 编辑
摘要: 先看案例 原图 生成后(放大看看,嘿嘿嘿) 上代码: from PIL import Image, ImageDraw, ImageFont font_size = 7 text = "我喜欢你!" img_path = "yy.jpg" img_raw = Image.open(img_path) 阅读全文
posted @ 2020-07-06 17:52 Python研究者 阅读(253) 评论(0) 推荐(0) 编辑
摘要: anaconda基本使用 - 主要是一个虚拟环境管理器 -还是一个安装包管理器 - conda list: 显示anaconda安装的包 - conda env list: 显示anaconda你的虚拟环境列表 - conda create -n oop python=3.7 创建一个名为oop的虚 阅读全文
posted @ 2020-07-06 10:49 Python研究者 阅读(397) 评论(0) 推荐(0) 编辑
摘要: import time import pygame #3、设置音乐绝对路径 #音乐路径 filepath=r"13.mp3" #4、#初始化 pygame.mixer.init() #加载音乐 track = pygame.mixer.music.load(filepath) #播放音乐 pygam 阅读全文
posted @ 2020-07-04 21:07 Python研究者 阅读(2333) 评论(0) 推荐(0) 编辑
上一页 1 ··· 32 33 34 35 36 37 38 39 40 ··· 56 下一页