Skip to content
  • About Me

charlie笔记

A programmer’s note boke for work and life

月份:2017年9月

python中使用sys模板和logging模块获取行号和函数名的方法

12 9月10 11月 by helenadmin

对于python,这几天一直有两个问题在困扰我:1.python中没办法直接取得当前的行号和函数名。这是有人在 […]

Continue reading
Posted in Python · Leave a comment

使用python实现递归版汉诺塔示例(汉诺塔递归算法)

12 9月10 11月 by helenadmin

利用python实现的汉诺塔。带有图形演示 代码如下: from time import sleep def […]

Continue reading
Posted in Python · Leave a comment

python实现数通设备tftp备份配置文件示例

12 9月10 11月 by helenadmin

环境:【wind2003[open tftp server] + virtualbox:ubuntn10 se […]

Continue reading
Posted in Python · Leave a comment

python实现巡检系统(solaris)示例

12 9月10 11月 by helenadmin

使用python + shell 编写,是一个简易solaris系统巡检程序 代码如下: #!/usr/bin […]

Continue reading
Posted in Python · Leave a comment

python实现类似ftp传输文件的网络程序示例

12 9月10 11月 by helenadmin

此代码在linux上编写,适用于linux,windows下需要更改几个命令。1、客户端输入ip,端口,可服务 […]

Continue reading
Posted in Python · Leave a comment

python实现百度关键词排名查询

12 9月10 11月 by helenadmin

就是一个简单的python查询百度关键词排名的函数,以下是一些简介:1、ua随机2、操作简单方便,直接getr […]

Continue reading
Posted in Python · Leave a comment

python获取网页状态码示例

12 9月10 11月 by helenadmin

代码很简单,只需要2行代码就可实现想要的功能,虽然很短,但确实使用,主要使用了requests库。 测试2xx […]

Continue reading
Posted in Python · Leave a comment

python实现数通设备端口监控示例

12 9月10 11月 by helenadmin

最近因工作需要,上面要求,每天需上报运维的几百数通设备端口使用情况【】,虽然有现成网管监控工具监控设备状态,但 […]

Continue reading
Posted in Python · Leave a comment

python操作xml文件示例

12 9月10 11月 by helenadmin

代码如下: def get_seed_data(filename):dom = minidom.parse(f […]

Continue reading
Posted in Python · Leave a comment

python单线程实现多个定时器示例

12 9月10 11月 by helenadmin

单线程实现多个定时器 newtimer.py 代码如下: #!/usr/bin/env python from […]

Continue reading
Posted in Python · Leave a comment

使用python解析xml成对应的html示例分享

12 9月10 11月 by helenadmin

sax将dd.xml解析成html。当然啦,如果得到了 […]

Continue reading
Posted in Python · Leave a comment

python实现猜数字游戏(无重复数字)示例分享

12 9月10 11月 by helenadmin

代码如下: import time, random class guessnum: def __init__( […]

Continue reading
Posted in Python · Leave a comment

python爬虫框架scrapy安装使用步骤

12 9月10 11月 by helenadmin

一、爬虫框架scarpy简介scrapy 是一个快速的高层次的屏幕抓取和网页爬虫框架,爬取网站,从网站页面得到 […]

Continue reading
Posted in Python · Leave a comment

python读取html中指定元素生成excle文件示例

12 9月10 11月 by helenadmin

python2.7编写的读取html中指定元素,并生成excle文件 代码如下: #coding=gbkimp […]

Continue reading
Posted in Python · Leave a comment

使用python实现扫描端口示例

12 9月10 11月 by helenadmin

python最简洁易懂的扫描端口代码.运行绝对会很有惊奇感 代码如下: from threading impo […]

Continue reading
Posted in Python · Leave a comment

使用python绘制人人网好友关系图示例

12 9月10 11月 by helenadmin

代码依赖:networkx matplotlib 代码如下: #! /bin/env python# -*- […]

Continue reading
Posted in Python · Leave a comment

python实现zencart产品数据导入到magento(python导入数据)

12 9月10 11月 by helenadmin

python版本要求在3.3.x,需要mysql connector for python第三方库支持不适用所 […]

Continue reading
Posted in Python · Leave a comment

python异步任务队列示例

12 9月10 11月 by helenadmin

很多场景为了不阻塞,都需要异步回调机制。这是一个简单的例子,大家参考使用吧 代码如下: #!/usr/bin/ […]

Continue reading
Posted in Python · Leave a comment

用python编程实现语音控制电脑

12 9月10 11月 by helenadmin

电脑面前的你,是否也希望能让电脑听命于你? 当你累的时候,只需说一声“我累了”,电脑就会放着优雅的轻音乐来让你 […]

Continue reading
Posted in Python · Leave a comment

python实现目录树生成示例

12 9月10 11月 by helenadmin

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

Continue reading
Posted in Python · Leave a comment

python局域网ip扫描示例分享

12 9月10 11月 by helenadmin

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

Continue reading
Posted in Python · Leave a comment

python读写ini文件示例(python读写文件)

12 9月10 11月 by helenadmin

很类似java的properties文件xml文件 代码如下: db_config.ini[baseconf] […]

Continue reading
Posted in Python · Leave a comment

python实现ip查询示例

12 9月10 11月 by helenadmin

以下代码实现了ip查询功能处理程序 代码如下: import os,time def getip(filepa […]

Continue reading
Posted in Python · Leave a comment

python判断windows隐藏文件的方法

12 9月10 11月 by helenadmin

1. 通过windows attrib 命令获取文件隐藏属性 代码如下: syntax attrib [ + […]

Continue reading
Posted in Python · Leave a comment

python解析中国天气网的天气数据

12 9月10 11月 by helenadmin

使用方法:terminal中输入 代码如下: python weather.py http://www.wea […]

Continue reading
Posted in Python · Leave a comment

python实现文件名批量替换和内容替换

12 9月10 11月 by helenadmin

指定文件夹,指定文件类型,替换该文件夹下全部文件的内容。 注意在window下的读写内容需要指定编码,还需要在 […]

Continue reading
Posted in Python · Leave a comment

python读写redis数据库操作示例

12 9月10 11月 by helenadmin

使用python如何操作redis呢?下面用实例来说明用python读写redis数据库。比如,我们插入一条数 […]

Continue reading
Posted in Python · Leave a comment

python实现k均值算法示例(k均值聚类算法)

12 9月10 11月 by helenadmin

简单实现平面的点k均值分析,使用欧几里得距离,并用pylab展示。 代码如下: import pylab as […]

Continue reading
Posted in Python · Leave a comment

python基础教程之元组操作使用详解

12 9月10 11月 by helenadmin

简介 tuple 1.元组是以圆括号“()”包围的数据集合,不同成员以“,”分隔。通过下标进行访问 2.不可变 […]

Continue reading
Posted in Python · Leave a comment

python实现保存网页到本地示例

12 9月10 11月 by helenadmin

学习python示例:实现保存网页到本地 代码如下: #coding=utf-8__auther__ = &# […]

Continue reading
Posted in Python · Leave a comment

文章导航

先前文章
较新文章

近期文章

  • 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笔记 ·