轻松访问Kit SeatFinder的数据。本项目与https://www.seatfinder.de的原始作者没有任何关联/

seatfinder的Python项目详细描述


seatfinder python api(非官方)

轻松访问https://seatfinder.de数据。 在后台缓存数据,任何内容都不会被下载两次。

安装

pip install seatfinder

用法

from seatfinder import Seatfinder
seatfinder = Seatfinder('Kassel') # optional parameter data_dir. Default ~/.seatfinder/data
seatfinder.seat_estimate['2018-09-29']

# Slicing is also possible
data = seatfinder.manual_count['2018-09-01':'2018-10-30']

# `data` is a dict, access locations via key
data['LeoEG']

# More information about the location
seatfinder.locations['LeoEG']

# Convert to pandas dataframe
df = data.to_dataframe()

欢迎加入QQ群-->: 979659372 Python中文网_新手群

推荐PyPI第三方库


热门话题
具有未知数量条件的java If语句   java如何在Spark中使用两个“条件”进行过滤?   雅加达ee为ColdFusion提供的最佳Java ee服务器   java如何在jersey的MessageBodyWriter方法中获取writeTo中的anotations值?   java从脚本文件调用jar文件中的函数   java在执行insert语句后,如何获得id值为的语句?   在OS X上设置OpenCV Java绑定   java使用for循环遍历数组x。以字符串形式返回x的元素,其中每个元素由一个空格分隔   ApacheiClientBuilder为Algolia Java创建的APIClient是线程安全的吗?   java在DFS/BFS算法中获取邻居时避免内存分配?   java使用AES/CBC/PKCS5P加密大文件(2GB)   允许保存/加载列布局的Java DB网格组件   队列大小为1的java Spring调度   跑步带有Java参数的exe   java正则表达式将所有“<”和“>”标记替换为“&lt;”及“&gt;”在<<![CDATA]>标签?   java何时同步变量?