E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
RTThread
多进程多线程学习1
'''多进程多线程学习1'''importmath,timeimportdatetimefromconcurrent.futuresimpo
rtThread
PoolExecutor,ProcessPoolExecutor
潇洒郎
·
2020-07-27 12:14
多进程多线程学习
RTThread
的串口驱动文件浅析
RTThread
的串口驱动文件浅析
RTThread
的串口驱动部分代码结构和Linux相似,这里将其分为两部分:一、设备无关层,二、硬件驱动层。
非同小坷
·
2020-07-27 12:08
RTThread学习
读写文件,多进程和多线程的一些总结
#coding:utf-8"""把大文件分块big_file.txt是一个500M的5位数的乱序文档多线程并没有提升速度"""importtimetxtfile=''impo
rtthread
ingdeftxtmap
firejokeshi
·
2020-07-27 11:42
python
多进程与多线程
文件操作
python多进程
Python中模块的搜索路径实例讲解
2018年3月1日13:26:09最近在工作的时候遇到一个问题,我首先是拿到别人现成的代码,代码如下:importos,sys,reimportdatetimeimpo
rtthread
ingimportsubprocessimportconfigparserimportsendmailfromloggersimportmyLogsys.path.append
安静的技术控
·
2020-07-27 11:28
Python
Rtthread
学习笔记(四)串口设备使用示例--中断接收及轮询发送
一、串口设备使用示例–中断接收及轮询发送串口数据接收和发送数据的模式分为3种:中断模式、轮询模式、DMA模式。在使用的时候,这3种模式只能选其一,若串口的打开参数oflags没有指定使用中断模式或者DMA模式,则默认使用轮询模式示例代码的主要步骤如下所示:1.首先查找串口设备获取设备句柄。2.初始化回调函数发送使用的信号量,然后以读写及中断接收方式打开串口设备。3.设置串口设备的接收回调函数,之后
Davidysw
·
2020-07-27 11:03
RT-Thread
stm32
RT-Thread 设备驱动UART浅析
RT-Thread4.0.0芯片:STM32F407RT-Thread的串口驱动框架与Linux相识,分成I/O设备框架+设备底层驱动;1.serial设备初始化及使用将配置使能的uart_obj[]进行设备注册
rtthread
_startup
weixin_30951743
·
2020-07-27 11:44
Python多线程需要同步么?
代码:impo
rtthread
ingimporttimecount=0deff(name):globalcountforiinrange(1000000):count
oaksharks
·
2020-07-25 13:00
第十章 函数式接口&Stream流
建议自定义的函数式接口都加上这个注解10.1.2、函数式接口作为方法的参数publicclassMain{publicstaticvoidmain(String[]args){//匿名内部类的方式sta
rtThread
轻松的小希
·
2020-07-21 18:00
Python多线程-ThreadLocal
impo
rtthread
ing#创建全局ThreadLocal对象loc
zy7y
·
2020-07-20 14:00
Python多线程
threadingimporttimeimpo
rtthread
ing#新线程执行的代码defloop(n:int):print(f'线程{threading.
zy7y
·
2020-07-19 19:00
用Tkinter的mainloop时插入循环用线程
impo
rtThread
classProduct():def__init__(self):passdeff1(self):whileTrue:time.sleep(1)print(1)deff2(self
爬虫王者
·
2020-07-16 07:18
GUI
python多线程执行测试用例
"""以百度搜索为例,通过不同的浏览器启动不同的线程"""fromthreadingimpo
rtThread
fromseleniumimportwebdriverfromtimeimportsleep,
Iam柒年
·
2020-07-16 07:17
test
python多线程统计大文件字数并对返回值进行计算
large_txt_count.py#_*_coding:utf-8_*_importtimeimpo
rtthread
ingimportconfigparserimportosfromdatetimeimportdatetimeclassMyThread
qq_37587216
·
2020-07-16 06:52
python3
scrapy框架开发爬虫实战——生产者消费者模式(用了requests模块)
u011109589/article/details/80519863#-*-coding:utf-8-*-#时间模块importtime#requests模块importrequests#线程impo
rtthread
liuhf_jlu
·
2020-07-16 06:23
爬虫
requests
使用tkinter实现 loading 等待效果
具体代码如下:importtkinterastkfromtkinterimportttkimpo
rtthread
ingimporttimedefformatForm(form,width,heigth)
艮木@
·
2020-07-16 04:52
python
共享线程资源导致的数据不安全与解决之python
代码示例:fromthreadingimpo
rtThread
importtimeg_num=0defwork1(num):globalg_numforiinrange(num):g_num+=1print
No later
·
2020-07-16 02:54
python编程
python线程守候setDaemon 与线程同步join
当设置多线程时,主线程会创建多个子线程,在Python中,默认情况下就是setDaemon(False),主线程执行完自己的任务以后,就退出了,此时子线程会继续执行自己的任务,直到自己的任务结束;案例impo
rtthread
ingimpor
添色增香
·
2020-07-16 01:46
python
python
python学习笔记之四[socket]
客户端2.7#coding:utf-8#python2.7#client#socket计算机之间的通信服务端和客户端服务端监听请求连接确认importsocketimpo
rtthread
ingoutString
王滕辉
·
2020-07-15 23:58
Python自动化(五)多线程
#coding:utf-8importQueueimportrandomimportrequestsimporttimeimpo
rtthread
ingurls=['http://www.baidu.com
Gavinsun
·
2020-07-15 23:32
Python
使用Python的tkinter库实现简单的聊天室
python聊天室功能,在图形界面中我们输入消息,点击发送可以在服务器端与客户端显示服务器端代码importtkinterimporttkinter.fontastkFontimportsocketimpo
rtthread
ingimporttimeimportsysclassServerUI
STARSG0d
·
2020-07-15 18:09
python开发
Python 多线程编程
通过实例化Thread类impo
rtthread
ingimporttimedefget_detail_html(url):print("getdetailhtmlstarted")time.sleep(
青穗黄
·
2020-07-15 18:02
RT-Thread操作系统在cortex-m3内核的移植原理
1.简介本文主要介绍
RTThread
操作系统在cortex-m3内核上的移植接口文件,通过本篇博客你将深入了解RTOS操作系统是怎么通过触发软中断实现任务切换的,怎么实现内核异常信息的打印功能。
FILLMOREad
·
2020-07-15 17:28
Rtthread
学习笔记(二十二)RT-Thread内核-线程间同步
一、信号量查看官方例程程序RT-线程间同步1、信号量的使用场合信号量是一种非常灵活的同步方式,可以运用在多种场合中。形成锁、同步、资源计数等关系,也能方便的用于线程与线程、中断与线程间的同步中。(1)线程同步线程同步是信号量最简单的一类应用。例如,使用信号量进行两个线程之间的同步,信号量的值初始化成0,表示具备0个信号量资源实例;而尝试获得该信号量的线程,将直接在这个信号量上进行等待。当持有信号量
Davidysw
·
2020-07-15 17:15
Python--------日报爬虫,代码运行正常
importrequestsimportjsonimpo
rtthread
ingimporttimeimportosimportrepaper_id=[]threads=0glock=threading.Lock
csdnwbdream
·
2020-07-15 17:49
python人工智能
Python多线程爬取7160网站美女图片
直接上代码#coding=UTF-8fromurllib.requestimporturlopenfrompyqueryimportPyQueryaspqimportreimportpymongoimpo
rtthread
ingclient
A_010001001110
·
2020-07-15 16:55
python
多线程
爬虫
虚空打字3.2
importwxfrompykeyboardimportPyKeyboardfrompymouseimportPyMousefromtimeimportsleepastime_sleepfromthreadingimpo
rtThread
fromwebbrowserimportopenasweb_openclassTypeThread
吴越南蛮
·
2020-07-15 16:30
Python
利用python3.5 +TK 开发股票自动交易伴侣
version1.11importtkinter.messagebox,osfromtkinterimport*fromtkinter.ttkimport*fromtkinterimportMenuimportdatetimeimpo
rtthread
ingimportpickleimporttimeimporttushareastsimportpywina
weixin_30426065
·
2020-07-15 15:23
Python自动化测试系列[v1.0.0][多线程应用]
Python多线程应用于自动化测试将多线程在测试巧妙地应用,确实会带来很多好处,并且这是充分利用机器资源执行高效率测试很好的方式#-*-coding:utf-8-*-impo
rtthread
ingfromtimeimportctimeimporttimefromseleniumimportwebdriverdeftest_search
Davieyang.D.Y
·
2020-07-15 14:53
Python快速而美丽[v1.0.0][线程相关类]
线程局部变量为了解决多线程竞争资源的问题,threading提供了一个local()函数,该函数返回一个线程局部变量,实际上就是为每一个使用该变量的线程都提供一个变量的副本impo
rtthread
ingfromconcurrent.futuresimpo
rtThread
PoolExecutor
Davieyang.D.Y
·
2020-07-15 14:52
Python快速而美丽
Python快速而美丽[v1.0.0][控制线程]
该方法的设计主要用于将大的问题拆分成若干个小问题,并为每个小问题分配线程,当所有小问题都解决了再调用主线程来进一步操作impo
rtthread
ing#定义action函数准备作为线程执行体使用defaction
Davieyang.D.Y
·
2020-07-15 13:05
Python快速而美丽
python数据增强三种方法
Rotation/reflection"""fromPILimportImage,ImageEnhance,ImageOps,ImageFileimportnumpyasnpimportrandomimpo
rtthread
ing
yx868yx
·
2020-07-15 11:38
多线程网络并发
fromsocketimport*fromthreadingimpo
rtThread
importsys#客户端处理defhandle(c):print("客户端:",c.getpeername())whileTrue
T.O.X.I.C
·
2020-07-15 09:22
使用多线程实现UDP进行数据的收发
本次虽只有代码部分,但理解起来不会有困难需要的知识点:1.UDP的基本使用2,多线程的使用代码如下:importsocketimpo
rtthread
ingdefsend(udp_socket,send_ip
久久999き
·
2020-07-15 07:25
高级
多线程编程中的join函数
#coding:utf-8#测试多线程中join的功能impo
rtthread
ing,timedefdoWaiting():print'startwaiting1:'+time.strftime('%H
weixin_34128534
·
2020-07-15 05:27
【Python】爬取理想论坛单帖爬虫
代码:#单帖爬虫,用于爬取理想论坛帖子得到发帖人,发帖时间和回帖时间,url例子见main函数frombs4importBeautifulSoupimportrequestsimpo
rtthread
ingimportreuser_agent
weixin_34074740
·
2020-07-15 05:21
爬虫
python
【爬取新浪股票实时数据--tushare】
CreatedonSatApr703:15:002018@author:Administrator"""importpandasaspdimportnumpyasnpimporttushareastsimporttimeimpo
rtthread
ingclasssina_real_data
weixin_30783913
·
2020-07-15 03:24
python_day10 多线程 协程 IO模型
#线程的PID与主进程PID一致fromthreadingimpo
rtThread
frommultiprocessingimportProcessimport
weixin_30680385
·
2020-07-15 03:07
python3.x,一个关于queue.task_done()与queue.join()的实验
最近在使用python的队列做一点东西,发现了queue.join(),这和以前使用的多线程thread.join()有什么不一样呢,自己做了个小实验,描述都在代码注释里了fromthreadingimpo
rtThread
importtimeimportrandomfromqueueimportQueuefromcollectionsimportdeque
百里九十丶
·
2020-07-15 00:53
Python
python打造多线程图片下载工具
整理一下以前写的代码,发现一个小工具,下载高清桌面图片,使用的是多线程调用wget方式下载1importre2importos3importrequests4fromthreadingimpo
rtThread
567
rO_Ot
·
2020-07-14 22:00
Python爬虫:全国大学招生信息(一):爬取数据 (多进程、多线程、代理)
importrequestsfromfake_useragentimportUserAgentfrommultiprocessingimportProcessimporturllib.requestasrimpo
rtthread
ingim
BOUNC3
·
2020-07-14 19:06
python爬虫
Selenium Grid3 做多线程分布式测试
jar-rolehub-portjava-jarselenium-server-standalone-3.9.0.jar-rolehub-port5555运行下面的代码:fromthreadingimpo
rtThread
fromselenium
Iam柒年
·
2020-07-14 19:04
test
python实现生产者和消费者
fromthreadingimpo
rtThread
fromqueueimportQueueimporttimeque=Queue(1000)classProducter(Thread):defrun(self
qq_29983883
·
2020-07-14 17:02
python
简单的多线程
一个简单的小实例importtimeimpo
rtthread
ingdefrun(n):time.sleep(1)print('task:',n)ls=[]foriinrange(50):t=threading.Thread
xin激流勇进
·
2020-07-14 17:30
Python文件传输
#-*-coding:utf-8-*-impo
rtthread
ingimporttimeimportos,sysimportshutilf
凤凰传奇的粉丝
·
2020-07-14 17:35
python
Python多线程笔记(Python_MultiThread)
b.addthread(添加线程)首先,我们要在代码中导入线程模块也就是impo
rtthread
ing。
Lyli-learning
·
2020-07-14 14:40
Python
检测是否存在弱口令问题
coding:utf-8-*-importurlparse,hackhttp,time,requests,os,sys,reimportrandom,ssl,socket,urllib,chardetimpo
rtthread
ing
freshfox
·
2020-07-14 10:02
python
Python之多线程,锁demo
#-*-coding:utf-8-*-importdatetimeimporttimeimpo
rtthread
ingimportsysreload(sys)sys.setdefaultencoding(
cxhgg
·
2020-07-14 09:18
Python
多线程
python
锁
高并发
Python多线程--生产者与消费者问题
importrandomimpo
rtthread
ingimporttimeempty=threadi
Marvin_Huoshan
·
2020-07-14 05:35
OS
python基础之线程
简单示例impo
rtthread
ingimporttimedefworker(num):time.sleep(1)print(num)return#target参数是线程执行的函数,args是函数的参数
尛白兔
·
2020-07-13 22:11
记一个爬虫实例--关键字爬图
网上看来的代码,改一改版本问题,发现蛮好用importrequestsfromthreadingimpo
rtThread
importreimporttimeimporthashlibclassBaiDu
脚踏实地的鸟
·
2020-07-13 20:05
其他
上一页
36
37
38
39
40
41
42
43
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他