1. 程式人生 > >8.7 每日課後作業系列之常用模板(介紹和運用)

8.7 每日課後作業系列之常用模板(介紹和運用)

ali baidu not in {} int time 緩存 date 方式

# 今日作業:
# p1.簡述
# 什麽是模塊
#一系列功能的集合體

# 模塊有哪些來源
# p1.內置
# 2.第三方
# 3.自定義

# 模塊的格式要求有哪些
# p1 .py文件
# 2 已被編譯為共享庫或DLL的C或C++擴展
# 3 把一系列模塊組織到一起的文件夾(註:文件夾下有一個__init__.py文件,該文件夾稱之為包)
# 4 使用C編寫並鏈接到python解釋器的內置模塊

# 2.定義一個cuboid模塊,模塊中有三個變量長(long)寬(wide)高(high),數值自定義,有一個返回值為周長的perimeter方法,一個返回值為表面積的area方法
# import cuboid as cd
# print(cd.perimeter())
# print(cd.area())

# 3.定義一個用戶文件stu1.py,在該文件中打印cuboid的長寬高,並獲得周長和表面積,打印出來
# import cuboid
# print(cuboid.long)
# print(cuboid.wide)
# print(cuboid.high)
# print(cuboid.perimeter())
# print(cuboid.area())


# 4.在stu2.py文件中導入cuboid模塊時為模塊起簡單別名,利用別名完成第3題中完成的操作
# import cuboid as cd
# print(cuboid.long)
# print(cuboid.wide)
# print(cuboid.high)
# print(cuboid.perimeter())
# print(cuboid.area())



# 5.現在有三個模塊sys、time、place,可以在run.py文件導入三個模塊嗎?有幾種方式?分別寫出來
#
# 6.結合第2、3、4題完成from...import...案例,完成同樣的功能
#
# 7.比較總結import與from...import...各自的優缺點
# import導入模塊:在使用時必須加上前綴:模塊名.
# 優點: 指名道姓地向某一個名稱空間要名字,肯定不會與當前名稱空間中的名字沖突
# 缺點: 但凡應用模塊中的名字都需要加前綴,不夠簡潔
# from...import...
# 優點: 使用時,無需再加前綴,更簡潔
# 缺點: 容易與當前名稱空間中的名字沖突
#
#
# # 四:編寫裝飾器,為多個函數加上認證的功能(用戶的賬號密碼來源於文件),要求登錄成功一次,後續的函數都無需再輸入用戶名和密碼
# # 註意:從文件中讀出字符串形式的字典,可以用eval(‘{"name":"egon","password":"123"}‘)轉成字典格式
login_status={‘user‘:None,‘status‘:False}
def auth(type=‘file‘):
def auth1(func):
def wrapper(*args,**kwargs):
if login_status[‘user‘] and login_status[‘status‘]:
return func(*args,**kwargs)
if type==‘file‘:
with open(‘db1.txt‘,mode=‘r‘,encoding=‘utf-8‘) as f:
dic=eval(f.read())
name=input(‘用戶名:‘)
pwd=input(‘密碼:‘)
if name==dic[‘name‘] and pwd==dic[‘password‘]:
login_status[‘user‘] = name
login_status[‘status‘] = True
res = func(*args, **kwargs)
return res
else:
print(‘username or password error‘)
return wrapper
return auth1


# 五:編寫裝飾器,為多個函數加上認證功能,要求登錄成功一次,在超時時間內無需重復登錄,超過了超時時間,則必須重新登錄
# import time,random
# user={‘user‘:None,‘login_time‘:None,‘timeout‘:0.0003}
# def auth(func):
# def wrapper(*args,**kwargs):
# if user[‘user‘]:
# time_out=time.time()-user[‘login_time‘]
# if time_out<user[‘timeout‘]:
# return func(*args,**kwargs)
# name=input(‘用戶名:‘)
# pwd=input(‘密碼:‘)
# if name==‘egon‘ and pwd==‘123‘:
# user[‘user‘]=name
# user[‘login_time‘]=time.time()
# res=func(*args,**kwargs)
# return res
# return wrapper
# @auth
# def index():
# time.sleep(random.randrange(3))
# print(‘welcome to index page‘)
#
# @auth
# def home(name):
# time.sleep(random.randrange(3))
# print(‘welcome to %s page‘ %name)
#
# index()
# home(‘egon‘)

# 六:編寫下載網頁內容的函數,要求功能是:用戶傳入一個url,函數返回下載頁面的結果


