app.py 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. #!/usr/bin/python
  2. # -*- coding: utf-8 -*-
  3. # @Author: Bachir Soussi Chiadmi <bach>
  4. # @Date: 23-05-2017
  5. # @Email: bachir@figureslibres.io
  6. # @Last modified by: bach
  7. # @Last modified time: 21-04-2017
  8. # @License: GPL-V3
  9. import sys, os
  10. from socket import socket
  11. import socketserver
  12. import http.server
  13. import threading
  14. from PyQt5.QtCore import QUrl, QFileSystemWatcher
  15. from PyQt5.QtWidgets import (QAction, QApplication, QLineEdit, QMainWindow, QSizePolicy, QStyle, QTextEdit)
  16. from PyQt5.QtNetwork import QNetworkProxyFactory, QNetworkRequest
  17. from PyQt5.QtWebKitWidgets import QWebPage, QWebView
  18. import sass
  19. class Server():
  20. def __init__(self, parent=None):
  21. # find free port
  22. sock = socket()
  23. sock.bind(('', 0))
  24. self._port = sock.getsockname()[1]
  25. sock.close()
  26. self.httpd = http.server.HTTPServer(('', self.port), http.server.SimpleHTTPRequestHandler)
  27. self.thread = threading.Thread(target=self.httpd.serve_forever)
  28. self.thread.start()
  29. print("serving at port", self._port)
  30. @property
  31. def port(self):
  32. return self._port
  33. class Compiler():
  34. def __init__(self,parent=None):
  35. paths = [
  36. 'assets',
  37. 'assets/scss',
  38. 'assets/scss/styles.scss'
  39. ]
  40. self.fs_watcher = QFileSystemWatcher(paths)
  41. self.fs_watcher.directoryChanged.connect(self.directory_changed)
  42. self.fs_watcher.fileChanged.connect(self.compile_scss)
  43. # self.compile_scss()
  44. def directory_changed(path):
  45. print("Directory changed : %s" % path)
  46. def compile_scss(path = ""):
  47. print("compiling sass : %s" % path)
  48. # src = open( 'assets/scss/main.scss' ).read()
  49. scss = sass.compile_file(b'assets/scss/main.scss')
  50. with open('assets/scss/main.css', 'w') as fp:
  51. fp.write(scss.decode('utf8'))
  52. class WebkitView(QWebView):
  53. def __init__(self, port):
  54. self.port = port
  55. # QT webkit
  56. self.view = QWebView.__init__(self)
  57. # browser.settings().setAttribute(QWebSettings.PluginsEnabled, True)
  58. self.load(QUrl('http://localhost:'+str(self.port)))
  59. # self.show()
  60. # class MainWindow():
  61. # def __init__(self, )
  62. def main():
  63. # app = QtCore.QCoreApplication(sys.argv)
  64. app = QApplication(sys.argv)
  65. server = Server()
  66. compiler = Compiler()
  67. webkitview = WebkitView(server.port)
  68. webkitview.show()
  69. # sys.exit(app.exec_())
  70. app.exec_()
  71. if __name__ == "__main__":
  72. main()