python
荒年-yang
Aspire to inspire until I expire!
展开
-
Python 爬虫系列教程
相关知识可以参考:http://blog.csdn.net/column/details/why-bug.html原创 2017-01-13 17:12:43 · 346 阅读 · 0 评论 -
python 126邮箱发送邮件
#!/usr/bin/python# -*- coding: UTF-8 -*-from email.header import Headerfrom smtplib import SMTP_SSLdef send_mail(): try: host_server = 'smtp.126.com' # sender_qq为发件人的邮126箱 ...原创 2019-05-20 17:17:02 · 3331 阅读 · 0 评论 -
Python生成和安装requirements.txt依赖
生成requirements依赖:pip freeze > requirements.txt安装requirements依赖:pip install -r requirements.txt原创 2019-06-14 14:55:52 · 1368 阅读 · 0 评论