The backend part is actually not so bad. "Running Python as a Service" and "Make that service server web page to apache" is really just using one of the available Python web framework, which you can put behind either Apache or Nginx just to proxy it the requests. Django, Flask, Bottle, etc, are all available frameworks. Part of it would be serving the "views" as web pages, and then part of it will be supporting a REST API so that your dynamic client side pages can interactively go back and forth with your backend via something like jquery.
On Mon, Dec 23, 2013 at 5:05 PM, Panupat Chongstitwattana < [email protected]> wrote: > Web interface has crossed my mind, too. But the amount of things I'd need > to learn would be to much I think. > > I really like TACTIC's approach that uses Python in the background and > serve everything via HTTP. > But the things I will need to learn would be .... > > - Running Python as service > - Make that service serve web page to apache > - HTML and lots of Javascript > > I'm clueless enough with Python and PyQt alone and am really afraid to > learn all that. > Maybe as a long term plan. > > > On Tuesday, December 17, 2013 2:28:52 AM UTC+7, dgovil wrote: >> >> Definitely possible in PyQt. I've built smaller but similar UIs. >> If it's for a similar purpose as Shotgun though, I'd stick to a web >> interface since it's something you'd want accesable to people on the go too. >> >> As for gantt charts, quick google search found a result by Justin from a >> year ago suggesting PyQWT : http://www.qtcentre.org/ >> threads/40428-Gantt-charts-with-QWT >> >> >> On Sunday, 15 December 2013 23:32:20 UTC-8, Panupat Chongstitwattana >> wrote: >>> >>> >>> <https://lh5.googleusercontent.com/-euynIV9rRUQ/Uq6ruK6K19I/AAAAAAAAAeU/lHwD1lWC0qw/s1600/capture.png> >>> Hi. >>> >>> I'm curious how possible is it to create some complex interface similar >>> to Tactic/shotgun? Like the multiple tasks available for each item which >>> have their own drop down we can adjust. >>> >>> I'm also very curious about creating Gantt charts, any resources out >>> there I can learn from? >>> >>> Thank you. >>> >> -- > You received this message because you are subscribed to the Google Groups > "Python Programming for Autodesk Maya" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To view this discussion on the web visit > https://groups.google.com/d/msgid/python_inside_maya/a7c7587b-05d6-471e-bc35-22e6cd588738%40googlegroups.com > . > > For more options, visit https://groups.google.com/groups/opt_out. > -- You received this message because you are subscribed to the Google Groups "Python Programming for Autodesk Maya" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/python_inside_maya/CAPGFgA0mrGinr2vsLQfE1Vqh9KEb-pjWSU31bJfzuBOijkQvLw%40mail.gmail.com. For more options, visit https://groups.google.com/groups/opt_out.
