-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
1,011 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
name: Deploy docs | ||
on: | ||
push: | ||
branches: | ||
- master | ||
- main | ||
paths: | ||
- '.github/workflows/deploy-docs.yml' | ||
- 'pyproject.toml' | ||
- 'poetry.lock' | ||
- 'mkdocs.yml' | ||
- 'docs/*' | ||
- 'async-tkinter-loop/*' | ||
|
||
permissions: | ||
contents: write | ||
|
||
jobs: | ||
deploy: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Install poetry | ||
run: pipx install poetry | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: 3.x | ||
|
||
- name: Install dependencies | ||
run: poetry install --only docs | ||
|
||
- name: Deploy docs | ||
run: poetry run mkdocs gh-deploy --force |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Library API | ||
|
||
:::async_tkinter_loop.async_tkinter_loop |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# Welcome | ||
|
||
This site contains the project documentation for the | ||
`async-tkinter-loop` project. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
# Similar projects | ||
|
||
* [Starwort/asynctk](https://github.com/Starwort/asynctk) ([on PyPi](https://pypi.org/project/asynctk/)) - tries to wrap all widgets and make all their methods asyncroneous. | ||
Most recent commit: Oct 31, 2021. | ||
Most recent commit: October 2021. | ||
GPL v3 license. | ||
* [gottadiveintopython/asynctkinter](https://github.com/gottadiveintopython/asynctkinter) ([on PyPi](https://pypi.org/project/asynctkinter/)) - looks like an asyncroneous framework itself (like [trio](https://github.com/python-trio/trio)). | ||
Most recent commit: Sep 20, 2022. | ||
* [gottadiveintopython/asynctkinter](https://github.com/gottadiveintopython/asynctkinter) ([on PyPi](https://pypi.org/project/asynctkinter/)) - looks like an asynchronous framework itself (like [trio](https://github.com/python-trio/trio)). | ||
Most recent commit: August 2023. | ||
MIT License. | ||
|
||
The latter two projects use old `asyncio` code (from before `async`/`await` keyword addition): | ||
The latter two projects use old `asyncio` code (from before `async`/`await` syntax addition): | ||
|
||
* [Lucretiel/tkinter-async](https://github.com/Lucretiel/tkinter-async) - most recent commit: May 7, 2015 | ||
* [fluentpython/asyncio-tkinter](https://github.com/fluentpython/asyncio-tkinter) - most recent commit: Apr 5, 2015. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
site_name: Async-tkinter-loop documentation | ||
|
||
theme: | ||
name: "material" | ||
|
||
plugins: | ||
- mkdocstrings |
Oops, something went wrong.