├── .gitignore ├── Py2QDA-0.1.1 ├── LICENSE.txt ├── PKG-INFO ├── PyQDA │ ├── About.html │ ├── AddItem.py │ ├── AssignAttributes.py │ ├── AttributeType.py │ ├── Attributes.py │ ├── AutoAssignCase.py │ ├── Cases.py │ ├── Categories.py │ ├── CodeColors.py │ ├── Codebook.py │ ├── Codes.py │ ├── CodingSummary.py │ ├── ColorSelector.py │ ├── ConfirmDelete.py │ ├── FileCategories.py │ ├── HTMLToText.py │ ├── Help.html │ ├── ImportAttributes.py │ ├── Information.py │ ├── ManageFiles.py │ ├── ManageJournals.py │ ├── Memo.py │ ├── PyQDA.png │ ├── PyQDA.py │ ├── ReportCodings.py │ ├── SQL.py │ ├── SelectFile.py │ ├── Settings.py │ ├── ViewCodeFrequencies.py │ ├── __init__.py │ └── docx.py ├── PyQDAdesktop ├── README.txt ├── docs │ ├── ID1.docx │ ├── ID2.odt │ ├── attributes.csv │ └── transcript.txt ├── install.sh └── setup.py ├── Py3QDA-0.1 ├── LICENSE.txt ├── PKG-INFO ├── Py3QDA │ ├── About.html │ ├── AddItem.py │ ├── AssignAttributes.py │ ├── AttributeType.py │ ├── Attributes.py │ ├── AutoAssignCase.py │ ├── Cases.py │ ├── Categories.py │ ├── CodeColors.py │ ├── Codebook.py │ ├── Codes.py │ ├── CodingSummary.py │ ├── ColorSelector.py │ ├── ConfirmDelete.py │ ├── FileCategories.py │ ├── HTMLToText.py │ ├── Help.html │ ├── ImportAttributes.py │ ├── Information.py │ ├── ManageFiles.py │ ├── ManageJournals.py │ ├── Memo.py │ ├── Py3QDA.py │ ├── PyQDA.png │ ├── ReportCodings.py │ ├── SQL.py │ ├── SelectFile.py │ ├── Settings.py │ ├── ViewCodeFrequencies.py │ ├── __init__.py │ └── docx.py └── setup.py ├── Py3QDA.png └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ronggui/PyQDA/HEAD/.gitignore -------------------------------------------------------------------------------- /Py2QDA-0.1.1/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ronggui/PyQDA/HEAD/Py2QDA-0.1.1/LICENSE.txt -------------------------------------------------------------------------------- /Py2QDA-0.1.1/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ronggui/PyQDA/HEAD/Py2QDA-0.1.1/PKG-INFO -------------------------------------------------------------------------------- /Py2QDA-0.1.1/PyQDA/About.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ronggui/PyQDA/HEAD/Py2QDA-0.1.1/PyQDA/About.html -------------------------------------------------------------------------------- /Py2QDA-0.1.1/PyQDA/AddItem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ronggui/PyQDA/HEAD/Py2QDA-0.1.1/PyQDA/AddItem.py -------------------------------------------------------------------------------- /Py2QDA-0.1.1/PyQDA/AssignAttributes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ronggui/PyQDA/HEAD/Py2QDA-0.1.1/PyQDA/AssignAttributes.py -------------------------------------------------------------------------------- /Py2QDA-0.1.1/PyQDA/AttributeType.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ronggui/PyQDA/HEAD/Py2QDA-0.1.1/PyQDA/AttributeType.py -------------------------------------------------------------------------------- /Py2QDA-0.1.1/PyQDA/Attributes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ronggui/PyQDA/HEAD/Py2QDA-0.1.1/PyQDA/Attributes.py -------------------------------------------------------------------------------- /Py2QDA-0.1.1/PyQDA/AutoAssignCase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ronggui/PyQDA/HEAD/Py2QDA-0.1.1/PyQDA/AutoAssignCase.py -------------------------------------------------------------------------------- /Py2QDA-0.1.1/PyQDA/Cases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ronggui/PyQDA/HEAD/Py2QDA-0.1.1/PyQDA/Cases.py -------------------------------------------------------------------------------- /Py2QDA-0.1.1/PyQDA/Categories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ronggui/PyQDA/HEAD/Py2QDA-0.1.1/PyQDA/Categories.py -------------------------------------------------------------------------------- /Py2QDA-0.1.1/PyQDA/CodeColors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ronggui/PyQDA/HEAD/Py2QDA-0.1.1/PyQDA/CodeColors.py -------------------------------------------------------------------------------- /Py2QDA-0.1.1/PyQDA/Codebook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ronggui/PyQDA/HEAD/Py2QDA-0.1.1/PyQDA/Codebook.py -------------------------------------------------------------------------------- /Py2QDA-0.1.1/PyQDA/Codes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ronggui/PyQDA/HEAD/Py2QDA-0.1.1/PyQDA/Codes.py -------------------------------------------------------------------------------- /Py2QDA-0.1.1/PyQDA/CodingSummary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ronggui/PyQDA/HEAD/Py2QDA-0.1.1/PyQDA/CodingSummary.py -------------------------------------------------------------------------------- /Py2QDA-0.1.1/PyQDA/ColorSelector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ronggui/PyQDA/HEAD/Py2QDA-0.1.1/PyQDA/ColorSelector.py -------------------------------------------------------------------------------- /Py2QDA-0.1.1/PyQDA/ConfirmDelete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ronggui/PyQDA/HEAD/Py2QDA-0.1.1/PyQDA/ConfirmDelete.py -------------------------------------------------------------------------------- /Py2QDA-0.1.1/PyQDA/FileCategories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ronggui/PyQDA/HEAD/Py2QDA-0.1.1/PyQDA/FileCategories.py -------------------------------------------------------------------------------- /Py2QDA-0.1.1/PyQDA/HTMLToText.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ronggui/PyQDA/HEAD/Py2QDA-0.1.1/PyQDA/HTMLToText.py -------------------------------------------------------------------------------- /Py2QDA-0.1.1/PyQDA/Help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ronggui/PyQDA/HEAD/Py2QDA-0.1.1/PyQDA/Help.html -------------------------------------------------------------------------------- /Py2QDA-0.1.1/PyQDA/ImportAttributes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ronggui/PyQDA/HEAD/Py2QDA-0.1.1/PyQDA/ImportAttributes.py -------------------------------------------------------------------------------- /Py2QDA-0.1.1/PyQDA/Information.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ronggui/PyQDA/HEAD/Py2QDA-0.1.1/PyQDA/Information.py -------------------------------------------------------------------------------- /Py2QDA-0.1.1/PyQDA/ManageFiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ronggui/PyQDA/HEAD/Py2QDA-0.1.1/PyQDA/ManageFiles.py -------------------------------------------------------------------------------- /Py2QDA-0.1.1/PyQDA/ManageJournals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ronggui/PyQDA/HEAD/Py2QDA-0.1.1/PyQDA/ManageJournals.py -------------------------------------------------------------------------------- /Py2QDA-0.1.1/PyQDA/Memo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ronggui/PyQDA/HEAD/Py2QDA-0.1.1/PyQDA/Memo.py -------------------------------------------------------------------------------- /Py2QDA-0.1.1/PyQDA/PyQDA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ronggui/PyQDA/HEAD/Py2QDA-0.1.1/PyQDA/PyQDA.png -------------------------------------------------------------------------------- /Py2QDA-0.1.1/PyQDA/PyQDA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ronggui/PyQDA/HEAD/Py2QDA-0.1.1/PyQDA/PyQDA.py -------------------------------------------------------------------------------- /Py2QDA-0.1.1/PyQDA/ReportCodings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ronggui/PyQDA/HEAD/Py2QDA-0.1.1/PyQDA/ReportCodings.py -------------------------------------------------------------------------------- /Py2QDA-0.1.1/PyQDA/SQL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ronggui/PyQDA/HEAD/Py2QDA-0.1.1/PyQDA/SQL.py -------------------------------------------------------------------------------- /Py2QDA-0.1.1/PyQDA/SelectFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ronggui/PyQDA/HEAD/Py2QDA-0.1.1/PyQDA/SelectFile.py -------------------------------------------------------------------------------- /Py2QDA-0.1.1/PyQDA/Settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ronggui/PyQDA/HEAD/Py2QDA-0.1.1/PyQDA/Settings.py -------------------------------------------------------------------------------- /Py2QDA-0.1.1/PyQDA/ViewCodeFrequencies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ronggui/PyQDA/HEAD/Py2QDA-0.1.1/PyQDA/ViewCodeFrequencies.py -------------------------------------------------------------------------------- /Py2QDA-0.1.1/PyQDA/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Py2QDA-0.1.1/PyQDA/docx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ronggui/PyQDA/HEAD/Py2QDA-0.1.1/PyQDA/docx.py -------------------------------------------------------------------------------- /Py2QDA-0.1.1/PyQDAdesktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ronggui/PyQDA/HEAD/Py2QDA-0.1.1/PyQDAdesktop -------------------------------------------------------------------------------- /Py2QDA-0.1.1/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ronggui/PyQDA/HEAD/Py2QDA-0.1.1/README.txt -------------------------------------------------------------------------------- /Py2QDA-0.1.1/docs/ID1.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ronggui/PyQDA/HEAD/Py2QDA-0.1.1/docs/ID1.docx -------------------------------------------------------------------------------- /Py2QDA-0.1.1/docs/ID2.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ronggui/PyQDA/HEAD/Py2QDA-0.1.1/docs/ID2.odt -------------------------------------------------------------------------------- /Py2QDA-0.1.1/docs/attributes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ronggui/PyQDA/HEAD/Py2QDA-0.1.1/docs/attributes.csv -------------------------------------------------------------------------------- /Py2QDA-0.1.1/docs/transcript.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ronggui/PyQDA/HEAD/Py2QDA-0.1.1/docs/transcript.txt -------------------------------------------------------------------------------- /Py2QDA-0.1.1/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ronggui/PyQDA/HEAD/Py2QDA-0.1.1/install.sh -------------------------------------------------------------------------------- /Py2QDA-0.1.1/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ronggui/PyQDA/HEAD/Py2QDA-0.1.1/setup.py -------------------------------------------------------------------------------- /Py3QDA-0.1/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ronggui/PyQDA/HEAD/Py3QDA-0.1/LICENSE.txt -------------------------------------------------------------------------------- /Py3QDA-0.1/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ronggui/PyQDA/HEAD/Py3QDA-0.1/PKG-INFO -------------------------------------------------------------------------------- /Py3QDA-0.1/Py3QDA/About.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ronggui/PyQDA/HEAD/Py3QDA-0.1/Py3QDA/About.html -------------------------------------------------------------------------------- /Py3QDA-0.1/Py3QDA/AddItem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ronggui/PyQDA/HEAD/Py3QDA-0.1/Py3QDA/AddItem.py -------------------------------------------------------------------------------- /Py3QDA-0.1/Py3QDA/AssignAttributes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ronggui/PyQDA/HEAD/Py3QDA-0.1/Py3QDA/AssignAttributes.py -------------------------------------------------------------------------------- /Py3QDA-0.1/Py3QDA/AttributeType.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ronggui/PyQDA/HEAD/Py3QDA-0.1/Py3QDA/AttributeType.py -------------------------------------------------------------------------------- /Py3QDA-0.1/Py3QDA/Attributes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ronggui/PyQDA/HEAD/Py3QDA-0.1/Py3QDA/Attributes.py -------------------------------------------------------------------------------- /Py3QDA-0.1/Py3QDA/AutoAssignCase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ronggui/PyQDA/HEAD/Py3QDA-0.1/Py3QDA/AutoAssignCase.py -------------------------------------------------------------------------------- /Py3QDA-0.1/Py3QDA/Cases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ronggui/PyQDA/HEAD/Py3QDA-0.1/Py3QDA/Cases.py -------------------------------------------------------------------------------- /Py3QDA-0.1/Py3QDA/Categories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ronggui/PyQDA/HEAD/Py3QDA-0.1/Py3QDA/Categories.py -------------------------------------------------------------------------------- /Py3QDA-0.1/Py3QDA/CodeColors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ronggui/PyQDA/HEAD/Py3QDA-0.1/Py3QDA/CodeColors.py -------------------------------------------------------------------------------- /Py3QDA-0.1/Py3QDA/Codebook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ronggui/PyQDA/HEAD/Py3QDA-0.1/Py3QDA/Codebook.py -------------------------------------------------------------------------------- /Py3QDA-0.1/Py3QDA/Codes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ronggui/PyQDA/HEAD/Py3QDA-0.1/Py3QDA/Codes.py -------------------------------------------------------------------------------- /Py3QDA-0.1/Py3QDA/CodingSummary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ronggui/PyQDA/HEAD/Py3QDA-0.1/Py3QDA/CodingSummary.py -------------------------------------------------------------------------------- /Py3QDA-0.1/Py3QDA/ColorSelector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ronggui/PyQDA/HEAD/Py3QDA-0.1/Py3QDA/ColorSelector.py -------------------------------------------------------------------------------- /Py3QDA-0.1/Py3QDA/ConfirmDelete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ronggui/PyQDA/HEAD/Py3QDA-0.1/Py3QDA/ConfirmDelete.py -------------------------------------------------------------------------------- /Py3QDA-0.1/Py3QDA/FileCategories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ronggui/PyQDA/HEAD/Py3QDA-0.1/Py3QDA/FileCategories.py -------------------------------------------------------------------------------- /Py3QDA-0.1/Py3QDA/HTMLToText.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ronggui/PyQDA/HEAD/Py3QDA-0.1/Py3QDA/HTMLToText.py -------------------------------------------------------------------------------- /Py3QDA-0.1/Py3QDA/Help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ronggui/PyQDA/HEAD/Py3QDA-0.1/Py3QDA/Help.html -------------------------------------------------------------------------------- /Py3QDA-0.1/Py3QDA/ImportAttributes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ronggui/PyQDA/HEAD/Py3QDA-0.1/Py3QDA/ImportAttributes.py -------------------------------------------------------------------------------- /Py3QDA-0.1/Py3QDA/Information.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ronggui/PyQDA/HEAD/Py3QDA-0.1/Py3QDA/Information.py -------------------------------------------------------------------------------- /Py3QDA-0.1/Py3QDA/ManageFiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ronggui/PyQDA/HEAD/Py3QDA-0.1/Py3QDA/ManageFiles.py -------------------------------------------------------------------------------- /Py3QDA-0.1/Py3QDA/ManageJournals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ronggui/PyQDA/HEAD/Py3QDA-0.1/Py3QDA/ManageJournals.py -------------------------------------------------------------------------------- /Py3QDA-0.1/Py3QDA/Memo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ronggui/PyQDA/HEAD/Py3QDA-0.1/Py3QDA/Memo.py -------------------------------------------------------------------------------- /Py3QDA-0.1/Py3QDA/Py3QDA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ronggui/PyQDA/HEAD/Py3QDA-0.1/Py3QDA/Py3QDA.py -------------------------------------------------------------------------------- /Py3QDA-0.1/Py3QDA/PyQDA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ronggui/PyQDA/HEAD/Py3QDA-0.1/Py3QDA/PyQDA.png -------------------------------------------------------------------------------- /Py3QDA-0.1/Py3QDA/ReportCodings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ronggui/PyQDA/HEAD/Py3QDA-0.1/Py3QDA/ReportCodings.py -------------------------------------------------------------------------------- /Py3QDA-0.1/Py3QDA/SQL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ronggui/PyQDA/HEAD/Py3QDA-0.1/Py3QDA/SQL.py -------------------------------------------------------------------------------- /Py3QDA-0.1/Py3QDA/SelectFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ronggui/PyQDA/HEAD/Py3QDA-0.1/Py3QDA/SelectFile.py -------------------------------------------------------------------------------- /Py3QDA-0.1/Py3QDA/Settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ronggui/PyQDA/HEAD/Py3QDA-0.1/Py3QDA/Settings.py -------------------------------------------------------------------------------- /Py3QDA-0.1/Py3QDA/ViewCodeFrequencies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ronggui/PyQDA/HEAD/Py3QDA-0.1/Py3QDA/ViewCodeFrequencies.py -------------------------------------------------------------------------------- /Py3QDA-0.1/Py3QDA/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Py3QDA-0.1/Py3QDA/docx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ronggui/PyQDA/HEAD/Py3QDA-0.1/Py3QDA/docx.py -------------------------------------------------------------------------------- /Py3QDA-0.1/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ronggui/PyQDA/HEAD/Py3QDA-0.1/setup.py -------------------------------------------------------------------------------- /Py3QDA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ronggui/PyQDA/HEAD/Py3QDA.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ronggui/PyQDA/HEAD/README.md --------------------------------------------------------------------------------