Restoring a mongodump from cloud into my local server using this code:
import subprocess
address_of_mongodump = 'C:/Users/Lenovo/Documents/home/ubuntu/dump2020'
collection = ['mongorestore', '--uri', 'mongodb://localhost:27017', f'--archive {address_of_mongodump}']
data=subprocess.run(collection, shell = True,capture_output=True)
getting the following error:
CompletedProcess(args=['mongorestore', '--uri', 'mongodb://localhost:27017', '--archive=C:/Users/Lenovo/Documents/home/ubuntu/dump2020'], returncode=1, stdout=b'', stderr=b'2021-01-06T12:01:37.580+0530Failed: open C:UsersLenovoDocumentshomeubuntudump2020archive: The system cannot find the file specified. 2021-01-06T12:01:37.583+05300 document(s) restored successfully. 0 document(s) failed to restore. ')
i tried using mongorestore command from anaconda prompt andd it managed to restore all files from the same location but im unable to do the same using python(in jupyter)