https://github.com/sople1/pykilldow
Sample project / example for win32api, postMessage, tkinter, button / on click, foreground windows will quit
https://github.com/sople1/pykilldow
example hacktoberfest postmessage python sample tkinter-python win32 win32api
Last synced: 3 months ago
JSON representation
Sample project / example for win32api, postMessage, tkinter, button / on click, foreground windows will quit
- Host: GitHub
- URL: https://github.com/sople1/pykilldow
- Owner: sople1
- License: cc0-1.0
- Created: 2020-03-24T07:10:08.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-08-09T20:52:19.000Z (almost 4 years ago)
- Last Synced: 2025-02-01T21:14:38.541Z (4 months ago)
- Topics: example, hacktoberfest, postmessage, python, sample, tkinter-python, win32, win32api
- Language: Python
- Homepage:
- Size: 13.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
README
=============================
pyKilldow
=============================
:copyright: (c) SnooeyNET
:license: CC0.. moduleauthor:: Seongsu Yoon
Summary
=======Test project
Kill Foreground window with one buttonInstallation
============Commons
-------You must install Python 3 and required pip packages.
In development, make virturlenv environment is good choice for you.Windows
-------1. Check if you installed Python 3.7.4 or upper
2. Clone this git repository and open it Command Prompt
3. If you want to make virtualenv, follow below command:.. code-block:: bash
# make virtualenv on env folder of repository folder
> python3 -m venv env# run
> env\Scripts\activate4. install pip packages in requirements.txt
.. code-block:: bash
> pip install -r requirements.txt
5. Launch by main.py
.. code-block:: bash
> python main.py
macOS/Linux
-----------1. Check if you installed Python 3.7.4 or upper
2. Clone this git repository and open it at Terminal
3. If you want to make virtualenv, follow below command:.. code-block:: bash
# make virtualenv on env directory of repository directory
$ python3 -m venv ./env# run by bash shell
$ source env/bin/activate4. install pip packages in requirements.txt
.. code-block:: bash
$ pip install -r requirements.txt
5. Launch by main.py
.. code-block:: bash
$ python main.py
Documentation
=============Commons
-------This package using Sphinx for auto documentation.
Windows
-------1. follow below command:
.. code-block:: bash
# first run
> env\Scripts\sphinx-quickstart.exe2. after work - it skips what exist files, make seperated files
.. code-block:: bash
> env\Scripts\sphinx-apidoc.exe -F -o docs . --separate
3. use command if you want to build html document
.. code-block:: bash
> env\Scripts\sphinx-build.exe -b html docs docs/_build/html
macOS/Linux
-----------1. follow below command:
.. code-block:: bash
# first run
$ ./env/bin/sphinx-quickstart2. after work - it skips what exist files, make seperated files
.. code-block:: bash
$ ./env/bin/sphinx-apidoc -F -o docs . --separate
3. use command if you want to build html document
.. code-block:: bash
$ ./env/bin/sphinx-build -b html docs docs/_build/html
Configuration
=============not yet
See also
========not yet