用于plex媒体服务器api的python接口

plex.p的Python项目详细描述


https://travis-ci.org/fuzeman/plex.py.svg?branch=masterhttps://coveralls.io/repos/fuzeman/plex.py/badge.png?branch=master

用于plex媒体服务器api的python接口。

用法

快速示例(连接到本地服务器)

frompleximportPlexforiteminPlex['library'].recently_added():print'[%s] %s'%(item.type,item.title)

连接到远程服务器:

frompleximportPlexwithPlex.configuration.server(host='192.168.1.110'):recently_added=Plex['library'].recently_added()foriteminrecently_added:print'[%s] %s'%(item.type,item.title)

测试

安装要求:

$ pip install -r requirements.txt
$ pip install -r requirements_test.txt

单元测试:

$ py.test

单元测试(通过coverage.py):

$ coverage run -m py.test

许可证

The MIT License (MIT)

Copyright (c) 2014 Dean Gardiner

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

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

推荐PyPI第三方库


热门话题
java这两个例子是等价的(volatile+synchronized increment还是synchronized fetch+increment)?   java Spring Boot+LocalDate:“没有主构造函数或默认构造函数”   java代码,用于在jasper报告中以指定格式显示浮点值   java@AllArgsConstructor不使用Springbean   在同一行上声明多个Java数组?   java在JSP中使用JSon   从Java运行PowerShell加载第三方模块ResourceUnavailable:FileNotFoundException   java Do SWIG在carrays中的数组类。我可以释放它们包装的调用数组吗?   java无法在linux中加载库MediaInfo   文件的java大小在写入一些文本时会变成GB   java将Arraylist转换为要通过Whatsapp共享的项目列表   java Android保存网络请求状态   java标签一个泛型类型参数,以超级   java向二进制文件添加自定义元数据   java在使用JScrollPane滚动文本时偶尔会出现扭曲显示   java log4j2仅记录到控制台   java不一致的Apache Solr查询结果   如何在web项目的前端使用php,后端使用java   java如何使spring批处理步骤执行与可配置线程数并行?   java无法为ArrayList<thread>中的可运行文件调用getter?