This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | |
<meta name="viewport" content="initial-scale=1.0, user-scalable=no" /> | |
<style type="text/css"> | |
body, html,#allmap {width: 100%; height: 100%; overflow: hidden; margin:0; font-family: "Microsoft YaHei";} | |
</style> | |
<script type="text/javascript" | |
src="http://api.map.baidu.com/api?v=2.0& ak="> // 这里填上浏览器类型的的API Key |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# !/usr/bin/env python3 | |
# adopted from: https://blog.csdn.net/m511655654/article/details/86163388 | |
import os | |
import urllib | |
import urllib.request | |
from time import gmtime, strftime | |
from dateutil.parser import parse | |
import json | |
import xlwt | |
import time |