-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocumentation.txt
More file actions
121 lines (119 loc) · 6.29 KB
/
documentation.txt
File metadata and controls
121 lines (119 loc) · 6.29 KB
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
117
118
119
120
121
CODE ORGANISATION IN BDP
blood
├───blog
│ ├───migrations
│ │ └───__pycache__
│ ├───static
│ │ └───blog
│ ├───templates
│ │ └───blog
│ └───__pycache__
├───blood
│ └───__pycache__
├───name
│ ├───Include
│ ├───Lib
│ │ ├───site-packages
│ │ │ ├───pip
│ │ │ │ ├───commands
│ │ │ │ │ └───__pycache__
│ │ │ │ ├───compat
│ │ │ │ │ └───__pycache__
│ │ │ │ ├───models
│ │ │ │ │ └───__pycache__
│ │ │ │ ├───operations
│ │ │ │ │ └───__pycache__
│ │ │ │ ├───req
│ │ │ │ │ └───__pycache__
│ │ │ │ ├───utils
│ │ │ │ │ └───__pycache__
│ │ │ │ ├───vcs
│ │ │ │ │ └───__pycache__
│ │ │ │ ├───_vendor
│ │ │ │ │ ├───cachecontrol
│ │ │ │ │ │ ├───caches
│ │ │ │ │ │ │ └───__pycache__
│ │ │ │ │ │ └───__pycache__
│ │ │ │ │ ├───certifi
│ │ │ │ │ │ └───__pycache__
│ │ │ │ │ ├───chardet
│ │ │ │ │ │ ├───cli
│ │ │ │ │ │ │ └───__pycache__
│ │ │ │ │ │ └───__pycache__
│ │ │ │ │ ├───colorama
│ │ │ │ │ │ └───__pycache__
│ │ │ │ │ ├───distlib
│ │ │ │ │ │ ├───_backport
│ │ │ │ │ │ │ └───__pycache__
│ │ │ │ │ │ └───__pycache__
│ │ │ │ │ ├───html5lib
│ │ │ │ │ │ ├───filters
│ │ │ │ │ │ │ └───__pycache__
│ │ │ │ │ │ ├───treeadapters
│ │ │ │ │ │ │ └───__pycache__
│ │ │ │ │ │ ├───treebuilders
│ │ │ │ │ │ │ └───__pycache__
│ │ │ │ │ │ ├───treewalkers
│ │ │ │ │ │ │ └───__pycache__
│ │ │ │ │ │ ├───_trie
│ │ │ │ │ │ │ └───__pycache__
│ │ │ │ │ │ └───__pycache__
│ │ │ │ │ ├───idna
│ │ │ │ │ │ └───__pycache__
│ │ │ │ │ ├───lockfile
│ │ │ │ │ │ └───__pycache__
│ │ │ │ │ ├───packaging
│ │ │ │ │ │ └───__pycache__
│ │ │ │ │ ├───pkg_resources
│ │ │ │ │ │ └───__pycache__
│ │ │ │ │ ├───progress
│ │ │ │ │ │ └───__pycache__
│ │ │ │ │ ├───requests
│ │ │ │ │ │ └───__pycache__
│ │ │ │ │ ├───urllib3
│ │ │ │ │ │ ├───contrib
│ │ │ │ │ │ │ ├───_securetransport
│ │ │ │ │ │ │ │ └───__pycache__
│ │ │ │ │ │ │ └───__pycache__
│ │ │ │ │ │ ├───packages
│ │ │ │ │ │ │ ├───backports
│ │ │ │ │ │ │ │ └───__pycache__
│ │ │ │ │ │ │ ├───ssl_match_hostname
│ │ │ │ │ │ │ │ └───__pycache__
│ │ │ │ │ │ │ └───__pycache__
│ │ │ │ │ │ ├───util
│ │ │ │ │ │ │ └───__pycache__
│ │ │ │ │ │ └───__pycache__
│ │ │ │ │ ├───webencodings
│ │ │ │ │ │ └───__pycache__
│ │ │ │ │ └───__pycache__
│ │ │ │ └───__pycache__
│ │ │ ├───pip-9.0.3.dist-info
│ │ │ ├───pkg_resources
│ │ │ │ ├───extern
│ │ │ │ │ └───__pycache__
│ │ │ │ ├───_vendor
│ │ │ │ │ ├───packaging
│ │ │ │ │ │ └───__pycache__
│ │ │ │ │ └───__pycache__
│ │ │ │ └───__pycache__
│ │ │ ├───setuptools
│ │ │ │ ├───command
│ │ │ │ │ └───__pycache__
│ │ │ │ ├───extern
│ │ │ │ │ └───__pycache__
│ │ │ │ ├───_vendor
│ │ │ │ │ ├───packaging
│ │ │ │ │ │ └───__pycache__
│ │ │ │ │ └───__pycache__
│ │ │ │ └───__pycache__
│ │ │ ├───setuptools-39.0.1.dist-info
│ │ │ └───__pycache__
│ │ └───tcl8.6
│ └───Scripts
└───users
├───migrations
│ └───__pycache__
├───templates
│ └───users
└───__pycache__