Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/captn3m0/microsoft-kb-metadata
A small automatically-updated subset of the Microsoft Knowledgebase metadata, useful for mapping KB IDs to Publication Dates or URLs
https://github.com/captn3m0/microsoft-kb-metadata
git-scraping kb-metadata microsoft-kb
Last synced: 3 months ago
JSON representation
A small automatically-updated subset of the Microsoft Knowledgebase metadata, useful for mapping KB IDs to Publication Dates or URLs
- Host: GitHub
- URL: https://github.com/captn3m0/microsoft-kb-metadata
- Owner: captn3m0
- License: cc0-1.0
- Created: 2023-01-12T10:18:39.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-07-24T18:35:34.000Z (6 months ago)
- Last Synced: 2024-07-24T21:27:32.216Z (6 months ago)
- Topics: git-scraping, kb-metadata, microsoft-kb
- Language: Python
- Homepage:
- Size: 583 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Microsoft Knowledge Base metadata
This repository hosts a small subset of the Microsoft Knowledgebase metadata. The data in the `data.json` contains the following:
1. Date of the KB publication
2. KB UUID
3. KB Slug
4. KB URLThe list of KB IDs in the database is scraped from the URLs in `discovery.txt`. The primary usecase of the dataset is to provide a `KB:DATE`
mapping to other projects.## wip
Discovery notes. Need to check the sitemaps more thoroughly before i automate this
See https://learn.microsoft.com/_sitemaps/sitemapindex.xml
```
curl --silent https://learn.microsoft.com/_sitemaps/officeupdates_en-us_1.xml | yq -p xml -o c '.urlset.url[]|.loc' >> discovery.txt
curl --silent https://learn.microsoft.com/_sitemaps/security-updates_en-us_1.xml | yq -p xml -o c '.urlset.url[]|.loc' >> discovery.txt
```## license
Data and code in this repository is licensed under [Creative Commons Zero v1.0 Universal](https://choosealicense.com/licenses/cc0-1.0/).