Skip to content

Instantly share code, notes, and snippets.

@tusqasi
Created October 16, 2023 16:10
Show Gist options
  • Save tusqasi/565b17bcdbaaefaf27c20d69c1435eff to your computer and use it in GitHub Desktop.
Save tusqasi/565b17bcdbaaefaf27c20d69c1435eff to your computer and use it in GitHub Desktop.
# Run the below command to download all the deps
## pip install request
import requests
for year in range(2007, 2022):
data = requests.get(
f"https://gate.iitkgp.ac.in/documents/gatepapers/{year}/ec_{year}.pdf")
with open(f"{year}.pdf", mode='wb') as fp:
fp.write(data.content)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment