分类: Python 新玩法

8 篇文章

《云端安全守护者:深入解析阿里云域名证书管理脚本ListUserCertificateOrder_from_aliyun.py》
本文旨在详细介绍一款基于阿里云API的Python脚本——ListUserCertificateOrder_from_aliyun.py,该脚本用于查询和管理阿里云账户下的域名证书信息。将从脚本的安装、配置、功能使用以及版本迭代优化等方面进行深入剖析,帮助读者掌握如何高效地利用该脚本进行证书管理,确保域名安全。
thumbnail
优化PyCharm国内pip源提高下载和更新速度
Python 库国内镜像知名且访问速度较快的包括清华大学、中国科技大学、阿里云、豆瓣,这里分享下各自的 pip 源地址: pip 清华源:https://pypi.tuna.tsinghua.edu.cn/simple pip 阿里云源:http://mirrors.aliyun.com/pypi/simple/ pip 中科大源: https:/…
thumbnail
Python之tkinter外卖点什么
模块 Tkinter – 标准 GUI(Graphical User Interface,图形用户接口)库,Python 使用 Tkinter 可以快速地创建 GUI 应用程序,在 Python2 和 Python3 中,Tkinter 都在标准库中,无需安装即可使用。在 Python2 中,这个库叫 Tkinter ,在 Python3 中,这个…
thumbnail
Python 爬取抖音用户短视频
# -*- coding: utf-8 -*- """ * target : 爬朱雯轩的所有短视频 * @Date : 2020-09-29 13:03 * @Auth : xiaoshuai.zhu * @File :爬取抖音用户视频.py * @IDE :PyCharm * @Version 1.0 "&…
thumbnail
Python 爬取基金历史净值数据
# -*- coding: utf-8 -*- """ * DataSource : 天天基金网 (http://fund.eastmoney.com/161005.html?spm=search),利用网站提供的数据接口,实现基金净值查询,并做一些简单的分析。数据是否准确,分析是否到位 * @Date : 2020-…
Python之selenium和chromedriver的用法
模块 selenium – 用于Web应用程序测试的工具 selenium 包直接使用pip安装即可 pip install selenium 代码 #!env python from selenium import webdriver import time driver = webdriver.Chrome(r'C:\Program Files…