├── .env ├── .github └── workflows │ └── publish.yml ├── .gitignore ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── SettingsTemplate.yaml ├── demo.png ├── main.py ├── packdeps.cmd ├── plugin.json ├── requirements.txt ├── settings.png └── src ├── CurrencyPP.png ├── currencyparser.py ├── currencypp.py ├── exchange.py ├── parsy.py └── webservice.py /.env: -------------------------------------------------------------------------------- 1 | PYTHONPATH=./lib -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeLocTai/Flow.Launcher.Plugin.CurrencyPP/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeLocTai/Flow.Launcher.Plugin.CurrencyPP/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeLocTai/Flow.Launcher.Plugin.CurrencyPP/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeLocTai/Flow.Launcher.Plugin.CurrencyPP/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeLocTai/Flow.Launcher.Plugin.CurrencyPP/HEAD/README.md -------------------------------------------------------------------------------- /SettingsTemplate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeLocTai/Flow.Launcher.Plugin.CurrencyPP/HEAD/SettingsTemplate.yaml -------------------------------------------------------------------------------- /demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeLocTai/Flow.Launcher.Plugin.CurrencyPP/HEAD/demo.png -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeLocTai/Flow.Launcher.Plugin.CurrencyPP/HEAD/main.py -------------------------------------------------------------------------------- /packdeps.cmd: -------------------------------------------------------------------------------- 1 | pip install -r ./requirements.txt -t ./lib -------------------------------------------------------------------------------- /plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeLocTai/Flow.Launcher.Plugin.CurrencyPP/HEAD/plugin.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | Flox_lib==0.18.1 2 | -------------------------------------------------------------------------------- /settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeLocTai/Flow.Launcher.Plugin.CurrencyPP/HEAD/settings.png -------------------------------------------------------------------------------- /src/CurrencyPP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeLocTai/Flow.Launcher.Plugin.CurrencyPP/HEAD/src/CurrencyPP.png -------------------------------------------------------------------------------- /src/currencyparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeLocTai/Flow.Launcher.Plugin.CurrencyPP/HEAD/src/currencyparser.py -------------------------------------------------------------------------------- /src/currencypp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeLocTai/Flow.Launcher.Plugin.CurrencyPP/HEAD/src/currencypp.py -------------------------------------------------------------------------------- /src/exchange.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeLocTai/Flow.Launcher.Plugin.CurrencyPP/HEAD/src/exchange.py -------------------------------------------------------------------------------- /src/parsy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeLocTai/Flow.Launcher.Plugin.CurrencyPP/HEAD/src/parsy.py -------------------------------------------------------------------------------- /src/webservice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeLocTai/Flow.Launcher.Plugin.CurrencyPP/HEAD/src/webservice.py --------------------------------------------------------------------------------