How I make my Jupyter notebook script locked?

181 views Asked by At

I have multiple scripts using the IRkernel on Jupyter notebook. I have to put them on a server, but I only want that people can run it, not editable or deletable. I have already tried things, mainly by modifying the metadatas like that :

{
  "deletable": false,
  "editable": false,
  "trusted": true
}

But when it would be on the server, others people can modify the metadatas, so it is not really what I want. Is there a way to make my script fully locked and that nobody can editable it ?

0

There are 0 answers