Advertisement
Guest User

Untitled

a guest
Dec 13th, 2019
216
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 1.81 KB | None | 0 0
  1. #Audio file formats by file extensions
  2.  
  3. audio_file_tup = (".aif",".cda",".mid,".midi",".mp3",".mpa",".ogg",".wav",".wma",".wpl")
  4.  
  5. #Compressed file extensions
  6.  
  7. compressed_file_tup = (".7z",".arj",".deb",".pkg",".rar",".rpm",".tar.gz",".z",".zip")
  8.  
  9. #Disc and media file extensions
  10.  
  11. disc_file_tup = (".bin",".dmg",".iso",".toast",".vcd")
  12.  
  13. #Data and database file extensions
  14.  
  15. database_file_tup = (".csv",".dat",".db",".dbf",".log",".mdb",".sav",".sql",".tar",".xml")
  16.  
  17. #Executable file extensions
  18.  
  19. executable_file_tup = (".apk",".bat",".bin",".cgi",".pl",".com",".exe",".gadget",".jar",".py",".wsf")
  20.  
  21. #Font file extensions
  22.  
  23. font_file_tup = (".fnt",".fon",".otf",".ttf")
  24.  
  25. #Image file formats by file extension
  26.  
  27. image_file_tup = (".ai",".bmp",".gif",".ico",".jpeg",".jpg",".png",".ps",".psd",".svg",".tif",".tiff")
  28.  
  29. #Internet related file extensions
  30.  
  31. net_file_tup = (".asp",".aspx",".cer",".cfm",".cgi",".pl",".css",".htm",".html",".js",".jsp",".part",".php",".py",".rss",".xhtml")
  32.  
  33. #Presentation file formats by file extension
  34.  
  35. presentation_file_tup = (".key",".odp",".pps",".ppt",".pptx")
  36.  
  37. #Programming files by file extensions
  38.  
  39. programming_file_tup = (".c",".class",".cpp",".cs",".h",".java",".sh",".swift",".vb")
  40.  
  41. #Spreadsheet file formats by file extension
  42.  
  43. spreadsheet_file_tup = (".ods",".xlr",".xls",".xlsx")
  44.  
  45. #System related file formats and file extensions
  46.  
  47. system_file_tup = (".bak",".cab",".cfg",".cpl",".cur",".dll",".dmp",".drv",".icns",".ico",".ini",".lnk",".msi",".sys",".tmp")
  48.  
  49. #Video file formats by file extension
  50.  
  51. video_file_tup = (".3g2",".3gp",".avi",".flv",".h264",".m4v",".mkv",".mov",".mp4",".mpg",".mpeg",".rm",".swf",".vob",".wmv")
  52.  
  53. #Word processor and text file formats by file extension
  54.  
  55. text_file_tup = (".doc",".docx",".odt",".pdf",".rtf",".tex",".txt",".wks",".wps",".wpd")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement