我正在用Python编写一个程序,但是需要使用一个我不知道的JavaScript的Google API,因此我在JavaScript中编写的代码很少,并且使用JS2PY在Python下运行它。问题是,JS2PY似乎不支持HTML标签。


我有 -



< html>
 < HEAD>&#的xD;
 < script>

 function initMap(){

 var swl = new google.maps.LatLng({lat:55.857128,lng:-4.272051});
 var nel = new google.maps.LatLng({lat:55.867147,lng:-4.245272});
 var boundsRectangle = new google.maps.LatLngBounds(swl,nel);

 var service = new google.maps.places.PlacesService(map);
 service.nearbySearch({
 bounds:boundsRectangle,
 types:['store']
},callback);
& #xA;}

函数回调(结果,状态){
 if(status === google.maps.places.PlacesServiceStatus.OK){
 var finalResults = [];
 for(var i = 0; i< results.length; i ++){
 finalResults.push(结果[I]。名称);&#的xD;
 finalResults.push(结果[I] .geometry.location);&#的xD;
 }&#的xD;
 window.alert(finalResults);&#的xD;
 }&#的xD;
}&#的xD;
&#的xD;
&#的xD;
 < /脚本>&#的xD;
 < /头>&#的xD;
 <身体GT;&#的xD;
 < div id =“map”>< / div>
 < script src =“https://maps.googleapis.com/maps/api/js?key=AIzaSyDU-I_Cth5BjAHVr15YKAa8A5-xbwmp74M&signed_in=true&libraries=places&callback=initMap”async defer>< / script> &#的xD;
 < / BODY>&#的xD;
< / HTML> 代码>
&#的xD;
 问题是我只能粘贴< script>< / script>
标签之间的内容进入JS2PY并且不知道如何包含
< script src =“https://maps.googleapis.com/maps/api/js? key = AIzaSyDU-I_Cth5BjAHVr15YKAa8A5-xbwmp74M& signed_in = true& libraries = places& callback = initMap“async defer>< / script>



 进入主要代码。


提前致谢。