blob: b1adde2ae36f8673c97115727fba5c8d4e01f082 [file] [log] [blame]
Guido van Rossum705d5171994-10-08 19:30:50 +00001/* Example of embedding Python in another program */
2
3#include "allobjects.h"
4
5static char *argv0;
6
7main(argc, argv)
8 int argc;
9 char **argv;
10{
11 /* Save a copy of argv0 */
12 argv0 = argv[0];
13
14 /* Initialize the Python interpreter. Required. */
15 initall();
16
17 /* Define sys.argv. It is up to the application if you
18 want this; you can also let it undefined (since the Python
19 code is generally not a main program it has no business
20 touching sys.argv...) */
21 setpythonargv(argc, argv);
22
23 /* Do some application specific code */
24 printf("Hello, brave new world\n\n");
25
26 /* Execute some Python statements (in module __main__) */
27 run_command("import sys\n");
28 run_command("print sys.builtin_module_names\n");
29 run_command("print sys.argv\n");
30
31 /* Note that you can call any public function of the Python
32 interpreter here, e.g. call_object(). */
33
34 /* Some more application specific code */
35 printf("\nGoodbye, cruel world\n");
36
37 /* Exit, cleaning up the interpreter */
38 goaway(0);
39 /*NOTREACHED*/
40}
41
42char *
43getprogramname()
44{
45 return argv0;
46}