yyyyyyyyyyyyyyyyyyyy

博客园 首页 新随笔 联系 订阅 管理

随笔分类 -  python

上一页 1 ··· 8 9 10 11 12

摘要:http://www.oschina.net/p/pygtk/recommhttp://www.oschina.net/p/pygtk/similar_projects?lang=0&sort=time 阅读全文
posted @ 2015-07-30 02:27 xxxxxxxx1x2xxxxxxx 阅读(402) 评论(0) 推荐(0)

摘要:我 们首先下载一个类库easygui,它是一个Python用于简单开发图形化界面的类库,打开easygui的下载网页 http://sourceforge.net/projects/easygui/?source=directory,点击绿色的下载按钮下载。下载 好后是个后缀名为zip的压缩文件,先... 阅读全文
posted @ 2015-07-30 02:26 xxxxxxxx1x2xxxxxxx 阅读(391) 评论(0) 推荐(0)

摘要:1.写出基本的TCP连接,知道编写TCP的各个步骤,例如创建socket、绑定port、端口复用等,对TCP稍微做了解,知道协议的每个字段,了解三次握手。2.了解基本的服务器并发模型,例如多进程、多线程、IO复用3.了解一些网络库例如twisted不清楚你具体指的是底层的网络编程,还是偏应用的web... 阅读全文
posted @ 2015-07-30 02:23 xxxxxxxx1x2xxxxxxx 阅读(191) 评论(0) 推荐(0)

摘要:Python GUI编程各种实现的对比 从 Python 语言的诞生之日起,就有许多优秀的 GUI 工具集整合到 Python 当中,这些优秀的 GUI 工具集,使得 Python 也可以在图形界面编程领域当中大展身手,由于 Python 的流行,许多应用程序都是由 Python 结合那些优秀的... 阅读全文
posted @ 2015-07-30 02:17 xxxxxxxx1x2xxxxxxx 阅读(350) 评论(0) 推荐(0)

摘要:环境:django,numpy,matplotlib,解释语言:开发效率高,通用性强,内置方便的数据容器,易于扩展和嵌入。语言:lua--嵌入式/网络/APP,erlang--嵌入式,python--网络/嵌入式,lisp--界面。程序员境界:线性级,逻辑级,架构级,工程级程序员陋习:自我,封闭,惯... 阅读全文
posted @ 2015-07-29 02:15 xxxxxxxx1x2xxxxxxx 阅读(140) 评论(0) 推荐(0)

摘要:01 python s6 day7 上节回顾02 python s6 day7 SNMP使用03 python s6 day7 大型监控架构讲解04 python s6 day7 Redis使用05 python s6 day7 定义监控文档结构06 python s6 day7 监控架构讲解07 ... 阅读全文
posted @ 2015-07-26 02:54 xxxxxxxx1x2xxxxxxx 阅读(369) 评论(0) 推荐(0)

摘要:「python」: arp脚本的两种方法 第一种是使用arping工具: 这种方法依赖于特定平台的工具,整体就是使用了一个系统调用。 第二种是使用scapy,这种方法可以实现平台无关化 scapy编写简单的ARP扫描脚本 本课程基于 Python 的 scapy 模块编写,适合有 Python 基础 阅读全文
posted @ 2015-07-19 17:44 xxxxxxxx1x2xxxxxxx 阅读(261) 评论(0) 推荐(0)

摘要:MySQL、sqlalchemy、pymysql、mysqldb、DBAPI之间关系梳理 问题背景用Python处理MySQL数据库相关问题时,需要用到相关库,主要有pymysql、sqlalchemy等,各种术语比较多,需要做一下系统梳理。 问题解释Python 标准数据库接口为 Python D 阅读全文
posted @ 2015-07-19 17:34 xxxxxxxx1x2xxxxxxx 阅读(335) 评论(0) 推荐(0)

摘要:互联网公司zamplus诚聘以下职位:(1)数据挖掘工程师 (Location:上海、北京)岗位职责:1. 研究基于sponsored search, content match和behavior targeting的广告匹配技术和数据挖掘任务,提升广告相关性。2. 根据用户的行为结合机器学习的模型... 阅读全文
posted @ 2015-07-18 10:39 xxxxxxxx1x2xxxxxxx 阅读(256) 评论(0) 推荐(0)

