Home

Download

Higthligths

Firsteps

Tutorial

Advocacy

Specs&soluces

Docs

Faq

About AskApy

Contact

Admin

Documentation




From the command line, to have information about:
  • A cube, (ex: mycub) type :
    doc.py --child child10@child0 mycub

  • A particular module of this cube, (ex: mycub.crazymod or mycub.mypackage1.mypackage2.mymodule) type :
    doc.py --child child10@child0 mycub.mypackage1.mypackage2.mymodule

  • An Apb, (ex: mycub/MyApb) type :
    doc.py --child child10@child0 mycub.mypackage1.mypackage2.mymodule.MyApb

  • A task, (ex: mycub/MyApb/do_hello) type :
    doc.py --child child10@child0 mycub.mypackage1.mypackage2.mymodule.MyApb.do_hello

From the command line but from an already instanciated Apb, This invokes the Apb mycub/MyApb :
ask.py _l {boot:localhost~:8010,child:child20@child0,cub:mycub,apb:MyApb} _u paul _p pass

To have information about:
  • The cube of this Apb, (ex: mycub) type :
    ask.py _t help -c

  • The module of this Apb, (ex: mycub.mypackage1.mypackage2.mymodule) type :
    ask.py _t help -m

  • The Apb, (ex: mycub/MyApb) type :
    ask.py _t help

  • A particular task of this Apb, (ex: mycub/MyApb/do_hello) type :
    ask.py _t hello -h