码迷,mamicode.com
首页 >  
搜索关键字:threading    ( 3244个结果
并行下载任务
目标 通过 Python 的多线程、多进程等手段并发执行下载音频文件 MP3文本信息 只拿出几行作为例子显示,实际还有更多信息 并行任务 concurrent.futures.ThreadPoolExecutor 多线程 threading 多进程 multiprocessing ...
分类:其他好文   时间:2020-04-07 12:35:06    阅读次数:93
ArcGIS Pro配置中删除已有所有TAB
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Windows.Input; using System.Threading.Tasks; using ...
分类:其他好文   时间:2020-04-06 14:00:06    阅读次数:71
多线程爬取博拾贝
```python from bs4 import BeautifulSoup from urllib import request import threading import re import os from lxml import html class SpiderCategory(thr... ...
分类:编程语言   时间:2020-04-06 00:13:04    阅读次数:69
python语言中threading.Thread类的使用方法
1. 编程语言里面的任务和线程是很重要的一个功能。在python里面,线程的创建有两种方式,其一使用Thread类创建 # 导入Python标准库中的Thread模块 from threading import Thread # 创建一个线程 mthread = threading.Thread(t ...
分类:编程语言   时间:2020-04-05 20:50:44    阅读次数:104
单例模式
1,单例模式的实现,基于new方法实现 """ import threading class Singleton(object): instance = None lock = threading.RLock() def __new__(cls, args, kwargs): if cls.inst ...
分类:其他好文   时间:2020-04-04 20:56:23    阅读次数:52
斑马打印机
(待测试) using System.IO;using System.Linq;using System.Runtime.InteropServices;using System.Text;using System.Threading.Tasks; namespace _01_UserTestUI{ ...
分类:其他好文   时间:2020-04-04 09:15:38    阅读次数:203
导出Excel
导出Excel 操作类 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using NPOI.SS.UserMode ...
分类:其他好文   时间:2020-04-03 16:27:50    阅读次数:58
线程模块练习
1.主线程 import threading t = threading.current_thread() print(t) # <_MainThread(MainThread, started 139908235814720)> print(t.getName()) # MainThread pr ...
分类:编程语言   时间:2020-04-01 14:47:19    阅读次数:65
单例模式
概念 单例模式是一种常用的软件设计模式,单例模式给出了一种特有的定义,即在程序运行中某个类的实例是保持不变的。她的意义主要是在程序运行中对一些特有的数据做一些基础的构建,比如整个系统的底层数据支持,这种就可以通过单例模式来实现。下面介绍一下她在python中的几种实现方式。 装饰器方式 这种实现方式 ...
分类:其他好文   时间:2020-04-01 09:15:42    阅读次数:64
python3 端口扫描类
``` # coding=utf-8 from queue import Queue import nmap import threading import requests import chardet import re import json import os # 存储所有扫描的ip和端口服... ...
分类:编程语言   时间:2020-04-01 00:27:55    阅读次数:87
3244条   上一页 1 ... 20 21 22 23 24 ... 325 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!