-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathconstants.py
116 lines (114 loc) · 2.22 KB
/
constants.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
'''
Contains package-wide constants.
'''
BASE_URL = 'https://fileinfo.com/filetypes/'
FILE_TYPES = {
'Text': {
'url': 'text',
'path': 'Documents/Text' ,
},
'Data': {
'url': 'datafiles-all',
'path': 'Data',
},
'Audio': {
'url': 'audio-all',
'path': 'Music',
},
'Video': {
'url': 'video',
'path': 'Videos',
},
'eBook': {
'url': 'ebook',
'path': 'eBooks',
},
'3D image': {
'url': '3d_image',
'path': 'Images/3D',
},
'Raster image': {
'url': 'raster_image',
'path': 'Images/Raster',
},
'Vector image': {
'url': 'vector_image',
'path': 'Images/Vector',
},
'Raw camera image': {
'url': 'camera_raw',
'path': 'Images/Raw Camera',
},
'Page layout': {
'url': 'page_layout',
'path': 'Documents/Layouts',
},
'Spreadsheet': {
'url': 'spreadsheet',
'path': 'Documents/Spreadsheets',
},
'Database': {
'url': 'database',
'path': 'Databases',
},
'Executable': {
'url': 'executable',
'path': 'Executables',
},
'Game file': {
'url': 'game-all',
'path': 'Game Files',
},
'CAD': {
'url': 'cad',
'path': 'CAD',
},
'GIS': {
'url': 'gis',
'path': 'GIS',
},
'Web': {
'url': 'web',
'path': 'Web',
},
'Plugin': {
'url': 'plugin',
'path': 'Plugins',
},
'Font': {
'url': 'font',
'path': 'Fonts',
},
'System': {
'url': 'system',
'path': 'System Files',
},
'Settings': {
'url': 'settings-all',
'path': 'Settings',
},
'Encoded': {
'url': 'encoded',
'path': 'Misc/Encoded',
},
'Compressed': {
'url': 'compressed',
'path': 'Archives',
},
'Disk image': {
'url': 'disk_image',
'path': 'Disk Images',
},
'Code': {
'url': 'developer-all',
'path': 'Code',
},
'Backup': {
'url': 'backup',
'path': 'Backups',
},
'Misc': {
'url': 'misc-all',
'path': 'Misc',
},
}