摘要:在项目的Terminal中注册模块pypiwin32 python -m pip install pypiwin32 import win32com.client outlook = win32com.client.Dispatch("Outlook.Application").GetNamespa
阅读全文
摘要:# 使用一个函数来装饰另一个函数,不使用@ def a_new_decorator(a_func): def wrapTheFunc(): print("Do sth. before a_func()") a_func() print("Do sth. after a_func()") return
阅读全文
摘要:CSPF, Cross-Site Request Forgery, 跨域请求伪造 CGI, Common Gateway Interface, 通用网关接口 WSGI, Python Web Server Gateway Interface, Web服务器网关接口 【基于http协议,不支持WebS
阅读全文
摘要:1 2 settings.py 3 4 """ 5 Django settings for djangoProject project. 6 7 Generated by 'django-admin startproject' using Django 3.1.7. 8 9 For more inf
阅读全文