Skip to content

Latest commit

 

History

History
58 lines (46 loc) · 1.32 KB

README.md

File metadata and controls

58 lines (46 loc) · 1.32 KB

File extensions

JSON collection of scraped file extensions, along with their description and type, from FileInfo.com.

The scraped data is available as JSON in two formats:

  1. This JSON dictionary has file types as keys that map to an array of extentsions which are of that type.

    {
        "3D image": [
            ".OBJ",
            ".3DS",
            ".3DM",
            ".MAX",
            ...
        ],
        "Audio": [
            ".AIF",
            ".M4A",
            ".MID",
            ".MP3",
            ...
        ],
        ...
    }
  2. This JSON dictionary has file extensions as keys that map to a dictionary containing the description of that extension and its type.

    {
        ".!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.