Ask a Question related to Mac Programming, Design and Development.

  1. #1

    Default Python and ObjC

    Someone knows how can i read the output from Python? i'm writing a
    simple python shell, but i'm not able to get the ouptut from
    PyRun_SimpleString().

    Please Help me

    Wezzy
    Wezzy Guest

  2. Similar Questions and Discussions

    1. PYTHON, ODBC
      We're looking into building a front end for our database in python. The database in question is an educational database, that generates new tables...
    2. ruby from python
      hi, while is well known how to call python from ruby I would like to do the reverse. Have you some informations or hints ?
    3. RubyCocoa problem: No such file to load -- osx/objc/cocoa
      Hi, I'm trying to get RubyCocoa to work with ruby 1.8.0 on MacOS 10.2.8. I followed Simon's advice and unchecked libruby-static.a in the...
    4. [PYTHON] YAPVRA (Yet Another Python vs. Ruby Article)
      Interesting blog post from a Pythonista on "Linguistic Simplicity," and why Ruby fails to pass muster. ...
    5. PHP, Perl or Python
      Hello Everyone: Here is what may be a very silly question: My hosting provider allows me to run any of the following three CGI languages: PHP,...
  3. #2

    Default Re: Python and ObjC

    In article <1g13869.ufaxrfigy7qeN%Fabio@est.it>, [email]Fabio@est.it[/email] (Wezzy)
    wrote:
    > Someone knows how can i read the output from Python? i'm writing a
    > simple python shell, but i'm not able to get the ouptut from
    > PyRun_SimpleString().
    >
    > Please Help me
    You may want to turn things around and drive stuff from Python. That way
    you're much more flexible in where you direct your output to. Also: you
    get to write more Python code and less C code, which guarantees a longer
    life ;-).

    Is it strictly neccesary for your application to _embed_ Python? Maybe
    it's an option to run Python as an external process, and communicate
    with it through a pipe.

    Just
    Just Guest

  4. #3

    Default Re: Python and ObjC

    Wezzy wrote:
    >
    > Someone knows how can i read the output from Python? i'm writing a
    > simple python shell, but i'm not able to get the ouptut from
    > PyRun_SimpleString().
    Start here:

    [url]http://pyobjc.sourceforge.net/[/url]

    HTH,

    -jcr
    John C. Randolph Guest

  5. #4

    Default Re: Python and ObjC

    John C. Randolph <jcr@nospam.idiom.com> wrote:
    > Wezzy wrote:
    > >
    > > Someone knows how can i read the output from Python? i'm writing a
    > > simple python shell, but i'm not able to get the ouptut from
    > > PyRun_SimpleString().
    >
    > Start here:
    >
    > [url]http://pyobjc.sourceforge.net/[/url]
    Thanks for the link, i have already visited PyObjC's site without any
    result. Now try again.

    --
    Ciao
    Wezzy
    Wezzy Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

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