parser.add_argument("--port",help="local network port to listen on",type=int,default=8000)
parser.add_argument("--public",help="listen on remote network interfaces (allows other hosts to see the website; otherwise only this host can see it)",action="store_true")
parser.add_argument("--files-dir",help="directory to upload/download files from (prefix with # to specify that the path is relative to the Femtoshare executable)",default="#files")
parser.add_argument("--title",help="specify the name and the title of the app",default="femtoshare")
args=parser.parse_args()
ifargs.public:
@ -39,6 +40,10 @@ if args.files_dir.startswith("@"):