Learn practical skills, build real-world projects, and advance your career
!pip install jovian --upgrade -q
import jovian 
from pathlib import Path

# setup the jovian API key
jvn = !cat ../input/jovian.txt
jovian.utils.credentials.write_api_key(jvn[0])
!ls
# test if the file is called "__notebook__.ipynb" - this indicates we're committing
if Path("__notebook__.ipynb").is_file():
    jovian.commit(nb_filename="__notebook__.ipynb",notebook_id="9b5a35e3065942c893d7e082c22d41cf")
else:
    jovian.commit(notebook_id="9b5a35e3065942c893d7e082c22d41cf")