├── .github ├── renovate.json └── workflows │ └── actions.yaml ├── .gitignore ├── LICENSE ├── README.md ├── main.py └── requirements.txt /.github/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nazar1ky/epic-games-store-friends-remover/HEAD/.github/renovate.json -------------------------------------------------------------------------------- /.github/workflows/actions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nazar1ky/epic-games-store-friends-remover/HEAD/.github/workflows/actions.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nazar1ky/epic-games-store-friends-remover/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nazar1ky/epic-games-store-friends-remover/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nazar1ky/epic-games-store-friends-remover/HEAD/README.md -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nazar1ky/epic-games-store-friends-remover/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests==2.32.4 2 | rich==14.0.0 --------------------------------------------------------------------------------