摘要:#!/usr/bin/env python#coding:utf-8import urllib2,sys,re,os,stringreload(sys);sys.setdefaultencoding('utf8');#url="http://www.dianping.com/search/categ... 阅读全文
posted @ 2015-07-16 03:48 xxxxxxxx1x2xxxxxxx 阅读(532) 评论(0) 推荐(0)

摘要:try: from sklearn.impute import SimpleImputer # Scikit-Learn 0.20+ except ImportError: from sklearn.preprocessing import Imputer as SimpleImputer impu 阅读全文
posted @ 2015-07-13 01:47 xxxxxxxx1x2xxxxxxx 阅读(251) 评论(0) 推荐(0)

摘要:#coding: utf-8#title..href...import urllib.requestimport timeurl=['']*230page=15564j=0while j<230: url[j]='http://www.chinacampus.org/show.php?cont... 阅读全文
posted @ 2015-04-08 00:02 xxxxxxxx1x2xxxxxxx 阅读(177) 评论(0) 推荐(0)

摘要:[op@TIM getpage]$ cat job.py #coding: utf-8#title..href...import urllib.requestimport timeurl=['']*30page=83909j=0while j<30: url[j]='http://job.cs... 阅读全文
posted @ 2015-04-07 18:12 xxxxxxxx1x2xxxxxxx 阅读(1210) 评论(0) 推荐(0)

摘要:安装相关包 # yum install zlib-devel bzip2-devel openssl-devel ncurses-devel sqlite-devel readline-devel tk-devel gcc make 下载 Python 3.4 源码包 # wget http://m 阅读全文
posted @ 2015-04-07 12:51 xxxxxxxx1x2xxxxxxx 阅读(324) 评论(0) 推荐(0)

摘要:python实战项目:http://www.the5fire.com/category/python实战/python基础教程中的十个项目:python项目练习一:即时标记python项目练习二:画幅好画python项目练习三:万能的XMLpython项目练习四:新闻聚合python项目练习五:虚拟... 阅读全文
posted @ 2015-02-02 04:18 xxxxxxxx1x2xxxxxxx 阅读(171) 评论(0) 推荐(0)

摘要:在完成Ananconda安装后,在cmd窗口中输入jupyter notebook,随机将会在默认浏览器中打开jupyter notebook主界面(建议将Chrome设置为默认浏览器)。 此架构的一个优点是,内核无需运行 Python。由于 notebook 和内核分开,因此可以在两者之间发送任何 阅读全文
posted @ 2015-01-13 00:45 xxxxxxxx1x2xxxxxxx 阅读(319) 评论(0) 推荐(0)

摘要:#coding: utf-8#title..href...str0='blabla《论电影的七个元素》——关于我对电…'import urllib.requestimport timeurl=['']*350page=1link=1while page东望洋 我们主要是想提取出中间绿色部分的... 阅读全文
posted @ 2014-12-10 22:03 xxxxxxxx1x2xxxxxxx 阅读(349) 评论(0) 推荐(0)

摘要:智普教育Python视频教程之入门基础篇,python笔记printid()内存地址type()变量类型windows命令行下edit命令python数据类型不需要指定类型定义hostname="www.google.com"结果运行后总是告诉我NameError: name 'socket' is... 阅读全文
posted @ 2014-12-10 17:21 xxxxxxxx1x2xxxxxxx 阅读(231) 评论(0) 推荐(0)

摘要:以安装Httplib2模块为例1 下载模块 到 “https://code.google.com/p/httplib2/” 下载一款适合你的压缩包“httplib2-0.4.0.zip”2 解压下载的压缩包“httplib2-0.4.0.zip”到某目录下3配置python在dos下的运行环境 (之... 阅读全文
posted @ 2014-12-10 12:01 xxxxxxxx1x2xxxxxxx 阅读(381) 评论(0) 推荐(0)

上一页 1 ··· 8 9 10 11 12