Skip to content

Commit

Permalink
add(module): 创建主界面类和入口文件 (#5)
Browse files Browse the repository at this point in the history
* add(module): added dashboard graphic class and implemented login interface

* add(module): add course list, lesson list and corresponding functions

* fix(module): add process interval to avoid server blocking

* add(module): add entrance file

* fix(module): remove redundant codes

* [pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci

* fix(module): remove unused imported constants

* fix(module): remove unused imported constants

* fix(module): remove unused imported constants

* add(deps): add ttkbootstrap

* fix(module): remove redundant codes

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Fatpandac <i@Fatpandac.com>
  • Loading branch information
3 people authored Mar 26, 2022
1 parent d0ee0ae commit 723bec4
Show file tree
Hide file tree
Showing 5 changed files with 364 additions and 16 deletions.
1 change: 1 addition & 0 deletions Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ name = "pypi"
[packages]
requests = "*"
js2py = "*"
ttkbootstrap = "*"

[dev-packages]
pre-commit = "*"
Expand Down
81 changes: 65 additions & 16 deletions Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions fuck_cqooc.pyw
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
from ui.dashboardRoot import dashboardRoot

if __name__ == '__main__':
dashboardRoot().start()
Empty file added ui/__init__.py
Empty file.
Loading

0 comments on commit 723bec4

Please sign in to comment.