projects
/
biaweb_qt.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
First commit
[biaweb_qt.git]
/
biaweb_qt
1
#!/usr/bin/env python
2
3
# BiaWeb Website content manager (c) 2010 V.Harishankar
4
# Main script
5
6
import
sys
7
import
PyQt4
8
import
main_window
9
10
# main function
11
def
main
():
12
app
=
PyQt4
.
QtGui
.
QApplication
(
sys
.
argv
)
13
wnd
=
main_window
.
MainWindow
()
14
wnd
.
show
()
15
sys
.
exit
(
app
.
exec_
())
16
17
# run the application
18
if
__name__
==
"__main__"
:
19
main
()