20
20
Examples
21
21
--------
22
22
$ python qe_apidoc.py # generates the two separate directories
23
- $ python qe_apidoc.py foo_bar # generates the two separate directories
23
+ $ python qe_apidoc.py foo_bar # generates the two separate directories
24
24
$ python qe_apidoc.py single # generates the single directory
25
25
26
26
49
49
:show-inheritance:
50
50
"""
51
51
52
- markov_module_template = """{mod_name}
53
- {equals}
54
-
55
- .. automodule:: quantecon.markov.{mod_name}
56
- :members:
57
- :undoc-members:
58
- :show-inheritance:
59
- """
60
-
61
- model_module_template = """{mod_name}
52
+ game_theory_module_template = """{mod_name}
62
53
{equals}
63
54
64
- .. automodule:: quantecon.models .{mod_name}
55
+ .. automodule:: quantecon.game_theory .{mod_name}
65
56
:members:
66
57
:undoc-members:
67
58
:show-inheritance:
68
59
"""
69
60
70
- solow_model_module_template = """{mod_name}
61
+ markov_module_template = """{mod_name}
71
62
{equals}
72
63
73
- .. automodule:: quantecon.models.solow .{mod_name}
64
+ .. automodule:: quantecon.markov .{mod_name}
74
65
:members:
75
66
:undoc-members:
76
67
:show-inheritance:
119
110
=======================
120
111
121
112
The `quantecon` python library consists of a number of modules which
122
- includes economic models (models), markov chains (markov), random
123
- generation utilities (random), a collection of tools (tools),
124
- and other utilities (util) which are
125
- mainly used by developers internal to the package.
113
+ includes economic models (models), markov chains (markov), random
114
+ generation utilities (random), a collection of tools (tools),
115
+ and other utilities (util) which are
116
+ mainly used by developers internal to the package.
126
117
127
118
The models section, for example, contains implementations of standard
128
119
models, many of which are discussed in lectures on the website `quant-
131
122
.. toctree::
132
123
:maxdepth: 2
133
124
125
+ game_theory
134
126
markov
135
- models
136
127
random
137
128
tools
138
129
util
@@ -170,7 +161,7 @@ def source_join(f_name):
170
161
def all_auto ():
171
162
# Get list of module names
172
163
mod_names = glob ("../quantecon/[a-z0-9]*.py" )
173
- mod_names = map (lambda x : x .split ('/' )[- 1 ], mod_names )
164
+ mod_names = list ( map (lambda x : x .split ('/' )[- 1 ], mod_names ) )
174
165
175
166
# Ensure source/modules directory exists
176
167
if not os .path .exists (source_join ("modules" )):
@@ -185,75 +176,62 @@ def all_auto():
185
176
186
177
# write index.rst file to include these autogenerated files
187
178
with open (source_join ("index.rst" ), "w" ) as index :
188
- generated = "\n " .join (map (lambda x : "modules/" + x .split ("." )[0 ],
189
- mod_names ))
179
+ generated = "\n " .join (list ( map (lambda x : "modules/" + x .split ("." )[0 ],
180
+ mod_names )))
190
181
temp = all_index_template .format (generated = generated )
191
182
index .write (temp )
192
183
193
184
194
185
def model_tool ():
186
+ # list file names with game_theory
187
+ game_theory_files = glob ("../quantecon/game_theory/[a-z0-9]*.py" )
188
+ game_theory = list (map (lambda x : x .split ('/' )[- 1 ][:- 3 ], game_theory_files ))
189
+ # Alphabetize
190
+ game_theory .sort ()
191
+
195
192
# list file names with markov
196
193
markov_files = glob ("../quantecon/markov/[a-z0-9]*.py" )
197
- markov = map (lambda x : x .split ('/' )[- 1 ][:- 3 ], markov_files )
194
+ markov = list ( map (lambda x : x .split ('/' )[- 1 ][:- 3 ], markov_files ) )
198
195
# Alphabetize
199
196
markov .sort ()
200
197
201
- # list file names with models
202
- mod_files = glob ("../quantecon/models/[a-z0-9]*.py" )
203
- models = map (lambda x : x .split ('/' )[- 1 ][:- 3 ], mod_files )
204
- # Alphabetize
205
- models .sort ()
206
-
207
- # list file names with models.solow
208
- solow_files = glob ("../quantecon/models/solow/[a-z0-9]*.py" )
209
- solow = map (lambda x : x .split ('/' )[- 1 ][:- 3 ], solow_files )
210
- # Alphabetize
211
- solow .sort ()
212
-
213
198
# list file names with random
214
199
random_files = glob ("../quantecon/random/[a-z0-9]*.py" )
215
- random = map (lambda x : x .split ('/' )[- 1 ][:- 3 ], random_files )
200
+ random = list ( map (lambda x : x .split ('/' )[- 1 ][:- 3 ], random_files ) )
216
201
# Alphabetize
217
202
random .sort ()
218
203
219
204
# list file names of tools (base level modules)
220
205
tool_files = glob ("../quantecon/[a-z0-9]*.py" )
221
- tools = map (lambda x : x .split ('/' )[- 1 ][:- 3 ], tool_files )
206
+ tools = list ( map (lambda x : x .split ('/' )[- 1 ][:- 3 ], tool_files ) )
222
207
# Alphabetize
223
208
tools .remove ("version" )
224
209
tools .sort ()
225
-
210
+
226
211
# list file names of utilities
227
212
util_files = glob ("../quantecon/util/[a-z0-9]*.py" )
228
- util = map (lambda x : x .split ('/' )[- 1 ][:- 3 ], util_files )
213
+ util = list ( map (lambda x : x .split ('/' )[- 1 ][:- 3 ], util_files ) )
229
214
# Alphabetize
230
215
util .sort ()
231
216
232
- for folder in ["markov" , "models" , "models/solow" , " random" ,"tools" ,"util" ]:
217
+ for folder in ["game_theory" , "markov" , " random" , "tools" , "util" ]:
233
218
if not os .path .exists (source_join (folder )):
234
219
os .makedirs (source_join (folder ))
235
220
221
+ # Write file for each game_theory file
222
+ for mod in game_theory :
223
+ new_path = os .path .join ("source" , "game_theory" , mod + ".rst" )
224
+ with open (new_path , "w" ) as f :
225
+ equals = "=" * len (mod )
226
+ f .write (game_theory_module_template .format (mod_name = mod , equals = equals ))
227
+
236
228
# Write file for each markov file
237
229
for mod in markov :
238
230
new_path = os .path .join ("source" , "markov" , mod + ".rst" )
239
231
with open (new_path , "w" ) as f :
240
232
equals = "=" * len (mod )
241
233
f .write (markov_module_template .format (mod_name = mod , equals = equals ))
242
234
243
- # Write file for each model
244
- for mod in models :
245
- new_path = os .path .join ("source" , "models" , mod + ".rst" )
246
- with open (new_path , "w" ) as f :
247
- equals = "=" * len (mod )
248
- f .write (model_module_template .format (mod_name = mod , equals = equals ))
249
-
250
- # Write file for each model.solow
251
- for mod in solow :
252
- new_path = os .path .join ("source" , "models" , "solow" , mod + ".rst" )
253
- with open (new_path , "w" ) as f :
254
- equals = "=" * len (mod )
255
- f .write (solow_model_module_template .format (mod_name = mod , equals = equals ))
256
-
257
235
# Write file for each random file
258
236
for mod in random :
259
237
new_path = os .path .join ("source" , "random" , mod + ".rst" )
@@ -279,21 +257,20 @@ def model_tool():
279
257
with open (source_join ("index.rst" ), "w" ) as index :
280
258
index .write (split_index_template )
281
259
260
+ gt = "game_theory/" + "\n game_theory/" .join (game_theory )
282
261
mark = "markov/" + "\n markov/" .join (markov )
283
- mods = "models/" + "\n models/" .join (models )
284
- mods = mods + "\n solow/" #Add solow sub directory to models
285
262
rand = "random/" + "\n random/" .join (random )
286
263
tlz = "tools/" + "\n tools/" .join (tools )
287
264
utls = "util/" + "\n util/" .join (util )
288
265
#-TocTree-#
289
- toc_tree_list = {"markov" : mark ,
290
- "models " : mods ,
266
+ toc_tree_list = {"game_theory" : gt ,
267
+ "markov " : mark ,
291
268
"tools" : tlz ,
292
- "random" :rand ,
293
- "util" :utls ,
269
+ "random" : rand ,
270
+ "util" : utls ,
294
271
}
295
272
296
- for f_name in ("markov" , "models" , "random" ,"tools" ,"util" ):
273
+ for f_name in ("game_theory" , "markov" , "random" , "tools" , "util" ):
297
274
with open (source_join (f_name + ".rst" ), "w" ) as f :
298
275
temp = split_file_template .format (name = f_name .capitalize (),
299
276
equals = "=" * len (f_name ),
0 commit comments