There are many repositories on where people upload their solutions to the problems they have solved on . When I started solving problems on , I also started doing the same since it provides as a place to go through the things I had practiced. But as I started solving more problems, it became difficult to manually copy paste them so I wrote a script that can do the same. github hackerrank hackerrank python Currently the script is configured to scrap though the Java and python tracks, and can be configured to add additional tracks by adding them in tracks array. For the source code here is the repository link, first link is of the scrapper and second of my hackerrank solutions for reference. https://github.com/hearsid/hackerrank-scrapper https://github.com/hearsid/hackerrank-scr https://github.com/hearsid/hackerrank-scrapper _Hackerrank submitted solutions scraper and my submitted solutions. - hearsid/hackerrank_github.com hearsid/hackerrank Here are the steps to use it for your account Clone the above repository, or you can copy the required python files. Login to your hackerrank account and copy the CSRF token and cookie from the headers of any of XHR request. (You can check the same in the network tab of chrome devtools) Create a credentials.py file in the same folder and add your CSRF token and cookie in the same. Sample given after 6th point. Go to scraper.py file and add the tracks you want to scrap in the TRACKS array. Go to util.py file and for the tracks update the extension with which you would like to save the file. Run > python scraper.py # credentials.pyCSRF_TOKEN = ‘CVKP-XXXX-lYT7iQ==’COOKIE = ‘hackerrank=ea729eb0–XXXX-3114’ The hackerrank URL’s I have used in the above repository work well now but may change over time. Please create an issue if you find anything not working or would like to request a feature.