# 七:為題目五編寫裝飾器,實現緩存網頁內容的功能:
# 具體:實現下載的頁面存放於文件中,如果文件內有值(文件大小不為0),就優先從文件中讀取網頁內容,否則,就去下載,然後存到文件中
# 擴展功能:用戶可以選擇緩存介質/緩存引擎,針對不同的url,緩存到不同的文件中

# import os
# import requests
# cahce_file=‘cache.txt‘
# def cache(func):
# def wrapper(*args,**kwargs):
# if not os.path.exists(cahce_file):
# with open(r‘cache.txt‘,mode=‘w‘,encoding=‘utf-8‘):pass
# if os.path.getsize(cahce_file):
# with open(‘cache.txt‘,mode=‘r‘,encoding=‘utf-8‘) as f:
# res=f.read()
# return res
# else:
# res=func(*args,**kwargs)
# with open(cahce_file,mode=‘w‘,encoding=‘utf-8‘) as f:
# f.write(res)
# return res
# return wrapper
#
# @cache
# def get(url):
# return requests.get(url).text
# res=get(‘https://www.baidu.com‘)
# print(res)


#題目七:擴展版本
# import requests,os,hashlib
# engine_settings={
# ‘file‘:{‘dirname‘:‘./db‘},
# ‘mysql‘:{
# ‘host‘:‘127.0.0.p1‘,
# ‘port‘:3306,
# ‘user‘:‘root‘,
# ‘password‘:‘123‘},
# ‘redis‘:{
# ‘host‘:‘127.0.0.p1‘,
# ‘port‘:6379,
# ‘user‘:‘root‘,
# ‘password‘:‘123‘},
# }
#
# def make_cache(engine=‘file‘):
# if engine not in engine_settings:
# raise TypeError(‘egine not valid‘)
# def deco(func):
# def wrapper(url):
# if engine == ‘file‘:
# m=hashlib.md5(url.encode(‘utf-8‘))
# cache_filename=m.hexdigest()
# cache_filepath=r‘%s/%s‘ %(engine_settings[‘file‘][‘dirname‘],cache_filename)
#
# if os.path.exists(cache_filepath) and os.path.getsize(cache_filepath):
# return open(cache_filepath,encoding=‘utf-8‘).read()
#
# res=func(url)
# with open(cache_filepath,‘w‘,encoding=‘utf-8‘) as f:
# f.write(res)
# return res
# elif engine == ‘mysql‘:
# pass
# elif engine == ‘redis‘:
# pass
# else:
# pass
#
# return wrapper
# return deco
#
# @make_cache(engine=‘file‘)
# def get(url):
# return requests.get(url).text
#
# # print(get(‘https://www.python.org‘))
# print(get(‘https://www.baidu.com‘))



# 八:還記得我們用函數對象的概念,制作一個函數字典的操作嗎,我們有更高大上的做法,在文件開頭聲明一個空字典,然後在每個函數前加上裝飾器,完成自動添加到字典的操作
# route_dic={}
#
# def make_route(name):
# def deco(func):
# route_dic[name]=func
# return deco
# @make_route(‘select‘)
# def func1():
# print(‘select‘)
#
# @make_route(‘insert‘)
# def func2():
# print(‘insert‘)
#
# @make_route(‘update‘)
# def func3():
# print(‘update‘)
#
# @make_route(‘delete‘)
# def func4():
# print(‘delete‘)
#
# print(route_dic)
# for k,v in route_dic.items():
# print(k,v)
# v()

# 九 編寫日誌裝飾器,實現功能如:一旦函數f1執行,則將消息2017-07-21 11:12:11 f1 run寫入到日誌文件中,日誌文件路徑可以指定
# 註意:時間格式的獲取
# import time
# time.strftime(‘%Y-%m-%d %X‘)

# import os
# import time
# def outter1(cache):
# def outter2(func):
# if not os.path.exists(cache):
# with open(cache,mode=‘w‘,encoding=‘utf-8‘):pass
# def wrapper(*args,**kwargs):
# with open(cache,mode=‘a‘,encoding=‘utf-8‘) as f:
# res=f.write(‘%s %s run\n‘ %(time.strftime(‘%Y-%m-%d %H:%M:%S %p‘),func.__name__))
# return res
# return wrapper
# return outter2
# @outter1(cache=‘b.txt‘)
# def index():
# print(‘index‘)
# index()

8.7 每日課後作業系列之常用模板(介紹和運用)