Python-2.7.5

本文涉及的产品
云数据库 RDS MySQL,集群系列 2核4GB
推荐场景:
搭建个人博客
RDS MySQL Serverless 基础系列,0.5-2RCU 50GB
云数据库 RDS MySQL,高可用系列 2核4GB
简介:

1.Python获取图片保存本地

#coding=utf-8

#re模块主要包含了正则表达式

import re

#Urllib模块提供了读取web页面数据的接口

import urllib

#getHtml()函数传递一个网址并把整个页面下载下来

def getHtml(url):

    page = urllib.urlopen(url)

    html = page.read()

    return html

#getImg()函数用于在获取的整个页面中筛选需要的图片连接并保存本地

def getImg(html):

    reg = r'src="(.+?\.jpg)" pic_ext'

    imgre = re.compile(reg)

    imglist = re.findall(imgre,html)

    x = 0

    for imgurl in imglist:

        urllib.urlretrieve(imgurl,'%s.jpg' % x)

        x+=1

#传递的网页地址并打印输出

html = getHtml("http://tieba.baidu.com/p/2460150866")

print getImg(html)


2.Python操作mysql数据库

#coding=utf-8

import MySQLdb

#连接mysql功能

conn= MySQLdb.connect(

        host='localhost',

        port = 3306,

        user='root',

        passwd='123456',

        db ='test',

        )

cur = conn.cursor()

#创建数据表

#cur.execute("create table student(id int ,name varchar(20),class varchar(30),age varchar(10))")

#插入一条数据

#cur.execute("insert into student values('2','Tom','3 year 2 class','9')")

#修改查询条件的数据

#cur.execute("update student set class='3 year 1 class' where name = 'Tom'")

#删除查询条件的数据

#cur.execute("delete from student where age='9'")

#关闭mysql连接

cur.close()

conn.commit()

conn.close()

2.1报错ImportError: No module named MySQLdb

该错误是源于我们没有安装Python连接MySQL所需的MySQLdb库而引起

Linux Fedora, CentOS系统:yum install MySQL-python

Linux Ubuntu操作系统:apt-get install python-mysqldb


3.Python设置测试万能验证码

#coding=utf-8

import random

#生成0到10之间的随机数

#d = random.uniform(0,10)

#print d

#生成一个1000到9999之间的随机整数

d = random.randint(1000,9999)

print u"生成的随机数:%d " %d

i = input(u"请输入随机数:")

print i

if i == d:

    print u"登录成功!!"

elif i == 1111:

    print u"登录成功!!"

else:

    print u"请重新输入验证码!"


4.Python扫描指定IP开放端口号

# -*- coding:utf8 -*-

#!/usr/bin/python


# Python:          2.7.5

# Platform:        linux

# Authro:          wc

# Program:         port scan

# History:         2015.6.1


import socket, time, thread

socket.setdefaulttimeout(3)


def socket_port(ip,port):

    """

    echo IP and port , judge port opening or closing

    """

    try:

        if port>=65535:

            print u'scan port end'

        s=socket.socket(socket.AF_INET, socket.SOCK_STREAM)

        result=s.connect_ex((ip,port))

        if result==0:

            lock.acquire()

            print  ip,u':',port,u'port opening'

            lock.release()

        s.close()

    except:

        print u'port error'


def ip_scan(ip):

    """

    echo IP , scan 0-65534 port

    """

    try:

        print u'start scan %s' % ip

        start_time=time.time()

        for i in range(0,65534):

            thread.start_new_thread(socket_port,(ip,int(i)))

        print u'scan end , total time : %.2f' %(time.time()-start_time)

        raw_input("Press Enter to Exit")

    except:

        print u'scan ip error'


if __name__=='__main__':

    url=raw_input('Input the ip you want to scan:\n')

    lock=thread.allocate_lock()

    ip_scan(url)


5.python实现简单时钟输出

import sys, signal, time

def now(): return time.ctime(time.time( ))


def onSignal(signum, stackframe):

    print 'Got alarm', signum, 'at', now( )


while 1:

    print 'Setting at', now( )

    signal.signal(signal.SIGALRM, onSignal)

    signal.alarm(5)

    signal.pause( )


6.python-2.7.5集成Django-1.9


7.报错1:ImportError: No module named M2Crypto

解决1:yum install m2crypto



本文转自 guowang327 51CTO博客,原文链接:http://blog.51cto.com/guowang327/1723489,如需转载请自行联系原作者

相关实践学习
如何快速连接云数据库RDS MySQL
本场景介绍如何通过阿里云数据管理服务DMS快速连接云数据库RDS MySQL,然后进行数据表的CRUD操作。
全面了解阿里云能为你做什么
阿里云在全球各地部署高效节能的绿色数据中心,利用清洁计算为万物互联的新世界提供源源不断的能源动力,目前开服的区域包括中国(华北、华东、华南、香港)、新加坡、美国(美东、美西)、欧洲、中东、澳大利亚、日本。目前阿里云的产品涵盖弹性计算、数据库、存储与CDN、分析与搜索、云通信、网络、管理与监控、应用服务、互联网中间件、移动服务、视频服务等。通过本课程,来了解阿里云能够为你的业务带来哪些帮助     相关的阿里云产品:云服务器ECS 云服务器 ECS(Elastic Compute Service)是一种弹性可伸缩的计算服务,助您降低 IT 成本,提升运维效率,使您更专注于核心业务创新。产品详情: https://www.aliyun.com/product/ecs
相关文章
|
2月前
|
Java Python
Python tricksUnderscores, Dunders, and More
Python tricksUnderscores, Dunders, and More
20 0
|
6月前
|
Shell Python
Python自省的详解
Python自省的详解
31 0
|
6月前
|
Python
Python一些实用小技巧
Python一些实用小技巧
21 0
|
7月前
|
安全 网络安全 数据安全/隐私保护
python telnetlib详解
`telnetlib`模块允许你通过Telnet协议与远程设备进行交互,执行命令并获取响应。这在自动化网络设备配置、远程服务器管理等场景中非常有用。需要注意的是,由于Telnet协议不安全,推荐在安全网络环境下使用,或者考虑替代协议如SSH。
238 0
|
7月前
|
编译器 数据处理 索引
【python】—— 字符串详解
【python】—— 字符串详解
|
存储 小程序 数据安全/隐私保护
每天 3 分钟,小闫带你学 Python
每天 3 分钟,小闫带你学 Python
每天 3 分钟,小闫带你学 Python(七)
每天 3 分钟,小闫带你学 Python(七)
|
机器学习/深度学习 数据采集 人工智能
【python简单介绍】
【python简单介绍】
88 0
|
存储 Python
Python字符串详解
Python字符串详解
132 0
Python字符串详解
|
BI 测试技术 Python
每天一个Python小技巧(4)
每天一个Python小技巧(4)
每天一个Python小技巧(4)