- 直接拷贝表格传入notebook
pd.read_clipboard()
- 读取xls文件转成csv文件
pd.ExcelFile(xls_fpath).parse().to_csv(csv_fpath)
#!/usr/bin/env python3 | |
# coding: utf-8 | |
import cson | |
def read_file(fp): | |
with open(fp) as f: | |
return f.read() | |
#!/usr/bin/env python | |
""" | |
Use Selenium to Measure Web Timing | |
Performance Timing Events flow | |
navigationStart -> redirectStart -> redirectEnd -> fetchStart -> domainLookupStart -> domainLookupEnd | |
-> connectStart -> connectEnd -> requestStart -> responseStart -> responseEnd | |
-> domLoading -> domInteractive -> domContentLoaded -> domComplete -> loadEventStart -> loadEventEnd |
from datetime import datetime | |
import aiohttp | |
import asyncio | |
URL = "https://medium.fabianbosler.de/run" | |
async def sample_asyncio(samples): | |
start = datetime.now() |
# |