07 2020 档案

摘要:在线微博数据可视化,即时采集微博数据,通过不同词云进行展示数据 完整代码gitee地址:https://gitee.com/lyc96/weibo 1.先来效果图(压压惊) 1)输入明星完整名字 2)点击查看后,可以看到明星的言语文字可视化,有六种图形,可以随意切换 2.程序功能介绍 1)根据明星姓 阅读全文
posted @ 2020-07-23 16:40 Python研究者 阅读(1255) 评论(0) 推荐(0) 编辑
摘要:使用python3对ESP8266恢复出厂设置 1.安装Python库包 pip install esptool 2.恢复出厂设置 首先要确认一下ESP8266所连接的串口号,要以串口号作为指令的参数,如我的设备是在COM3, 我运行的指令就是:esptool.exe --port COM3 era 阅读全文
posted @ 2020-07-14 23:43 Python研究者 阅读(2971) 评论(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研究者 阅读(2069) 评论(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研究者 阅读(5400) 评论(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研究者 阅读(258) 评论(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研究者 阅读(398) 评论(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研究者 阅读(2348) 评论(0) 推荐(0) 编辑