Skip to content
  • About Me

charlie笔记

A programmer’s note boke for work and life

python3使用urllib示例取googletranslate(谷歌翻译)

12 9月10 11月 by helenadmin

代码如下: #!/usr/bin/env python3# -*- coding: utf-8 -*-# fi […]

Continue reading
Posted in Python · Leave a comment

python使用urllib模块和pyquery实现阿里巴巴排名查询

12 9月10 11月 by helenadmin

urllib基础模块的应用,通过该类获取到url中的html文档信息,内部可以重写代理的获取方法 代码如下: […]

Continue reading
Posted in Python · Leave a comment

使用go和python递归删除.dsstore文件的方法

12 9月10 11月 by helenadmin

python版本: 代码如下: #!/usr/bin/env pythonimport os, sys;def […]

Continue reading
Posted in Python · Leave a comment

python的urllib模块显示下载进度示例

12 9月10 11月 by helenadmin

代码如下: def report_hook(count, block_size, total_size):&# […]

Continue reading
Posted in Python · Leave a comment

python中for循环详解

12 9月10 11月 by helenadmin

与其它大多数语言一样,python 也拥有 for 循环。你到现在还未曾看到它们的唯一原因就是,python […]

Continue reading
Posted in Python · Leave a comment

python在命令行下使用google翻译(带语音)

12 9月10 11月 by helenadmin

说明1. 使用google翻译服务获得翻译和语音;2. 使用mplayer播放获得的声音文件,因此,如果要播放 […]

Continue reading
Posted in Python · Leave a comment

c++生成dll使用python调用dll的方法

12 9月10 11月 by helenadmin

第一步,建立一个cpp的dll工程,然后写如下代码,生成dll 代码如下: #include #define […]

Continue reading
Posted in Python · Leave a comment

python支持断点续传的多线程下载示例

12 9月10 11月 by helenadmin

代码如下: #! /usr/bin/env python#coding=utf-8 from __future […]

Continue reading
Posted in Python · Leave a comment

python获取豆瓣电影简介代码分享

12 9月10 11月 by helenadmin

代码如下: #!/usr/bin/env python#coding:utf-8import re,sysim […]

Continue reading
Posted in Python · Leave a comment

python获得图片base64编码示例

12 9月10 11月 by helenadmin

代码如下: #!/usr/bin/env python# -*- coding: utf-8 -*- impo […]

Continue reading
Posted in Python · Leave a comment

linux系统使用python获取内存使用信息脚本分享

12 9月10 11月 by helenadmin

代码如下: #!/usr/bin/env python from __future__ import prin […]

Continue reading
Posted in Python · Leave a comment

python构造icmpecho请求和实现网络探测器功能代码分享

12 9月10 11月 by helenadmin

python发送icmp echo requesy请求 代码如下: import socketimport s […]

Continue reading
Posted in Python · Leave a comment

linux系统使用python监控apache服务器进程脚本分享

12 9月10 11月 by helenadmin

crtrl.py监控apache服务器进程的python 脚本 代码如下: !/usr/bin/env pyt […]

Continue reading
Posted in Python · Leave a comment

python发腾讯微博代码分享

12 9月10 11月 by helenadmin

代码如下: import urllib.parse,os.path,time,sys,re,urllib.re […]

Continue reading
Posted in Python · Leave a comment

python获取当前时间的方法

12 9月10 11月 by helenadmin

我有的时候写程序要用到当前时间,我就想用python去取当前的时间,虽然不是很难,但是老是忘记,用一次丢一次, […]

Continue reading
Posted in Python · Leave a comment

python实现2014火车票查询代码分享

12 9月10 11月 by helenadmin

代码基于python3.3.3,pyqt5.1.1 代码如下: # -*- coding: utf-8 -*- […]

Continue reading
Posted in Python · Leave a comment

python生成随机数的方法

12 9月10 11月 by helenadmin

如果你对在python生成随机数与random模块中最常用的几个函数的关系与不懂之处,下面的文章就是对pyth […]

Continue reading
Posted in Python · Leave a comment

python模拟登陆tom邮箱示例分享

12 9月10 11月 by helenadmin

代码如下: def logintom(username, password): url1 = ”& […]

Continue reading
Posted in Python · Leave a comment

python发送伪造的arp请求

12 9月10 11月 by helenadmin

代码如下: #!/usr/bin/env pythonimport socket s = socket.soc […]

Continue reading
Posted in Python · Leave a comment

python正则匹配查询港澳通行证办理进度示例分享

12 9月10 11月 by helenadmin

代码如下: import socketimport re ”’广东省公安厅出入境政务服 […]

Continue reading
Posted in Python · Leave a comment

python模拟新浪微博登陆功能(新浪微博爬虫)

12 9月10 11月 by helenadmin

1、主函数(weibomain.py): 代码如下: import urllib2import cookiel […]

Continue reading
Posted in Python · Leave a comment

python模拟登录百度代码分享(获取百度贴吧等级)

12 9月10 11月 by helenadmin

代码如下: # -*- coding: utf8 -*-”’created on 20 […]

Continue reading
Posted in Python · Leave a comment

python定时采集摄像头图像上传ftp服务器功能实现

