├── .steamidcount ├── LICENSE ├── README.md ├── __pycache__ └── helpers.cpython-310.pyc ├── app.py ├── databaseupdater.py ├── helpers.py ├── listingcollector.py ├── listings.json ├── listings.txt └── templates ├── avatar_finder.html └── index.html /.steamidcount: -------------------------------------------------------------------------------- 1 | 76561197967275729 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superstar1205/AvatarFinder/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superstar1205/AvatarFinder/HEAD/README.md -------------------------------------------------------------------------------- /__pycache__/helpers.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superstar1205/AvatarFinder/HEAD/__pycache__/helpers.cpython-310.pyc -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superstar1205/AvatarFinder/HEAD/app.py -------------------------------------------------------------------------------- /databaseupdater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superstar1205/AvatarFinder/HEAD/databaseupdater.py -------------------------------------------------------------------------------- /helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superstar1205/AvatarFinder/HEAD/helpers.py -------------------------------------------------------------------------------- /listingcollector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superstar1205/AvatarFinder/HEAD/listingcollector.py -------------------------------------------------------------------------------- /listings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superstar1205/AvatarFinder/HEAD/listings.json -------------------------------------------------------------------------------- /listings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superstar1205/AvatarFinder/HEAD/listings.txt -------------------------------------------------------------------------------- /templates/avatar_finder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superstar1205/AvatarFinder/HEAD/templates/avatar_finder.html -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superstar1205/AvatarFinder/HEAD/templates/index.html --------------------------------------------------------------------------------