摘要: 开发工具:Python语言集成开发环境 Wingware WingIDE Professional v3.2.12Python语言集成开发环境 Wingware WingIDE Professional v3.2.9.1高效Python/Django开发工具:JetBrains PyCharm v1.1.1 (附注册机)Python和Django开发工具:JetBrains PyCharm v1.1学习资料:Python 3程序开发指南 (第二版)中文PDF下载 Programming in Python 3, 2rd EditionPython参考手册 (第4版)中文高清PDF下载 (Pyt 阅读全文
posted @ 2014-04-12 07:38 戎狼图腾 阅读(1632) 评论(0) 推荐(0) 编辑
摘要: import Tkinterroot=Tkinter.Tk()label=Tkinter.Label(root,text='hello ,python')label.pack()#将LABEL组件添加到底框上button1=Tkinter.Button(root,text='BUTTON1')button1.pack(side=Tkinter.LEFT)button2=Tkinter.Button(root,text='BUTTON2')button2.pack(side=Tkinter.RIGHT)root.mainloop()#默认 pack 阅读全文
posted @ 2014-04-11 23:35 戎狼图腾 阅读(550) 评论(0) 推荐(0) 编辑
摘要: elenium的历史,selenium2与WebDriver的关系本文就不讲了,想了解的同学们百度一下就可以Ok。本系列教程是以Selenium-WebDriver的Python版本,首先从安装selenium webdriver开始。安装Python的2.7版本或3.2版本。注意selenium-webdriver现在因setuptools的关系,只对Python2.3.5以上的版本都支持。但Python2.7与3.2的语法有部分不同,本人是使用Python2.7版;再完成PYthon的安装后,需求配置系统环境变量,将Python安装目录添加到PATH中。安装selenium-webdriv 阅读全文
posted @ 2014-04-11 20:21 戎狼图腾 阅读(309) 评论(0) 推荐(0) 编辑
摘要: 我的电脑->右键属性->高级->系统变量 path里加上安装路径,比如 ";C:\Python26;" 请加分号附在其他path后面而不是直接覆盖。 阅读全文
posted @ 2014-04-11 15:17 戎狼图腾 阅读(439) 评论(0) 推荐(0) 编辑
摘要: 三年来的第一篇博客,还记得那是一个夜深人静的夜晚, 独自一人坐在不到10平米的小屋里,指头迅速的敲打着键盘,这天真TMD热。BJ生活啊。 唉!最近一直在参加一个论坛批量发帖的项目开发。 模拟登录,模拟发贴,甚至是模拟注册用户。 当然遇到了验证码的问题,初步打算是手工输入验证码, 做了个小测试,如果登录时需要验证码关键是要保存COOKIE。 CURL POST时带上这个COOKIE就可以了。 如果不需要验证码直接提交参数就可以了。 此文来自 http://www.cnblogs.com/echo-something/archive/2012/07/18/2597831.html 阅读全文
posted @ 2014-04-11 09:53 戎狼图腾 阅读(324) 评论(0) 推荐(0) 编辑
摘要: #自定义界面设计mybutton = Button(parent, **configuration options)也可以这么写mybutton.configure(**options)颜色可以用rgb 也可以使用颜色标准名或者预定义颜色表示可在 C:\Python27\Tools\pynche html40colors.txt 看到# HTML 4.0 color namesBlack #000000Silver #c0c0c0Gray #808080White #ffffffMaroon #800000Red #ff0000Purple #800080Fuchsia #ff00ffGree 阅读全文
posted @ 2014-04-11 00:04 戎狼图腾 阅读(2030) 评论(0) 推荐(0) 编辑
摘要: python 可以自己定义变量以及变量类型mystring = StringVar(ticked_yes = BooleanVoption1 = IntVar()volume = DoubleVar()Entry(root, textvariable = mystring)Checkbutton(root, text="Remember Me", variable=ticked_yes)Radiobutton(root, text="Option1", variable=option1, value="option1")#radiob 阅读全文
posted @ 2014-04-09 23:53 戎狼图腾 阅读(1510) 评论(0) 推荐(0) 编辑
摘要: place() 相对定位与绝对定位 相对定位 拖动会发生变化 绝对定位不会from Tkinter import *root = Tk()# Absolute positioningButton(root,text="Absolute Placement").place(x=20, y=10)# Relative positioningButton(root, text="Relative").place(relx=0.5, rely=0.2, relwidth=0.5,width=10, anchor = NE)root.mainloop()from 阅读全文
posted @ 2014-04-08 23:17 戎狼图腾 阅读(337) 评论(0) 推荐(0) 编辑
摘要: 1.导入Tkinter 可以使用以下三种方法(1)from Tkinter import *#导入Tkinter(2)import TkinterTkinter.methodA使用 Tkinter.methodA这样就不会污染其他命名空间(3)import Tkinter as TkTk.methodA重新定义了一个Tk 使用 Tk.methodA这样也就不会污染其他命名空间作为GUI需要考虑3个问题屏幕上显示什么样的界面图形怎么编排坐标如何人机交互(事件绑定)from Tkinter import *root=Tk()mylabel=Label(root,text="I am a 阅读全文
posted @ 2014-04-07 19:30 戎狼图腾 阅读(789) 评论(0) 推荐(0) 编辑
摘要: 欧拉数http://pe.spiritzhang.com/index.php/2011-05-11-09-44-54答案python学习资料https://docs.python.org/2.7/tutorial/index.htmlhttp://www.pythondoc.com/http://w... 阅读全文
posted @ 2014-04-07 10:19 戎狼图腾 阅读(157) 评论(0) 推荐(0) 编辑