File size: 9,117 Bytes
79f9b39
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
define([
    "require",
    "./python_regex",
], function (requirejs, python_regex) {
    return {
        'name' : 'Python',
        'sub-menu' : [
            {
                'name' : 'Setup',
                'snippet' : ['from __future__ import print_function, division',],
            },
            {
                'name' : 'Documentation',
                'external-link' : 'https://docs.python.org/',
            },
            '---',

            {
                'name' : 'Lists',
                'sub-menu' : [
                    {
                        'name' : 'List comprehension',
                        'snippet' : ['[x**2 for x in range(-10, 11)]',],
                    },
                    {
                        'name' : 'Conditional list comprehension',
                        'snippet' : ['[x**2 for x in range(-10, 11) if (x%3)==0]',],
                    },
                    {
                        'name' : 'Conditional alternative list comprehension',
                        'snippet' : ['[x**2 if (x%3)==0 else x**3 for x in range(-10, 11)]',],
                    },
                    {
                        'name' : 'Reversed list',
                        'snippet' : ['reversed(l)'],
                    },
                    {
                        'name' : 'Sorted list',
                        'snippet' : ['sorted(l)'],
                    },
                    {
                        'name' : 'Sort two lists at the same time',
                        'snippet' : ['x, y = [list(tmp) for tmp in zip(*sorted(zip(x,y), key=lambda pair: pair[0]))]'],
                    },
                ],
            },

            {
                'name' : 'Basic file input/output',
                'sub-menu' : [
                    {
                        'name' : 'Read file into string',
                        'snippet' : [
                            'with open("some/file.txt", "r") as file_handle:',
                            '    file_contents = file_handle.read()',
                        ],
                    },
                    {
                        'name' : 'Read file into string, operating on each line',
                        'snippet' : [
                            'file_contents = ""',
                            'with open("some/file.txt", "r") as file_handle:',
                            '    for line in file_handle.readlines():',
                            '        file_contents += line.replace("-", "_")',
                        ],
                    }
                ],
            },
            
            {
                'name' : 'Defining functions',
                'sub-menu' : [
                    {
                        'name' : 'Simple function',
                        'snippet'  : [
                            'def bp_some_func(x):',
                            '    r"""Brief description of the function"""',
                            '    return x**2',
                        ],
                    },
                    {
                        'name' : 'Complicated function',
                        'snippet'  : [
                            'def bp_some_func(x, y, z=3.14, **kwargs):',
                            '    r"""Some function',
                            '    ',
                            '    Does some stuff.',
                            '    ',
                            '    Parameters',
                            '    ----------',
                            '    x : int',
                            '        Description of x',
                            '    y : str',
                            '        Description of y',
                            '    z : float, optional',
                            '        Description of z.  Defaults to 3.14',
                            '    **kwargs',
                            '        Arbitrary optional keyword arguments.',
                            '        w : float',
                            '            Defaults to 6.28',
                            '    ',
                            '    Returns',
                            '    -------',
                            '    double',
                            '        Some nonsensical number computed from some ugly formula',
                            '    ',
                            '    """',
                            '    w = kwargs.pop("w", 6.28)',
                            '    if kwargs:',
                            '        print("Got {0} unused kwargs".format(len(kwargs)))',
                            '    return (x**2 + len(y)) * (w + z)',
                        ],
                    },
                ],
            },
            
            {
                'name' : 'Defining classes',
                'sub-menu' : [
                    {
                        'name' : 'Simple class',
                        'snippet'  : [
                            'class BPSomeClass(object):',
                            '    r"""Describe the class"""',
                            '    def __init__(self, arg1, arg2):',
                            '        self.attr1 = arg1',
                            '        self.attr2 = arg2',
                            '    ',
                            '    def attribute1(self):',
                            '        return self.attr1',
                            'bp_obj = BPSomeClass("a", 2.7182)',
                            'bp_obj.attribute1()',
                        ],
                    },
                    {
                        'name' : 'Complicated class',
                        'snippet'  : [
                            'class BPSomeClass(object):',
                            '    """Brief class description',
                            '    ',
                            '    Some more extensive description',
                            '    ',
                            '    Attributes',
                            '    ----------',
                            '    attr1 : string',
                            '        Purpose of attr1.',
                            '    attr2 : float',
                            '        Purpose of attr2.',
                            '    ',
                            '    """',
                            '    ',
                            '    def __init__(self, param1, param2, param3=0):',
                            '        """Example of docstring on the __init__ method.',
                            '        ',
                            '        Parameters',
                            '        ----------',
                            '        param1 : str',
                            '            Description of `param1`.',
                            '        param2 : float',
                            '            Description of `param2`.',
                            '        param3 : int, optional',
                            '            Description of `param3`, defaults to 0.',
                            '        ',
                            '        """',
                            '        self.attr1 = param1',
                            '        self.attr2 = param2',
                            '        print(param3 // 4)',
                            '    ',
                            '    @property',
                            '    def attribute2(self):',
                            '        return self.attr2',
                            '    ',
                            '    @attribute2.setter',
                            '    def attribute2(self, new_attr2):',
                            '        if not isinstance(float, new_attr2):',
                            '            raise ValueError("attribute2 must be a float, not {0}".format(new_attr2))',
                            '        self.attr2 = new_attr2',
                            '',
                            '',
                            'bp_obj = BPSomeClass("a", 1.618)',
                            'print(bp_obj.attribute2)',
                            'bp_obj.attribute2 = 3.236',
                            '',
                        ],
                    },
                    {
                        'name' : 'Subclass',
                        'snippet'  : [
                            'class BP_A(object):',
                            '    def __init__(self, param1):',
                            '        self.attr1 = param1',
                            '',
                            'class BP_B(BP_A):',
                            '    def __init__(self, param1, param2):',
                            '        super(BP_B, self).__init__(param1)',
                            '        self.attr2 = param2',
                            '',
                            '',
                            'bp_b = BP_B("a", "b")',
                            'print(bp_b.attr1, bp_b.attr2)',
                        ],
                    },
                ],
            },

            python_regex,
        ],
    };
});