├── .gitignore ├── LICENSE.txt ├── README.md ├── setup.cfg ├── setup.py ├── wcleaner-demo.gif └── wcleaner ├── __init__.py ├── core.py ├── junkcenter.py └── settings.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruiqi/wcleaner/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruiqi/wcleaner/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruiqi/wcleaner/HEAD/README.md -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.md 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruiqi/wcleaner/HEAD/setup.py -------------------------------------------------------------------------------- /wcleaner-demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruiqi/wcleaner/HEAD/wcleaner-demo.gif -------------------------------------------------------------------------------- /wcleaner/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = '1.1.3' 2 | -------------------------------------------------------------------------------- /wcleaner/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruiqi/wcleaner/HEAD/wcleaner/core.py -------------------------------------------------------------------------------- /wcleaner/junkcenter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruiqi/wcleaner/HEAD/wcleaner/junkcenter.py -------------------------------------------------------------------------------- /wcleaner/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruiqi/wcleaner/HEAD/wcleaner/settings.py --------------------------------------------------------------------------------