compiler.py 770 B

1234567891011121314151617181920212223242526
  1. #!/usr/bin/python
  2. # -*- coding: utf-8 -*-
  3. from PyQt5.QtCore import QFileSystemWatcher
  4. import sass
  5. class Compiler():
  6. def __init__(self,parent=None):
  7. paths = [
  8. 'assets',
  9. 'assets/scss',
  10. 'assets/scss/styles.scss'
  11. ]
  12. self.fs_watcher = QFileSystemWatcher(paths)
  13. # self.fs_watcher.directoryChanged.connect(self.directory_changed)
  14. self.fs_watcher.fileChanged.connect(self.compile_scss)
  15. self.compile_scss()
  16. # def directory_changed(path):
  17. # print("Directory changed : %s" % path)
  18. def compile_scss(path = ""):
  19. print("compiling sass : %s" % path)
  20. scss = sass.compile_file(b'assets/scss/main.scss')
  21. with open('assets/scss/main.css', 'w') as fp:
  22. fp.write(scss.decode('utf8'))