Example #1
0
#!/usr/bin/env python

from gi.repository import Foo, GObject

Foo.hello()
print(Foo.make_n_object(20))
print(Foo.return_two())
Example #2
0
from gi.repository import Foo
import sys

Foo.hello(str(Foo))
Foo.hello("from, %s" % __file__)
print(sys.executable)
print(sys.argv)
print(__name__)

print(Foo.hello)