From 22c34bb680464fbc60cf871ff36a33337edf5b41 Mon Sep 17 00:00:00 2001 From: simongarisch <31283453+simongarisch@users.noreply.github.com> Date: Sat, 20 Oct 2018 16:27:59 +1100 Subject: [PATCH] Update README.md --- README.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index da5aad3..b3c7686 100644 --- a/README.md +++ b/README.md @@ -3,10 +3,13 @@ # safeqthreads -Track and manage your QThreads +The motivation behind safeqthreads is to allow Qthreads to finish before the application exits. If the application exits before a QThread is finished the Python garbage collector will release the QThread and potentially cause Python to crash. ## Installation -... +safeqthreads is both python 2 and 3 compatible +```bash +pip install safeqthreads +``` ## Motivation ...