ELinks 0.12pre1
[elinks/elinks-j605.git] / src / scripting / python / python.c
blobda33c03ab943c2cfea555298fe0bd0637b4cfe36
1 /* Python module */
3 #ifdef HAVE_CONFIG_H
4 #include "config.h"
5 #endif
7 #include <Python.h>
9 #include "elinks.h"
11 #include "intl/gettext/libintl.h"
12 #include "main/module.h"
13 #include "scripting/python/core.h"
14 #include "scripting/python/hooks.h"
17 struct module python_scripting_module = struct_module(
18 /* name: */ N_("Python"),
19 /* options: */ NULL,
20 /* hooks: */ python_scripting_hooks,
21 /* submodules: */ NULL,
22 /* data: */ NULL,
23 /* init: */ init_python,
24 /* done: */ cleanup_python