├── .gitignore ├── README.md ├── annual_update.py ├── codeforces.db └── creds ├── README.md ├── __init__.py └── credentials.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alwa97/codeforces-1000/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alwa97/codeforces-1000/HEAD/README.md -------------------------------------------------------------------------------- /annual_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alwa97/codeforces-1000/HEAD/annual_update.py -------------------------------------------------------------------------------- /codeforces.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alwa97/codeforces-1000/HEAD/codeforces.db -------------------------------------------------------------------------------- /creds/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alwa97/codeforces-1000/HEAD/creds/README.md -------------------------------------------------------------------------------- /creds/__init__.py: -------------------------------------------------------------------------------- 1 | # This file makes the directory a Python package -------------------------------------------------------------------------------- /creds/credentials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alwa97/codeforces-1000/HEAD/creds/credentials.py --------------------------------------------------------------------------------