12 9月10 11月 by helenadmin

首先是截图,从摄像头截取一幅图像: 代码如下: while 1: #测试摄像头的存在 try: cam = d […]

Continue reading
Posted in Python · Leave a comment

python调用cmd复制文件代码分享

12 9月10 11月 by helenadmin

代码如下: import os def load() : filename = os.getcwd() + r […]

Continue reading
Posted in Python · Leave a comment

win7安装python生成随机数代码分享

12 9月10 11月 by helenadmin

代码如下: import random def genrand(small, big) : return sm […]

Continue reading
Posted in Python · Leave a comment

python抓取京东商城手机列表url实例代码

12 9月10 11月 by helenadmin

代码如下: #-*- coding: utf-8 -*-”’created on 20 […]

Continue reading
Posted in Python · Leave a comment

python抓取discuz!用户名脚本代码

12 9月10 11月 by helenadmin

最近学习python,于是就用python写了一个抓取discuz!用户名的脚本,代码很少但是很搓。思路很简单 […]

Continue reading
Posted in Python · Leave a comment

python正则表达式判断字符串是否是全部小写示例

12 9月10 11月 by helenadmin

代码如下: # -*- coding: cp936 -*-import re s1 = ‘adkk […]

Continue reading
Posted in Python · Leave a comment

netbeans7安装python插件的方法图解

12 9月10 11月 by helenadmin

我们可以手动来添加地址和安装。如图所示: 方法:netbeans界面,“工具”->“插件”, 点击“设置”-> […]

Continue reading
Posted in Python · Leave a comment

python多线程http下载实现示例

12 9月10 11月 by helenadmin

测试平台 ubuntu 13.04 x86_64 python 2.7.4 花了将近两个小时, 问题主要刚开始 […]

Continue reading
Posted in Python · Leave a comment

文章导航

Previous 1 … 7 8 9 10 11 12 13 14 15 16 17 … 260 Next

近期文章

  • 15款互联网人必备的AI工具,效率提升2倍
  • 多个ChatGPT通用指令
  • Python采集biaozhun政府文件
  • TensorFlow库:Python中的深度学习
  • python 本地密码管理应用

近期评论

  • helenadmin发表在《Python采集biaozhun政府文件》
  • helenadmin发表在《写给程序员的一封公开信》
  • Google发表在《About Me》
  • helenadmin发表在《ES(ElasticSearch)分布式全文搜索引擎及使用方式》
  • buy viagra发表在《About Me》

文章归档

  • 2024年12月
  • 2024年9月
  • 2024年6月
  • 2024年5月
  • 2024年3月
  • 2024年2月
  • 2024年1月
  • 2023年12月
  • 2023年11月
  • 2023年10月
  • 2023年9月
  • 2023年8月
  • 2023年7月
  • 2023年6月
  • 2023年5月
  • 2023年4月
  • 2023年3月
  • 2023年2月
  • 2023年1月
  • 2022年12月
  • 2022年8月
  • 2022年7月
  • 2022年6月
  • 2022年5月
  • 2022年4月
  • 2022年3月
  • 2022年2月
  • 2022年1月
  • 2021年12月
  • 2021年11月
  • 2021年10月
  • 2021年9月
  • 2021年8月
  • 2021年7月
  • 2021年6月
  • 2021年5月
  • 2021年4月
  • 2021年3月
  • 2021年1月
  • 2020年12月
  • 2020年11月
  • 2020年10月
  • 2020年9月
  • 2020年8月
  • 2020年7月
  • 2020年6月
  • 2020年5月
  • 2020年4月
  • 2020年3月
  • 2020年2月
  • 2020年1月
  • 2019年12月
  • 2019年11月
  • 2019年10月
  • 2019年9月
  • 2019年8月
  • 2019年7月
  • 2019年6月
  • 2019年5月
  • 2019年4月
  • 2019年3月
  • 2019年2月
  • 2019年1月
  • 2018年12月
  • 2018年11月
  • 2018年10月
  • 2018年9月
  • 2018年7月
  • 2018年6月
  • 2018年3月
  • 2018年2月
  • 2018年1月
  • 2017年12月
  • 2017年11月
  • 2017年10月
  • 2017年9月
  • 2017年8月
  • 2017年7月
  • 2017年6月
  • 2017年5月
  • 2017年4月
  • 2017年3月
  • 2017年1月
  • 2016年12月
  • 2016年11月
  • 2016年10月
  • 2016年9月
  • 2016年8月
  • 2016年7月
  • 2016年6月
  • 2016年5月
  • 2016年4月
  • 2016年3月
  • 2016年2月
  • 2015年8月
  • 2015年7月
  • 2015年6月
  • 2015年5月
  • 2014年7月
  • 2014年6月
  • 2014年5月
  • 1970年1月

分类目录

  • Database
  • focus—-实时热搜
  • IC设计
  • js&jquery
  • PHP
  • Python
  • 新技术研习
  • 服务器相关技术
  • 算法
  • 缓存技术
  • 随笔

功能

  • 注册
  • 登录
  • 文章RSS
  • 评论RSS
  • WordPress.org
© 2025 charlie笔记 ·
程序猿 散文朗诵 鬼故事 佛学网