All Projects → NateScarlet → Holiday Cn

NateScarlet / Holiday Cn

Licence: mit
📅🇨🇳 中国法定节假日数据 自动每日抓取国务院公告

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Holiday Cn

Tianyancha
pip安装的天眼查爬虫API,指定的单个/多个企业工商信息一键保存为Excel/JSON格式。A Battery-included Scraper API of Tianyancha, the best Chinese business data and investigation platform.
Stars: ✭ 206 (+31.21%)
Mutual labels:  china, data
Riceteacatpanda
repo with challenge material for riceteacatpanda (2020)
Stars: ✭ 18 (-88.54%)
Mutual labels:  data, natural-language-processing
Isp Data Pollution
ISP Data Pollution to Protect Private Browsing History with Obfuscation
Stars: ✭ 425 (+170.7%)
Mutual labels:  crawling, data
Codesearchnet
Datasets, tools, and benchmarks for representation learning of code.
Stars: ✭ 1,378 (+777.71%)
Mutual labels:  data, natural-language-processing
Awesome Ai Ml Dl
Awesome Artificial Intelligence, Machine Learning and Deep Learning as we learn it. Study notes and a curated list of awesome resources of such topics.
Stars: ✭ 831 (+429.3%)
Mutual labels:  data, natural-language-processing
Crawler China Mainland Universities
中国大陆大学列表爬虫
Stars: ✭ 143 (-8.92%)
Mutual labels:  china, data
Geodev Hackerlabs
A place to learn how to build geo apps with the ArcGIS Platform.
Stars: ✭ 151 (-3.82%)
Mutual labels:  data
Paraphrase identification
Examine two sentences and determine whether they have the same meaning.
Stars: ✭ 154 (-1.91%)
Mutual labels:  natural-language-processing
Spacymoji
💙 Emoji handling and meta data for spaCy with custom extension attributes
Stars: ✭ 151 (-3.82%)
Mutual labels:  natural-language-processing
Pyfunctional
Python library for creating data pipelines with chain functional programming
Stars: ✭ 1,943 (+1137.58%)
Mutual labels:  data
Swagaf
Repository for paper "SWAG: A Large-Scale Adversarial Dataset for Grounded Commonsense Inference"
Stars: ✭ 156 (-0.64%)
Mutual labels:  natural-language-processing
Deeplearning nlp
基于深度学习的自然语言处理库
Stars: ✭ 154 (-1.91%)
Mutual labels:  natural-language-processing
Anaconda Project
Tool for encapsulating, running, and reproducing data science projects
Stars: ✭ 153 (-2.55%)
Mutual labels:  data
Finnlp Progress
NLP progress in Fintech. A repository to track the progress in Natural Language Processing (NLP) related to the domain of Finance, including the datasets, papers, and current state-of-the-art results for the most popular tasks.
Stars: ✭ 148 (-5.73%)
Mutual labels:  natural-language-processing
Qb
QANTA Quiz Bowl AI
Stars: ✭ 153 (-2.55%)
Mutual labels:  natural-language-processing
Tera
An Internet-Scale Database.
Stars: ✭ 1,846 (+1075.8%)
Mutual labels:  data
Pythonrouge
Python wrapper for evaluating summarization quality by ROUGE package
Stars: ✭ 155 (-1.27%)
Mutual labels:  natural-language-processing
Audioowl
Fast and simple music and audio analysis using RNN in Python 🕵️‍♀️ 🥁
Stars: ✭ 151 (-3.82%)
Mutual labels:  data
Postagga
A Library to parse natural language in pure Clojure and ClojureScript
Stars: ✭ 152 (-3.18%)
Mutual labels:  natural-language-processing
Pytorch Question Answering
Important paper implementations for Question Answering using PyTorch
Stars: ✭ 154 (-1.91%)
Mutual labels:  natural-language-processing

holiday-cn

Build Status Release CalVer Maintainability Test Coverage Maintenance

中国法定节假日数据 自动每日抓取国务院公告

  • [x] 提供 JSON 格式节假日数据
  • [x] CI 自动更新
  • [x] 数据变化时自动发布新版本 ( Watch - Release only 以获取邮件提醒! )
  • [x] 发布页面提供 JSON 打包下载

数据格式:

JSON Schema

interface Holidays {
  /** 完整年份, 整数。*/
  year: number;
  /** 所用国务院文件网址列表 */
  papers: string[];
  days: {
    /** 节日名称 */
    name: string;
    /** 日期, ISO 8601 格式 */
    date: string;
    /** 是否为休息日 */
    isOffDay: boolean;
  }[]
}

注意事项

  • 年份是按照国务院文件标题年份而不是日期年份,12 月份的日期可能会被下一年的文件影响,因此应检查两个文件。

通过互联网使用

数据地址格式:

https://raw.githubusercontent.com/NateScarlet/holiday-cn/master/{年份}.json

访问 github 不方便时可使用国内镜像仓库

https://natescarlet.coding.net/p/github/d/holiday-cn/git/raw/master/{年份}.json

作为 git 子模块使用

参见 Git 工具 - 子模块

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].