├── .gitignore ├── LICENSE ├── README.md ├── setup.py └── src └── winwifi ├── __init__.py ├── __main__.py ├── data └── profile-template.xml └── main.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrjohannchang/winwifi/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrjohannchang/winwifi/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrjohannchang/winwifi/HEAD/README.md -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrjohannchang/winwifi/HEAD/setup.py -------------------------------------------------------------------------------- /src/winwifi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrjohannchang/winwifi/HEAD/src/winwifi/__init__.py -------------------------------------------------------------------------------- /src/winwifi/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrjohannchang/winwifi/HEAD/src/winwifi/__main__.py -------------------------------------------------------------------------------- /src/winwifi/data/profile-template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrjohannchang/winwifi/HEAD/src/winwifi/data/profile-template.xml -------------------------------------------------------------------------------- /src/winwifi/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrjohannchang/winwifi/HEAD/src/winwifi/main.py --------------------------------------------------------------------------------