{ "info": { "author": "Teemu R", "author_email": "tpr@iki.fi", "bugtrack_url": null, "classifiers": [ "License :: OSI Approved :: GNU General Public License v3 (GPLv3)", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10" ], "description": "python-songpal\n==============\n\n|PyPI version| |Black|\n\nPython 3 implementation of SongPal protocol as used by Sony's soundbar\nand potentially other devices.\n\n.. NOTE::\n\n This project is currently at its alpha stage and all contributions,\n whether reporting about devices working with this or creating pull\n requests to implement missing functionality are more than welcome!\n\nSupported devices\n-----------------\n\nThe library has been tested to work with following devices:\n\n* BDV-N9200W\n* CMT-SX7B\n* HT-XT2, HT-XT3\n* HT-NT5\n* HT-MT500\n* HT-ZF9\n* HT-ST5000\n* SRS-X77, SRS-X88, SRS-X99\n* STR-DN1060, STR-DN1070, STR-DN1080\n\n\n.. NOTE::\n\n If your device is not listed here but is working, feel free to contribute a device info file (see devinfos/ directory) by typing `songpal dump-devinfo ` and creating a pull request on this repository.\n This information can later be useful for extending the support for those devices.\n\n.. NOTE::\n\n Sony's `Supported devices page `_ lists devices,\n which will probably also work with this library.\n\n If you have a device which is not listed above, please create a pull request\n or an issue on github!\n\n\nGetting started\n---------------\n\nInstallation\n~~~~~~~~~~~~\n\nThe easiest way to install is by using pip:\n\n.. code-block::\n\n $ pip install python-songpal\n\nLocating the endpoint\n~~~~~~~~~~~~~~~~~~~~~\n\nTo communicate with the device you need to locate its endpoint URL.\nThe easiest way to do is to execute the discover command:\n\n.. code-block::\n\n $ songpal discover\n\n Discovering for 3 seconds\n Found HT-XT3 - BAR-2015\n * API version: 1.0\n * Endpoint: http://192.168.1.1:10000/sony\n * Services:\n - Service: guide\n - Service: system\n - Service: audio\n - Service: avContent\n\n\nThis will run a UPnP discovery to find out responsive devices\nimplementing the ScalarWebAPI.\n\n.. WARNING::\n If you are running the command on another network than the device\n is residing, you will need to locate the endpoint with some other means.\n\nThe endpoint can be defined with ``--endpoint`` option, or alternatively\n``SONGPAL_ENDPOINT`` environment variable can be set.\n\nGeneral Usage\n~~~~~~~~~~~~~\n\nThe accompanied ``songpal`` tool can be used to control your device.\nAll available commands can be listed with ``--help`` and more help on each\ncommand can be obtained by passing it to the sub-command, e.g., ``songpal power --help``.\nMost interesting commands are most likely ``power``, ``output``, ``volume``, and ``sound``.\n\nGenerally speaking invoking a command without any parameters will display\nsome relevant information like settings or active output.\n\nFor debugging ``-d`` (``--debug``) can be passed\n-- also multiple times for increased verbosity -- for\nprotocol-level information.\n\nSome of the commands can be used to adjust settings related to that functionality,\nusually by passing the `target` and its wanted `value` as parameters to the command.\n\n.. code-block::\n\n $ songpal bluetooth mode off\n\nOn commands which are not mainly used for settings, such as power_, require\nexplicit `set` sub-command for changing the settings.\n\n.. WARNING::\n\n Refer to help of the specific command to find the correct format.\n\n TODO: Make the CLI consistent on this.\n\nStatus\n------\n\n.. code-block::\n\n $ songpal status\n\n\nwill display some basic information about the device,\nsuch as whether it is powered on and what are its volume settings.\n\n.. _power:\n\nPower Control\n-------------\n\n``power`` command can be used to both turning the device on and off,\nand change its power settings.\n\n.. code-block:: bash\n\n $ songpal power\n\n $ songpal power settings\n\n $ songpal power\n\n $ songpal power set quickStartMode on\n\n.. NOTE::\n For turning on the device the quick boot has to be activated;\n a patch for adding wake-on-lan support to allow starting the device\n without quick boot are welcome.\n\n.. WARNING::\n The device seems to report sometimes its status to be off even\n when that is not the case (may be related to quick boot mode being 'on').\n\n Please enable it and restart the device fully before reporting a bug\n related to this.\n\nVolume Control\n--------------\n\n.. code-block::\n\n $ songpal volume [-- output 'output title'] [|mute|unmute]\n\n $ songpal volume 20\n\n $ songpal volume +5\n\n $ songpal volume -10\n\n $ songpal volume --output 'Zone 2'\n\n\n $ songpal volume --output 'Main Zone' 15\n\nSound Settings\n--------------\n\nYour device may support various sound-related settings,\nsuch as night mode or adjusting the subwoofer volume.\n\n.. code-block::\n\n $ songpal sound\n\n $ songpal sound nightMode off\n\n $ songpal sound subwooferLevel 4\n\n\nZone Control\n--------------\n\n.. code-block::\n\n $ songpal zone\n\n Zones:\n * Main Zone (uri: extOutput:zone?zone=1) (active)\n * Zone 2 (uri: extOutput:zone?zone=2) (active)\n * Zone 3 (uri: extOutput:zone?zone=3)\n * HDMI Zone (uri: extOutput:zone?zone=4)\n\n $ songpal zone 'Main Zone'\n\n Activating Main Zone (uri: extOutput:zone?zone=1) (active)\n\n $ songpal zone 'Zone 2' true\n\n Activating Zone 2 (uri: extOutput:zone?zone=2) (active)\n\n $ songpal zone 'Zone 2' false\n\n Deactivating Zone 2 (uri: extOutput:zone?zone=2) (active)\n\nInput Control\n--------------\n\nwithout zones:\n.. code-block::\n\n $ songpal input\n * HDMI1 (uri: extInput:hdmi?port=1)\n * HDMI2 (uri: extInput:hdmi?port=2) (active)\n * HDMI3 (uri: extInput:hdmi?port=3)\n\n $ songpal input HDMI1\n\n\nwith zones:\n.. code-block::\n\n $ songpal input\n\n Inputs:\n * SOURCE (uri: extInput:source)\n - extOutput:zone?zone=2\n - extOutput:zone?zone=3\n - extOutput:zone?zone=4\n * GAME (uri: extInput:game) (active)\n - extOutput:zone?zone=1\n - extOutput:zone?zone=4\n * SAT/CATV (uri: extInput:sat-catv)\n - extOutput:zone?zone=1\n - extOutput:zone?zone=2\n - extOutput:zone?zone=3\n - extOutput:zone?zone=4\n * VIDEO 1 (uri: extInput:video?port=1)\n - extOutput:zone?zone=1\n - extOutput:zone?zone=2\n - extOutput:zone?zone=3\n - extOutput:zone?zone=4\n * VIDEO 2 (uri: extInput:video?port=2)\n - extOutput:zone?zone=1\n - extOutput:zone?zone=4\n * TV (uri: extInput:tv)\n - extOutput:zone?zone=1\n * SA-CD/CD (uri: extInput:sacd-cd)\n - extOutput:zone?zone=1\n - extOutput:zone?zone=2\n - extOutput:zone?zone=3\n - extOutput:zone?zone=4\n * Bluetooth Audio (uri: extInput:btAudio)\n - extOutput:zone?zone=1\n - extOutput:zone?zone=2\n - extOutput:zone?zone=3\n\n $ songpal input 'VIDEO 1'\n\n $ songpal input 'SOURCE' --output 'Zone 2'\n\n\nDevice Settings\n---------------\n\nTo list available settings, use ``settings`` command.\n\n.. code-block:: bash\n\n $ songpal settings\n\n\nDo note that some settings (e.g. bluetooth settings) are not listed in the\nglobal settings tree, but have to be separatedly accessed using the ``bluetooth`` command.\n\n.. NOTE::\n\n Setting global settings directly via the CLI is not currently supported,\n but can potentially be accessed via their respective commands:\n ``bluetooth``, ``sound``, ``power``.\n\n Patches improving this are welcome!\n\n\nGroup Control\n-------------\n\n.. code-block::\n\n $ songpal group\n\nGroup command require using the UPnP URL ``--url`` instead of the API ``--endpoint``, and you'll need the ``UUIDs`` of the devices you want to group as well. Both of these can be obtained through the ``discover`` function. All group commands should be executed on the master\n\nCreating groups:\n\n.. code-block::\n\n $ songpal group --url [upnpurl] create [groupname] [slave uuids]\n\n $ songpal group --url \"http://x.x.x.x:52323/dmr.xml\" create GroupName uuid:00000000-0000-1010-8000-xxxx uuid:00000000-0000-1010-8000-xxxx\n\nAborting groups\n\n.. code-block::\n\n $ songpal group --url [pnpurl] abort\n\n $ songpal group --url \"http://x.x.x.x:52323/dmr.xml\" abort\n\nChanging volume\n\n.. code-block::\n\n $ songpal group --url [pnpurl] volume [value -100,100]\n\n $ songpal group --url \"http://x.x.x.x:52323/dmr.xml\" volume -- -5\n $ songpal group --url \"http://x.x.x.x:52323/dmr.xml\" volume 5\n\nMuting\n\n.. code-block::\n\n $ songpal group --url [pnpurl] mute [true|false]\n\n $ songpal group --url \"http://x.x.x.x:52323/dmr.xml\" mute true\n $ songpal group --url \"http://x.x.x.x:52323/dmr.xml\" mute false\n\n\n\nExecuting custom commands\n-------------------------\n\nFor experimenting it can be useful to execute arbitrary commands against the endpoint.\nYou can access the available methods by calling ``songpal list-all``.\n\n``command`` can be used for that as follows:\n\n.. code-block::\n\n $ songpal command system getSystemInformation\n\n\nNotification support\n--------------------\n\nThe protocol supports subscribing to notifications on subsystem basis.\nExecuting `songpal notifications` without any parameters will list\navailable notifications.\n\nEvery notification can be listened to separately, or alternatively\nall notifications from a single subsystem can be subscribed to.\n\n.. code-block::\n\n $ songpal notifications --listen-all avContent\n\nContributing\n------------\n\nReporting bugs or supported devices\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nWhen reporting bugs or informing about supported device not listed above,\nplease consider attaching the output of ``songpal dump-devinfo`` with your report.\n\n\nAPI information\n~~~~~~~~~~~~~~~\n\n`Audio Control API `_ describes\nthe API this project (currently partially) implements.\n\nThe `Camera Remote API `_\nis also similar to this, and may also be useful for developers.\n\n\nHome Assistant support\n----------------------\n\nHome Assistant supports devices using this library directly since 0.65: https://home-assistant.io/components/media_player.songpal/\n\n\n.. |PyPI version| image:: https://badge.fury.io/py/python-songpal.svg\n :target: https://badge.fury.io/py/python-songpal\n\n.. |Black| image:: https://img.shields.io/badge/code%20style-black-000000.svg\n :target: https://github.com/psf/black\n\n", "description_content_type": "text/x-rst", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/rytilahti/python-songpal", "keywords": "", "license": "GPL-3.0", "maintainer": "", "maintainer_email": "", "name": "python-songpal", "package_url": "https://pypi.org/project/python-songpal/", "platform": "", "project_url": "https://pypi.org/project/python-songpal/", "project_urls": { "Homepage": "https://github.com/rytilahti/python-songpal", "Repository": "https://github.com/rytilahti/python-songpal" }, "release_url": "https://pypi.org/project/python-songpal/0.14.1/", "requires_dist": [ "aiohttp", "async_upnp_client", "attrs", "click (>=8)", "importlib-metadata" ], "requires_python": ">=3.7,<4.0", "summary": "Python library for interfacing with Sony's Songpal devices", "version": "0.14.1", "yanked": false, "yanked_reason": null }, "last_serial": 13045468, "releases": { "0.0.1": [ { "comment_text": "", "digests": { "md5": "c5c5e3efdd555bb27c17154e81b6e7b3", "sha256": "84bc77572e0928e3098c7115c6020f4d8ca5312604cc19f46db531913566e595" }, "downloads": -1, "filename": "python_songpal-0.0.1-py3-none-any.whl", "has_sig": false, "md5_digest": "c5c5e3efdd555bb27c17154e81b6e7b3", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 14710, "upload_time": "2017-12-10T18:01:53", "upload_time_iso_8601": "2017-12-10T18:01:53.835677Z", "url": "https://files.pythonhosted.org/packages/ab/cf/973bfd88b88f2b872da4203724784fbddf99990743c51e621b1fb1b3ada8/python_songpal-0.0.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f174933c47404717751bd73e5d0a18f3", "sha256": "791ac43f3e9e2fe624c88ef8094509c94675361c87a6c54c651c1d99a35c7579" }, "downloads": -1, "filename": "python-songpal-0.0.1.tar.gz", "has_sig": false, "md5_digest": "f174933c47404717751bd73e5d0a18f3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13700, "upload_time": "2017-12-10T18:01:52", "upload_time_iso_8601": "2017-12-10T18:01:52.164537Z", "url": "https://files.pythonhosted.org/packages/d5/56/83b94072b58f3b39e93b60dd1e9608177e9f2366477523eed3ac9390c24f/python-songpal-0.0.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.0.2": [ { "comment_text": "", "digests": { "md5": "5778008e55040267de5a41b38b24d1cb", "sha256": "c4e0baa205a3b54cd31255e41f4513131eccabd6e3f62481c2700a94612a5f92" }, "downloads": -1, "filename": "python_songpal-0.0.2-py3-none-any.whl", "has_sig": false, "md5_digest": "5778008e55040267de5a41b38b24d1cb", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 15190, "upload_time": "2017-12-17T14:18:12", "upload_time_iso_8601": "2017-12-17T14:18:12.171260Z", "url": "https://files.pythonhosted.org/packages/bd/bc/53871f1dd2927d751600b98cc1891b67356d4eb5e5f16fde873d2751b1ea/python_songpal-0.0.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "db5ec8178e7949666b42eb27f3e59e2e", "sha256": "b30ab4c9b7bc80892fa7a8b859bdc373cf07a72b529a2eeb06d492ddd3fe1d94" }, "downloads": -1, "filename": "python-songpal-0.0.2.tar.gz", "has_sig": false, "md5_digest": "db5ec8178e7949666b42eb27f3e59e2e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14156, "upload_time": "2017-12-17T14:18:10", "upload_time_iso_8601": "2017-12-17T14:18:10.711400Z", "url": "https://files.pythonhosted.org/packages/47/9b/a80b66cf479171cf1e5d98986f67e8ecba873ba12b4a35628cf6d8068dab/python-songpal-0.0.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.0.3": [ { "comment_text": "", "digests": { "md5": "98e5abf25456bade7d1a9996576d9d6a", "sha256": "0621cb0cc4a4d3500a3b7a1f352016e04937b1fd7d2af1f6181254f1533ef5b2" }, "downloads": -1, "filename": "python_songpal-0.0.3-py3-none-any.whl", "has_sig": false, "md5_digest": "98e5abf25456bade7d1a9996576d9d6a", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 15509, "upload_time": "2018-01-10T19:30:59", "upload_time_iso_8601": "2018-01-10T19:30:59.439011Z", "url": "https://files.pythonhosted.org/packages/1d/53/f8999dbfbdf6f09941d4344d893bde2dc51cb7d571b16c11db57d4111c1c/python_songpal-0.0.3-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1e89bbe72c870fe1f2b4d0d14083c32c", "sha256": "ff55eef6752d0d56cac318e470b507efcf6be55582009d6a4fae4930ed0cb4e9" }, "downloads": -1, "filename": "python-songpal-0.0.3.tar.gz", "has_sig": false, "md5_digest": "1e89bbe72c870fe1f2b4d0d14083c32c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14482, "upload_time": "2018-01-10T19:30:57", "upload_time_iso_8601": "2018-01-10T19:30:57.676285Z", "url": "https://files.pythonhosted.org/packages/57/1a/12def0ee1c892f567e2ecb861529f757d41089ba631d55c04a85e8408c7c/python-songpal-0.0.3.tar.gz", "yanked": false, "yanked_reason": null } ], "0.0.4": [ { "comment_text": "", "digests": { "md5": "321d9c3cab74db812202921246fa9784", "sha256": "a0804412f76df6ca3467fb13b982fc0002ca52a625df9bd85d508466034b30ce" }, "downloads": -1, "filename": "python_songpal-0.0.4-py3-none-any.whl", "has_sig": false, "md5_digest": "321d9c3cab74db812202921246fa9784", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 16782, "upload_time": "2018-02-03T01:23:21", "upload_time_iso_8601": "2018-02-03T01:23:21.400315Z", "url": "https://files.pythonhosted.org/packages/3a/2d/68f62854fde401908301f82d0d8ea8abdd09d6ef8be45304afac9aedc8de/python_songpal-0.0.4-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3360f33d9e5811da64ed35348d3c516b", "sha256": "fc3b022249523c7f0c772c68ec8c76bf416cc1318e45bd6cd133acb0cb1131ce" }, "downloads": -1, "filename": "python-songpal-0.0.4.tar.gz", "has_sig": false, "md5_digest": "3360f33d9e5811da64ed35348d3c516b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15767, "upload_time": "2018-02-03T01:23:19", "upload_time_iso_8601": "2018-02-03T01:23:19.362177Z", "url": "https://files.pythonhosted.org/packages/3a/2b/05a82bd98ef34e5585fe44f88f6ef1b986c13b9af0e2e834231e9da16e72/python-songpal-0.0.4.tar.gz", "yanked": false, "yanked_reason": null } ], "0.0.4.1": [ { "comment_text": "", "digests": { "md5": "fb88e6bb93fcdfe18aee898ffceb7dc4", "sha256": "7496df8ac8a55486201c61590df6845f7272bc6a5ce46d25e863b4ff53cf039f" }, "downloads": -1, "filename": "python_songpal-0.0.4.1-py3-none-any.whl", "has_sig": false, "md5_digest": "fb88e6bb93fcdfe18aee898ffceb7dc4", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 22461, "upload_time": "2018-02-03T01:25:46", "upload_time_iso_8601": "2018-02-03T01:25:46.446056Z", "url": "https://files.pythonhosted.org/packages/d2/c2/56767927371e3e15cab35a815ef3372bb9fb6454eee88e0b031c08d1c006/python_songpal-0.0.4.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3d39e45a942585e25a73bbbf86fa7ada", "sha256": "21d7b12e53d997baa344b2bc0a4eba02ba79cca22352a5e6f8c412f8a901fc37" }, "downloads": -1, "filename": "python-songpal-0.0.4.1.tar.gz", "has_sig": false, "md5_digest": "3d39e45a942585e25a73bbbf86fa7ada", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19355, "upload_time": "2018-02-03T01:25:43", "upload_time_iso_8601": "2018-02-03T01:25:43.872720Z", "url": "https://files.pythonhosted.org/packages/e2/3c/976ae98183fef536c7d441b732c1f5187d1ac9640ff4aad5386897e4e818/python-songpal-0.0.4.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.0.5": [ { "comment_text": "", "digests": { "md5": "cd9f3c6eb9804fcb1480436bf2e99786", "sha256": "2409ab2111697bc03beb53daa85a810222e1c6f9e72cd43bb7b8a6b2fc6d3367" }, "downloads": -1, "filename": "python_songpal-0.0.5-py3-none-any.whl", "has_sig": false, "md5_digest": "cd9f3c6eb9804fcb1480436bf2e99786", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 22680, "upload_time": "2018-02-03T01:39:00", "upload_time_iso_8601": "2018-02-03T01:39:00.380576Z", "url": "https://files.pythonhosted.org/packages/20/40/bdbaf5416977f7a1a99d537157eb01e13ba18011fea33b13ad2e974069d5/python_songpal-0.0.5-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ca4654b7093b00a0a469cad47d9dee76", "sha256": "cc3ca55e37ad7f10b56b7ac6f877202a0670add21213d7763861d1d86422fa5f" }, "downloads": -1, "filename": "python-songpal-0.0.5.tar.gz", "has_sig": false, "md5_digest": "ca4654b7093b00a0a469cad47d9dee76", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19452, "upload_time": "2018-02-03T01:38:58", "upload_time_iso_8601": "2018-02-03T01:38:58.643711Z", "url": "https://files.pythonhosted.org/packages/c3/52/6b214dc7257aa38bf19c17465d0546d6b8daa7408bf13da816977572a5d8/python-songpal-0.0.5.tar.gz", "yanked": false, "yanked_reason": null } ], "0.0.6": [ { "comment_text": "", "digests": { "md5": "c7cd36edc1a2b1ed27235ff2667be069", "sha256": "9d06796fdb4a51bf8d433e6aa5ddbff5f53a1157cd3655ef244a726a8ebcbc89" }, "downloads": -1, "filename": "python_songpal-0.0.6-py3-none-any.whl", "has_sig": false, "md5_digest": "c7cd36edc1a2b1ed27235ff2667be069", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 22773, "upload_time": "2018-02-04T15:13:48", "upload_time_iso_8601": "2018-02-04T15:13:48.086552Z", "url": "https://files.pythonhosted.org/packages/fa/1e/a24333f163721924421ae99d3df6925bb8fdd36637999d398a493ac23ddc/python_songpal-0.0.6-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "55850d6d926c2f20be480309b10826bf", "sha256": "0ff823fd70e474a0388f542384f80cadc7a2e59e8b69dd0e497367bc5353403d" }, "downloads": -1, "filename": "python-songpal-0.0.6.tar.gz", "has_sig": false, "md5_digest": "55850d6d926c2f20be480309b10826bf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19507, "upload_time": "2018-02-04T15:13:46", "upload_time_iso_8601": "2018-02-04T15:13:46.640322Z", "url": "https://files.pythonhosted.org/packages/fa/71/de22e51c1f64d0c99900451220402d19693e485fa43ea00ce634a99a48b5/python-songpal-0.0.6.tar.gz", "yanked": false, "yanked_reason": null } ], "0.0.7": [ { "comment_text": "", "digests": { "md5": "d7fe41fa58c0588b0ba7478479093b72", "sha256": "d7c47ea7ef6afe8e1f5c51bae0c991e8ddc1c4560b5b1f7db064329cd59053e9" }, "downloads": -1, "filename": "python_songpal-0.0.7-py3-none-any.whl", "has_sig": false, "md5_digest": "d7fe41fa58c0588b0ba7478479093b72", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 24782, "upload_time": "2018-03-24T23:24:13", "upload_time_iso_8601": "2018-03-24T23:24:13.600243Z", "url": "https://files.pythonhosted.org/packages/4c/31/3ad2db03c52edcb30e4e78417bf24797881ded700948f25c8bfb3048e47a/python_songpal-0.0.7-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "41d4a7752e2a002af0e92e2a3d4845de", "sha256": "99be253b73c0c8c392505d0f12dd3d9362da460785ec920516bf26718a5e87e8" }, "downloads": -1, "filename": "python-songpal-0.0.7.tar.gz", "has_sig": false, "md5_digest": "41d4a7752e2a002af0e92e2a3d4845de", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21289, "upload_time": "2018-03-24T23:24:12", "upload_time_iso_8601": "2018-03-24T23:24:12.096953Z", "url": "https://files.pythonhosted.org/packages/87/50/cf3de00f3c4be72c13b0c9088362d9dab078654673d9b749c04ea2eed72d/python-songpal-0.0.7.tar.gz", "yanked": false, "yanked_reason": null } ], "0.0.8": [ { "comment_text": "", "digests": { "md5": "63cbd387486aaeab7cfd7a863c92f1f9", "sha256": "c8874d695fd36839a466da80cc3b2769d0b89e9ab59693250463804a4de62eb5" }, "downloads": -1, "filename": "python_songpal-0.0.8-py3-none-any.whl", "has_sig": false, "md5_digest": "63cbd387486aaeab7cfd7a863c92f1f9", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 25053, "upload_time": "2018-08-30T14:37:17", "upload_time_iso_8601": "2018-08-30T14:37:17.855640Z", "url": "https://files.pythonhosted.org/packages/a6/16/6c78b14282380bc481cab8db32f3ce19314102d80a4013daba4e95974c98/python_songpal-0.0.8-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "da6e7c7d18390398699b3235b89a834b", "sha256": "bf93e9e774cffa25127402ba861141272b7c0e8c0e31f5c5b1fc0c2d3bd7f516" }, "downloads": -1, "filename": "python-songpal-0.0.8.tar.gz", "has_sig": false, "md5_digest": "da6e7c7d18390398699b3235b89a834b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21498, "upload_time": "2018-08-30T14:37:16", "upload_time_iso_8601": "2018-08-30T14:37:16.090508Z", "url": "https://files.pythonhosted.org/packages/f2/77/b2f653d84fabbc64f2a0cc665b1a6ec27c7b18c4147815c3951d49cb0c90/python-songpal-0.0.8.tar.gz", "yanked": false, "yanked_reason": null } ], "0.0.9": [ { "comment_text": "", "digests": { "md5": "1661df980bf849ea42f114feeb189013", "sha256": "4f4fea6e5d642839f20aaff0792182fcb7b5cc0d799dd3beec57488ce6058c52" }, "downloads": -1, "filename": "python_songpal-0.0.9-py3-none-any.whl", "has_sig": false, "md5_digest": "1661df980bf849ea42f114feeb189013", "packagetype": "bdist_wheel", "python_version": "3.7", "requires_python": null, "size": 25551, "upload_time": "2018-12-08T19:51:26", "upload_time_iso_8601": "2018-12-08T19:51:26.503087Z", "url": "https://files.pythonhosted.org/packages/3f/91/9a1bfea4fe053a9413461be696a7ca4a1e1da3a236513d633cfce5ade3a8/python_songpal-0.0.9-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "839a036276b15721eea135bb7666484e", "sha256": "8dcebcaca45b6775f207b3c487495e174a82a50b60c8aaaa91d6198a28872e14" }, "downloads": -1, "filename": "python-songpal-0.0.9.tar.gz", "has_sig": false, "md5_digest": "839a036276b15721eea135bb7666484e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21994, "upload_time": "2018-12-08T19:51:24", "upload_time_iso_8601": "2018-12-08T19:51:24.278127Z", "url": "https://files.pythonhosted.org/packages/5d/f1/261c13486d70a4e4edd034ef4934e3d241405d86e218f93c7ec865766d05/python-songpal-0.0.9.tar.gz", "yanked": false, "yanked_reason": null } ], "0.0.9.1": [ { "comment_text": "", "digests": { "md5": "5f5c61ff1a5e878c45af9e6d3c2e46ca", "sha256": "45b2862095cd193875d92e9385e6d7d43affede9ea9653edfc9af4192f03a1c5" }, "downloads": -1, "filename": "python_songpal-0.0.9.1-py3-none-any.whl", "has_sig": false, "md5_digest": "5f5c61ff1a5e878c45af9e6d3c2e46ca", "packagetype": "bdist_wheel", "python_version": "3.7", "requires_python": null, "size": 25603, "upload_time": "2018-12-09T20:25:50", "upload_time_iso_8601": "2018-12-09T20:25:50.443986Z", "url": "https://files.pythonhosted.org/packages/e2/53/384ee25402bae899908059a7d10f2c960e5569a07fe96b2c5afa4cef291e/python_songpal-0.0.9.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "03c78f13e675c61eca63f00ff6d0e48b", "sha256": "cd8b5762678a0e03f6c760f1494f531ea835be1995c23b8a4ab71b1d9387269c" }, "downloads": -1, "filename": "python-songpal-0.0.9.1.tar.gz", "has_sig": false, "md5_digest": "03c78f13e675c61eca63f00ff6d0e48b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22030, "upload_time": "2018-12-09T20:25:48", "upload_time_iso_8601": "2018-12-09T20:25:48.595900Z", "url": "https://files.pythonhosted.org/packages/bd/eb/7e632cb70fd762f943dab4bd9b4e8bdbd97e9cee83a3acc26c838028f016/python-songpal-0.0.9.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.10": [ { "comment_text": "", "digests": { "md5": "5b8b3f43dff3f2a8b1c9dea6029a022f", "sha256": "59c504cdb22fc8547ca4991d24ea17a79bc86896ed70b039a86fef2f0384ad76" }, "downloads": -1, "filename": "python_songpal-0.10-py3-none-any.whl", "has_sig": false, "md5_digest": "5b8b3f43dff3f2a8b1c9dea6029a022f", "packagetype": "bdist_wheel", "python_version": "3.7", "requires_python": null, "size": 29449, "upload_time": "2019-02-17T17:01:51", "upload_time_iso_8601": "2019-02-17T17:01:51.767988Z", "url": "https://files.pythonhosted.org/packages/33/e1/5a043bbc8fc75f8b84319742f55e134418f53c6157c8bd46e0dea41a830d/python_songpal-0.10-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "dbf7274384999cc640fc676887f08885", "sha256": "956c6c3e0b0377882415484e81a09691fc65cfe7e1f015aa7aaee82f5ecbc885" }, "downloads": -1, "filename": "python-songpal-0.10.tar.gz", "has_sig": false, "md5_digest": "dbf7274384999cc640fc676887f08885", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25726, "upload_time": "2019-02-17T17:01:49", "upload_time_iso_8601": "2019-02-17T17:01:49.446619Z", "url": "https://files.pythonhosted.org/packages/a1/3a/9cf26b63903130c471266872b51bc1da705e50343301ee884ccdcdbbd4af/python-songpal-0.10.tar.gz", "yanked": false, "yanked_reason": null } ], "0.11": [ { "comment_text": "", "digests": { "md5": "da8a42b2c24204324d98ebded9187fde", "sha256": "5c17ae7c09bbe7ba52d4fa488ee9f99d56943274388c14a32841a1733eca65e4" }, "downloads": -1, "filename": "python_songpal-0.11-py3-none-any.whl", "has_sig": false, "md5_digest": "da8a42b2c24204324d98ebded9187fde", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 41766, "upload_time": "2019-10-10T13:24:54", "upload_time_iso_8601": "2019-10-10T13:24:54.090787Z", "url": "https://files.pythonhosted.org/packages/03/a6/da60e60136c07a4f12db6bcb1e51fd25f6c90818f645f25d3b2838208d96/python_songpal-0.11-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "86d51a4afff9e506290efb334d8a4523", "sha256": "e3f55e9c4e6b5e80f8913c23e6cd4911870b862cdc2ba9dc6e53b192fa8334cc" }, "downloads": -1, "filename": "python-songpal-0.11.tar.gz", "has_sig": false, "md5_digest": "86d51a4afff9e506290efb334d8a4523", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 25682, "upload_time": "2019-10-10T13:24:57", "upload_time_iso_8601": "2019-10-10T13:24:57.045961Z", "url": "https://files.pythonhosted.org/packages/ec/54/e8c06b1d9b5e032db259ced75f6b30a42bdd49f94a0f1cea7cd294ac8b35/python-songpal-0.11.tar.gz", "yanked": false, "yanked_reason": null } ], "0.11.1": [ { "comment_text": "", "digests": { "md5": "9bc9065190b328dca35f7ed2b62ee997", "sha256": "b0aebb8e5d8e8e869b87313a2f56abee0aba73d3f59213fdc4a6dad8d05f2cc0" }, "downloads": -1, "filename": "python_songpal-0.11.1-py3-none-any.whl", "has_sig": false, "md5_digest": "9bc9065190b328dca35f7ed2b62ee997", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 41793, "upload_time": "2019-10-10T18:50:27", "upload_time_iso_8601": "2019-10-10T18:50:27.526801Z", "url": "https://files.pythonhosted.org/packages/87/ec/79e15d8d16c4ba1b226d5d8562fd97e6116a00c803e0378fc22945ce982e/python_songpal-0.11.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "66d4b27185aa58b1a31f0e64774eb454", "sha256": "247fbfcaee7818d7ed2d1369dfcf5eef970bbb4cb36df4d9bbf70ad250567462" }, "downloads": -1, "filename": "python-songpal-0.11.1.tar.gz", "has_sig": false, "md5_digest": "66d4b27185aa58b1a31f0e64774eb454", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 25698, "upload_time": "2019-10-10T18:50:33", "upload_time_iso_8601": "2019-10-10T18:50:33.175952Z", "url": "https://files.pythonhosted.org/packages/a4/6a/84e8b6327817b5ce62c237865efad1b16a46aa9cb2c12d46a71a89e96321/python-songpal-0.11.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.11.2": [ { "comment_text": "", "digests": { "md5": "93d7079a3c3118759b70585cb302be23", "sha256": "761cfedc0003e747ea02bf01e3ef15f275ed20fa694014bfa2c42458e92651d1" }, "downloads": -1, "filename": "python_songpal-0.11.2-py3-none-any.whl", "has_sig": false, "md5_digest": "93d7079a3c3118759b70585cb302be23", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 41814, "upload_time": "2019-10-21T13:13:35", "upload_time_iso_8601": "2019-10-21T13:13:35.776433Z", "url": "https://files.pythonhosted.org/packages/af/ca/4201ed20bd5b19acc43d9e1d81c3bcfc6410fef1d8e295470c6f3f50fa3c/python_songpal-0.11.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f4166aa6d95646e7fdf130f367299d1b", "sha256": "1c9156ebefeb9072eba4f0cd769a81e6b1f4a1ab08d91dc647018ac78563c228" }, "downloads": -1, "filename": "python-songpal-0.11.2.tar.gz", "has_sig": false, "md5_digest": "f4166aa6d95646e7fdf130f367299d1b", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 25745, "upload_time": "2019-10-21T13:13:43", "upload_time_iso_8601": "2019-10-21T13:13:43.046783Z", "url": "https://files.pythonhosted.org/packages/a7/c8/99ba09795872562e7d7585ae08726f7a34d240334f77a07443e02caf6ae1/python-songpal-0.11.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.12": [ { "comment_text": "", "digests": { "md5": "4ab5472f9ef2b8ef6df3ed5a3ef6d078", "sha256": "d2efa1ec361124a059892e2da72860b90a79d8cb57a4e21981b3c5097de54fc3" }, "downloads": -1, "filename": "python_songpal-0.12-py3-none-any.whl", "has_sig": false, "md5_digest": "4ab5472f9ef2b8ef6df3ed5a3ef6d078", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6,<4.0", "size": 41896, "upload_time": "2020-04-26T14:17:30", "upload_time_iso_8601": "2020-04-26T14:17:30.979955Z", "url": "https://files.pythonhosted.org/packages/eb/02/8149e3ef3a20aafa940f084930fcc562670cda4ee057f2b40189a51347dd/python_songpal-0.12-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8567d499c3529fdc7bbf16d1a21333db", "sha256": "8d7afe13d97fabab40188ebd0a83816517e9066a60f0fd79e38016c58d93b3d0" }, "downloads": -1, "filename": "python-songpal-0.12.tar.gz", "has_sig": false, "md5_digest": "8567d499c3529fdc7bbf16d1a21333db", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 41237, "upload_time": "2020-04-26T14:17:29", "upload_time_iso_8601": "2020-04-26T14:17:29.795757Z", "url": "https://files.pythonhosted.org/packages/0c/fb/214cc1948ee8caa273b0ed47bd7ae095cab197955002cb547cf6cc1f3d7d/python-songpal-0.12.tar.gz", "yanked": false, "yanked_reason": null } ], "0.13": [ { "comment_text": "", "digests": { "md5": "6b104e718b6ed6d373eaf45b26af18e3", "sha256": "24fdd25fea4ae15c3c3e8cdbc486c48f0336fae45cb351f21f4df257110368da" }, "downloads": -1, "filename": "python_songpal-0.13-py3-none-any.whl", "has_sig": false, "md5_digest": "6b104e718b6ed6d373eaf45b26af18e3", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6,<4.0", "size": 42206, "upload_time": "2020-09-01T15:50:46", "upload_time_iso_8601": "2020-09-01T15:50:46.604487Z", "url": "https://files.pythonhosted.org/packages/1e/86/900131955867ad567000c6dd814cffbe9d1bfd5746cb24966d20f92352f0/python_songpal-0.13-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "30ec833f35c038e45f47d13c1fe5261d", "sha256": "7a4619c38442705b7b95c9d9fede9495c7aeefc777c7e90bfbd76690c0f42499" }, "downloads": -1, "filename": "python-songpal-0.13.tar.gz", "has_sig": false, "md5_digest": "30ec833f35c038e45f47d13c1fe5261d", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 42037, "upload_time": "2020-09-01T15:50:44", "upload_time_iso_8601": "2020-09-01T15:50:44.910070Z", "url": "https://files.pythonhosted.org/packages/3e/c2/7de6c820199d3ef83d16c9641d20a7445d24aed7dd4ce5116a8a41506d3b/python-songpal-0.13.tar.gz", "yanked": false, "yanked_reason": null } ], "0.14": [ { "comment_text": "", "digests": { "md5": "afdff9535bcc1eb449044a14ff81d9e1", "sha256": "b32cd66ea338467ad02e6bcacf0599429d54ebc92f9dd39fdb2cf86675459c8a" }, "downloads": -1, "filename": "python_songpal-0.14-py3-none-any.whl", "has_sig": false, "md5_digest": "afdff9535bcc1eb449044a14ff81d9e1", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6,<4.0", "size": 42315, "upload_time": "2022-02-17T22:27:26", "upload_time_iso_8601": "2022-02-17T22:27:26.798775Z", "url": "https://files.pythonhosted.org/packages/21/24/36a7bba60a73a4feb126b396d8c77ebf6516eb1b56cedc072ae9bd18cdab/python_songpal-0.14-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "91eb7f7e91a64051decf30c720985a02", "sha256": "a02ed0455a27ec3b25796b24e60dc39a04c67232a36ef9806987024758f3f8cb" }, "downloads": -1, "filename": "python-songpal-0.14.tar.gz", "has_sig": false, "md5_digest": "91eb7f7e91a64051decf30c720985a02", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 42107, "upload_time": "2022-02-17T22:27:25", "upload_time_iso_8601": "2022-02-17T22:27:25.321151Z", "url": "https://files.pythonhosted.org/packages/43/5e/0bc08170815e754d0f729e07fb7ee36a7de6ea67918db5efa8e76cdf1ab3/python-songpal-0.14.tar.gz", "yanked": false, "yanked_reason": null } ], "0.14.1": [ { "comment_text": "", "digests": { "md5": "a413120e498a1e7995e2d440be1a2ebb", "sha256": "811c637d8800e1b5dd135747d11a028fc67b578b9979bb673fe8b5df907ae7b3" }, "downloads": -1, "filename": "python_songpal-0.14.1-py3-none-any.whl", "has_sig": false, "md5_digest": "a413120e498a1e7995e2d440be1a2ebb", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.7,<4.0", "size": 42489, "upload_time": "2022-03-01T13:37:25", "upload_time_iso_8601": "2022-03-01T13:37:25.148848Z", "url": "https://files.pythonhosted.org/packages/7c/8a/86520c079f0f63c30c6ec85e6437b5677661024ba061d22dc0113b21dd4c/python_songpal-0.14.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "50ee45dd58144af7b2be77e7d0eb8cca", "sha256": "a290b281eaa52ff5073020ce55e0c0a6087baafe3a7493887da710d16f1c2f5f" }, "downloads": -1, "filename": "python-songpal-0.14.1.tar.gz", "has_sig": false, "md5_digest": "50ee45dd58144af7b2be77e7d0eb8cca", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7,<4.0", "size": 42100, "upload_time": "2022-03-01T13:37:26", "upload_time_iso_8601": "2022-03-01T13:37:26.804565Z", "url": "https://files.pythonhosted.org/packages/3a/1f/967242baea911ab72cb94b064cc5ef99d4432d35d72f25fa4fb439dbb327/python-songpal-0.14.1.tar.gz", "yanked": false, "yanked_reason": null } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "a413120e498a1e7995e2d440be1a2ebb", "sha256": "811c637d8800e1b5dd135747d11a028fc67b578b9979bb673fe8b5df907ae7b3" }, "downloads": -1, "filename": "python_songpal-0.14.1-py3-none-any.whl", "has_sig": false, "md5_digest": "a413120e498a1e7995e2d440be1a2ebb", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.7,<4.0", "size": 42489, "upload_time": "2022-03-01T13:37:25", "upload_time_iso_8601": "2022-03-01T13:37:25.148848Z", "url": "https://files.pythonhosted.org/packages/7c/8a/86520c079f0f63c30c6ec85e6437b5677661024ba061d22dc0113b21dd4c/python_songpal-0.14.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "50ee45dd58144af7b2be77e7d0eb8cca", "sha256": "a290b281eaa52ff5073020ce55e0c0a6087baafe3a7493887da710d16f1c2f5f" }, "downloads": -1, "filename": "python-songpal-0.14.1.tar.gz", "has_sig": false, "md5_digest": "50ee45dd58144af7b2be77e7d0eb8cca", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7,<4.0", "size": 42100, "upload_time": "2022-03-01T13:37:26", "upload_time_iso_8601": "2022-03-01T13:37:26.804565Z", "url": "https://files.pythonhosted.org/packages/3a/1f/967242baea911ab72cb94b064cc5ef99d4432d35d72f25fa4fb439dbb327/python-songpal-0.14.1.tar.gz", "yanked": false, "yanked_reason": null } ], "vulnerabilities": [] }