用于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语言规范中读取特定符号   java使用simpleFTP上载到FTP失败   使用Java comparable按名称排序对象的数组   java类。newInstance创建所有属性都为空的对象   java类参数缺少最终引号   java如何在MediaPlayer服务中淡入淡出音乐   java如何使用类类型的方法参数?   错误:(18,29)java:';'预期+错误:(18,39)java:不是语句   java Spring@ConditionalOnBean未找到bean的   介绍屏幕中的java ArrayIndexOutOfBoundsException   java For循环和太多if-else如何测试   java Grails GORM 3.2.0查询,带有“列表中的where值”`   javajavax。安全啊。登录。LoginException:没有为SomeLogin配置LoginModule   用Java语言进行短路评估编程