This is a diary that you can record your daily life with images and simple text.
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);
}});
});
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.