Appearance
开源项目推荐
About 367 wordsAbout 1 min
2022-06-02
Nginx-UI
另一个 Ngnix Web 页面管理工具。[github 地址](https://github.com/0xJacky/nginx-ui)
用户名:admin 密码:admin
特色:
- 在线查看服务器 CPU、内存、系统负载、磁盘使用率等指标
- 在线 ChatGPT 助理
- 一键申请和自动续签 Let's encrypt 证书
- 在线编辑 Nginx 配置文件,编辑器支持 Nginx 配置语法高亮
- 在线查看 Nginx 日志
- 使用 Go 和 Vue 开发,发行版本为单个可执行的二进制文件
- 保存配置后自动测试配置文件并重载 Nginx
- 基于网页浏览器的高级命令行终端
- 支持深色模式
- 自适应网页设计
Holidays
一个快速、高效的Python库,用于动态生成特定于国家/地区(例如州或省)的政府指定假期集。它旨在尽可能快速和灵活地确定特定日期是否是假期。 项目地址https://github.com/vacanza/holidays
安装
$ pip install --upgrade holidays
使用
from datetime import date
import holidays
us_holidays = holidays.US() # this is a dict-like object
# the below is the same, but takes a string:
us_holidays = holidays.country_holidays('US') # this is a dict-like object
nyse_holidays = holidays.NYSE() # this is a dict-like object
# the below is the same, but takes a string:
nyse_holidays = holidays.financial_holidays('NYSE') # this is a dict-like object
date(2015, 1, 1) in us_holidays # True
date(2015, 1, 2) in us_holidays # False
us_holidays.get('2014-01-01') # "New Year's Day"