Exporting the local files on to AWS

I find it better to work on a sample dataset on a local computer and then try on the complete dataset on a AWS instance. Is there a way that I can export that python notebook onto AWS instance?

You can copy things back and forth from a remote server using scp.

Alternatively if you want to download something from a remote notebook, you can create a FileLink.

from IPython.display import FileLink

Another option is to use git for keeping notebook directory in sync.