معرفی شرکت ها


QueryLMS-0.1.2


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

QueryLMS creates an simple interface for making queries and issuing commands to Logitech Media Server and associated players
ویژگی مقدار
سیستم عامل OS Independent
نام فایل QueryLMS-0.1.2
نام QueryLMS
نسخه کتابخانه 0.1.2
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Aaron Ciuffo
ایمیل نویسنده aaron.ciuffo@gmail.com
آدرس صفحه اصلی https://github.com/txoof/querylms
آدرس اینترنتی https://pypi.org/project/QueryLMS/
مجوز -
# QueryLMS QueryLMS manages queries to a Logitech Media Server and associates with a single player. A QueryLMS object can be used to query server or player status information and control an LMS player. QueryLMS is a rewrite of [LMSQuery](https://github.com/roberteinhaus/lmsquery) and reuses a significant portion of the LMSQuery code. Usage: ``` import QueryLMS # create the object and try to discover LMS on the local network # try to associate with "My Player" my_player = QueryLMS(player_name='My Player') # get now playing tracks my_player.get_now_playing() >>> {'time': 0, 'mode': 'stop', 'id': 17001, 'title': 'We Belong Together', 'artist': 'Vampire Weekend feat. Danielle Haim', 'coverid': 'c9d646ff', 'duration': 190.733, 'album_id': '2064', 'genre': 'No Genre', 'album': 'Father of the Bride', 'artwork_url': 'http://192.168.178.9:9000/music/c9d646ff/cover.jpg'} # create the object with a defined hostname and port # try to associate with player "Living Room" living_room = QueryLMS(host="media-server.local", port=9001, player_name="Living Room") ``` ## API All player related calls will raise ValueError if player_id is not set. ``` class QueryLMS(builtins.object) QueryLMS(host=None, port=None, player_name=None, player_id=None, scan_timeout=5) Class to handle queries for a LMS player Each Query LMS object is associated with a single player If no host and port number are specified, the object will attempt to locate an active LMS Server on the network. If a player_name is specified, the Query object will attempt to find the player_id associated with that name. All queries are run against the server or a single server Attributes: host(str): LMS Server hostname or ip address port(int): LMS Server port number player_name(str): Player name player_id(str): unique player id in hex scan_timeout(int): seconds to search local network for an LMS server server_query_url(str): url to use when querying host status server_base_url(str): base url of server: http://host:port/ Methods defined here: __init__(self, host=None, port=None, player_name=None, player_id=None, scan_timeout=5) inits QueryLMS Class with host, port, player_id, player_name and scan_timeout Args: host(str): LMS host name or ip address port(int): LMS port number player_name(str): name of player to associate with player_id(str): player_id in hex scan_timeout(int): seconds to search for LMS host display(self, line1, line2, duration=5) display line1 and line2 on associated player Args: line1(str) line1(str) display_all(self, line1, line2, duration=5) display line1 and line2 on all connected players Args: line1(str) line1(str) get_alarms(self, enabled=True) ??? get_artist_album(self, artist_id) query associated player for currently playing album artist Returns: (str) get_artist_count(self) query server for total number of artists Returns: (int): count of unique artist ids get_artists(self) query server for internal artist id, names Returns: (dict): JSON formatted list of ids and artists get_current_album(self) query associated player for currently playing track album Returns: (str) get_current_artist(self) query associated player for currently playing artist Returns: (str) get_current_radio_title(self, radio) ??? get_current_song_title(self) query associated player for currently playing track title Returns: (str) get_current_title(self) query associated player for currently playing track title Returns: (str) get_next_alarm(self) ??? get_now_playing(self) query associated player for now playing information including: * album * artist * artwork_url * duration * genre * coverid * id * title get_player_count(self) query server for total number of connected players Returns: (int): count of unique players connected get_player_pref(self, pref) ??? get_players(self) query server for connected player information Returns: (dict): JSON formatted list of player information get_radios_count(self) query server for total number of radios Returns: (int): count of unique radios connected get_server_status(self) query server status in JSON Returns: (dict): JSON formatted server status get_volume(self) query associated player for volume Returns: (str) is_playing_remote_stream(self) ??? next_song(self) fast forward one track on associated player Returns: (dict): {} pause(self) pause associated player Returns: (dict): {} play_album(self, album_id) play an album on associated player Args: album_id(int): internal album id Returns: (dict): {'count': int} total tracks on album play_radio(self, radio) play radio??? on associated player previous_song(self) rewind one track on associated player Returns: (dict): {} query(self, player_id='', *args) # Basic Query ##################################### rescan(self) rescan LMS library Returns: (dict): {} search(self, searchstring, count=9999) query server for searchstring (ignoring case) Args: searchstring(str): string to search for Returns: (dict): JSON formatted list of all entities containing searchstring search_albums(self, searchstring, count=9999) query server for searchstring in album names (ignoring case) Args: searchstring(str): string to search tracks for Returns: (dict): JSON formatted list of all album entities containing searchstring search_contributors(self, searchstring, count=9999) query server for searchstring in contributors names (ignoring case) Args: searchstring(str): string to search tracks for Returns: (dict): JSON formatted list of all contributors entities containing searchstring search_players(self, searchstring, count=9999) query server for searchstring in player names (ignoring case) Args: searchstring(str): string to search tracks for Returns: (dict): JSON formatted list of all player entities containing searchstring search_tracks(self, searchstring, count=9999) query server for searchstring in track names (ignoring case) Args: searchstring(str): string to search tracks for Returns: (dict): JSON formatted list of all track entities containing searchstring set_player_pref(self, pref, value) ??? set_power(self, power=1) send power command to connected player set_power_all(self, power=1) set_server(self) set the server details using "host" and "port" if no host and port is specified, queryLMS will search for the first LMS server on the local network segment Sets: server_query_url server_base_url player_id (if not already set) set_volume(self, volume) set volume on associated player Args: volume(int): 0-100 Returns: (dict): {} skip_songs(self, amount=1) skip n tracks on associated player Args: amount(int): number of tracks to skip Returns: (dict): {} ---------------------------------------------------------------------- Static methods defined here: scan_lms(scan_timeout=None) Search local network for Logitech Media Servers Based on netdisco/lms.py by cxlwill - https://github.com/cxlwill Args: scan_timeout (int): timeout seconds Returns: list: Dictionary of LMS Server IP and listen ports ---------------------------------------------------------------------- Data descriptors defined here: __dict__ dictionary for instance variables (if defined) __weakref__ list of weak references to the object (if defined) host LMS ip address or hostname: (str) player_id LMS player unique hexidecimal id (str) player_name human readable name of player: (str) port LMS server port: (int) ```


نیازمندی

مقدار نام
- requests


زبان مورد نیاز

مقدار نام
>=3.7 Python


نحوه نصب


نصب پکیج whl QueryLMS-0.1.2:

    pip install QueryLMS-0.1.2.whl


نصب پکیج tar.gz QueryLMS-0.1.2:

    pip install QueryLMS-0.1.2.tar.gz