从pitt和pitt相关应用程序获取数据的api。

PittA的Python项目详细描述


Build StatusLicense GPLv2Python 3.4, 3.5, 3.6

由匹兹堡大学的Ritwik Gupta为了 更多来自皮特的公开数据。

用法示例

fromPittAPIimportcourse,dining,lab,laundry,library,news,people,shuttle,textbook### Courses# Will return a list of dictionaries containing courses in subjectcs_subject=course.get_term_courses(term='2194',subject='CS')cs_course=cs_subject['1501']cs_section_list=cs_course.sectionsbig_dict=cs_section_list[0].to_dict()### Textbook# Will return a list of dictionaries containing textbooks for a class# term number comes from pitt.verbacompare.comsmall_dict=textbook.get_textbook(term="3150",department="CS",course="445",instructor="RAMIREZ")### Library# Will return a dictionary containing results from querybig_dict=library.get_documents(query="computer")### News# Will return a list of dictionaries containing news from main news feedmedium_dict=news.get_news()### Laundry# Will return a dictionary with amount of washers and dryers# in use vs. total washers and dryers at buildingsmall_dict=laundry.get_status_simple(building_name="TOWERS")### Computer Lab# Will return a dictionary with status of the lab, and amount# of machines with a certain OSsmall_dict=lab.get_status(lab_name="ALUMNI")### Shuttle# Will return a list of dictionaries containing routes of shuttlesbig_dict=shuttle.get_routes()### People# Will return a list of people based on the querylist_of_peeps=people.get_person(query="Smith")### Dining# Will return a dictionary of dictionaries containing each dining location,# with its name, its open/closed status, and open times (if it exists)medium_dict=dining.get_locations()medium_dict=dining.get_locations_by_status(status="open")medium_dict=dining.get_locations_by_status(status="closed")# Will return a single dictionary of a dining location,# with its name, its open/closed status, and open times (if it exists)one=dining.get_location_by_name("taco_bell-schenley_cafe")two=dining.get_location_by_name("cup_&_chaucer-hillman")

测试

使用 python3 -m "nose" --with-coverage--cov PittAPI/ --with-timer tests/*.
如果python -v是3+,则用python替换python3

许可证

这个项目是根据GPLv2 license的条款授权的。

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

推荐PyPI第三方库


热门话题
java变量始终存储0值。为什么?   如何使用Java/REST将Azure blob从一个存储容器移动到另一个存储容器?   java将commons DBCP从1.2升级到1.4,我应该害怕吗?   java如何使用分隔符拆分字符串?   java使用数组读取json对象   java在groovy中切片字符串   交换数组java的两个邻域元素   java移动用于确定字符串是否为回文的逻辑   java Android应用程序在一个活动中崩溃   java Sparkjava将webapp文件夹设置为静态资源/模板的文件夹   java复杂条件表达式,用户易用。   java如何仅在表存在时从表中选择值   java I无法将数据从Recyclerview传递到其他活动   java数据结构最佳设计(大数据)   java Android从DatePickerDialogFragment中删除日历视图   java将数据从Firebase获取到片段   数组。sort()在java中运行不正常