Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/faheel/file-extensions
JSON collection of scraped file extensions, along with their description and type, from FileInfo.com
https://github.com/faheel/file-extensions
file-extensions fileinfo json python3 scraped-data scraper website-scraper
Last synced: 2 months ago
JSON representation
JSON collection of scraped file extensions, along with their description and type, from FileInfo.com
- Host: GitHub
- URL: https://github.com/faheel/file-extensions
- Owner: faheel
- License: mit
- Created: 2018-03-01T18:36:21.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2022-11-09T21:05:13.000Z (about 2 years ago)
- Last Synced: 2023-02-26T09:22:50.772Z (almost 2 years ago)
- Topics: file-extensions, fileinfo, json, python3, scraped-data, scraper, website-scraper
- Language: Python
- Size: 223 KB
- Stars: 15
- Watchers: 4
- Forks: 7
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# File extensions
JSON collection of scraped file extensions, along with their description and type, from [FileInfo.com][fileinfo].
The scraped data is available as JSON in two formats:
1. ### [Extensions by type](extensions_by_type.json)
This JSON dictionary has **file types** as keys that map to an **array of extentsions** which are of that type.
```json
{
"3D image": [
".OBJ",
".3DS",
".3DM",
".MAX",
...
],
"Audio": [
".AIF",
".M4A",
".MID",
".MP3",
...
],
...
}
```2. ### [Extensions with details](extensions.json)
This JSON dictionary has **file extensions** as keys that map to a dictionary containing the **description** of that extension and its **type**.
```json
{
".!BT": {
"description": "BitTorrent Incomplete Download File",
"type": "Misc"
},
".!QB": {
"description": "qBittorrent Partial Download File",
"type": "Misc"
},
".!SYNC": {
"description": "BitTorrent Partially Synced File",
"type": "Misc"
},
...
}
```## License
This project is licensed under the terms of the [MIT license](LICENSE).
[fileinfo]: https://fileinfo.com