This is a diary that you can record your daily life with images and simple text.

Language and Tools (detail) :

Transfer Data

Performs an async AJAX request

$("button").click(function(){
  $.ajax({
		  type: "GET",
			url: "demo_test.txt", //request url
			success: function(result){ //data loaded in result
    $("#div1").html(result);
  }});
});

Flask

If you are looking into building a simple web application with Python, the Flask microframework is probably one of the best choices. With Flask you can build a real web application with just a single Python file and extend it if you need to.

Flask Tutorial

Environment setting in Pycharm