├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── data.db ├── example.config.toml ├── module ├── __init__.py ├── aiodb.py ├── aioitad.py ├── aiokeylol.py ├── aionet.py ├── aiosteam.py ├── config.py ├── crawer.py ├── filter.py ├── handlers │ ├── __init__.py │ ├── bbcode.py │ ├── console.py │ ├── excel.py │ ├── json.py │ └── markdown.py ├── log.py ├── sort.py ├── static.py ├── utils.py └── version.py ├── requirements.txt └── run.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr233/steam_wishlist_helper/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr233/steam_wishlist_helper/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr233/steam_wishlist_helper/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr233/steam_wishlist_helper/HEAD/README.md -------------------------------------------------------------------------------- /data.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr233/steam_wishlist_helper/HEAD/data.db -------------------------------------------------------------------------------- /example.config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr233/steam_wishlist_helper/HEAD/example.config.toml -------------------------------------------------------------------------------- /module/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr233/steam_wishlist_helper/HEAD/module/__init__.py -------------------------------------------------------------------------------- /module/aiodb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr233/steam_wishlist_helper/HEAD/module/aiodb.py -------------------------------------------------------------------------------- /module/aioitad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr233/steam_wishlist_helper/HEAD/module/aioitad.py -------------------------------------------------------------------------------- /module/aiokeylol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr233/steam_wishlist_helper/HEAD/module/aiokeylol.py -------------------------------------------------------------------------------- /module/aionet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr233/steam_wishlist_helper/HEAD/module/aionet.py -------------------------------------------------------------------------------- /module/aiosteam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr233/steam_wishlist_helper/HEAD/module/aiosteam.py -------------------------------------------------------------------------------- /module/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr233/steam_wishlist_helper/HEAD/module/config.py -------------------------------------------------------------------------------- /module/crawer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr233/steam_wishlist_helper/HEAD/module/crawer.py -------------------------------------------------------------------------------- /module/filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr233/steam_wishlist_helper/HEAD/module/filter.py -------------------------------------------------------------------------------- /module/handlers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr233/steam_wishlist_helper/HEAD/module/handlers/__init__.py -------------------------------------------------------------------------------- /module/handlers/bbcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr233/steam_wishlist_helper/HEAD/module/handlers/bbcode.py -------------------------------------------------------------------------------- /module/handlers/console.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr233/steam_wishlist_helper/HEAD/module/handlers/console.py -------------------------------------------------------------------------------- /module/handlers/excel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr233/steam_wishlist_helper/HEAD/module/handlers/excel.py -------------------------------------------------------------------------------- /module/handlers/json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr233/steam_wishlist_helper/HEAD/module/handlers/json.py -------------------------------------------------------------------------------- /module/handlers/markdown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr233/steam_wishlist_helper/HEAD/module/handlers/markdown.py -------------------------------------------------------------------------------- /module/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr233/steam_wishlist_helper/HEAD/module/log.py -------------------------------------------------------------------------------- /module/sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr233/steam_wishlist_helper/HEAD/module/sort.py -------------------------------------------------------------------------------- /module/static.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr233/steam_wishlist_helper/HEAD/module/static.py -------------------------------------------------------------------------------- /module/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr233/steam_wishlist_helper/HEAD/module/utils.py -------------------------------------------------------------------------------- /module/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr233/steam_wishlist_helper/HEAD/module/version.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr233/steam_wishlist_helper/HEAD/requirements.txt -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr233/steam_wishlist_helper/HEAD/run.py --------------------------------------------------------------------------------