{ "info": { "author": "GetWellNetwork", "author_email": "willdeberry@gmail.com", "bugtrack_url": null, "classifiers": [ "Environment :: Console", "Intended Audience :: Developers", "Intended Audience :: End Users/Desktop", "Intended Audience :: System Administrators", "License :: OSI Approved :: BSD License", "Operating System :: POSIX", "Programming Language :: Python", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6" ], "description": "bjarkan\n=======\n\n|Snap Status| |PyPI version| |PyPI| |License|\n\nA bluez 5 compatible command line utility\n\n- `License <#license>`__\n- `Installation <#installation>`__\n\n - `Requirements <#requirements>`__\n - `Pip <#pip>`__\n - `Manual <#manual>`__\n\n- `Usage <#usage>`__\n\n - `Pairing/Connecting <#pairingconnecting>`__\n - `Unpair <#unpair>`__\n - `Connect <#connect>`__\n - `Disconnect <#disconnect>`__\n - `Paired-devices <#paired-devices>`__\n - `Connected-devices <#connected-devices>`__\n\nLicense\n-------\n\nCopyright (c) 2016, GetWellNetwork, Inc. All rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are\nmet:\n\n1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n3. Neither the name of the copyright holder nor the names of its\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS\nIS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED\nTO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A\nPARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\nHOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED\nTO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR\nPROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\nLIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\nNEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nInstallation\n------------\n\nSnap Package\n~~~~~~~~~~~~\n\n::\n\n sudo snap install bjarkan\n\nPip\n~~~\n\n::\n\n sudo apt-get install -y python3-gi python3-dbus python3 python3-pip\n sudo pip3 install bjarkan\n\nManual Python\n~~~~~~~~~~~~~\n\n::\n\n sudo apt-get install -y python3-gi python3-dbus python3 python3-pip\n git clone https://github.com/willdeberry/bjarkan.git\n cd bjarkan\n python3 setup.py install\n\nManual Debian Package\n~~~~~~~~~~~~~~~~~~~~~\n\n::\n\n sudo apt-get install -y python3-gi python3-dbus python3 python3-pytest git-buildpackage gir1.2-gtk-3.0\n git clone https://github.com/willdeberry/bjarkan.git\n cd bjarkan\n make deb\n sudo dpkg -i ../$( awk '{ print $1 }' debian/files )\n\nUsage\n-----\n\n::\n\n usage: bjarkan [-h] [-j] COMMAND ...\n\n Connect to specifed BT device\n\n positional arguments:\n COMMAND\n pair Pair a device (pairing will also connect)\n unpair Unpair a device\n connect Connect a new device\n disconnect Disconnect a device\n paired-devices Show all paired devices\n connected-devices Show all connected devices\n scan Show all currently known devices\n\n optional arguments:\n -h, --help show this help message and exit\n -j, --json Change output format to json instead of plain text\n\nPairing/Connecting\n~~~~~~~~~~~~~~~~~~\n\n::\n\n usage: bjarkan pair [-h] -d DEVICE\n\n optional arguments:\n -h, --help show this help message and exit\n -d DEVICE, --device DEVICE Specify the device to pair\n\n**Example**\n\n.. code:: bash\n\n ~$ bjarkan pair -d 00:11:22:33:44:55\n\nUnpair\n~~~~~~\n\n::\n\n usage: bjarkan unpair [-h] -d DEVICE\n\n optional arguments:\n -h, --help show this help message and exit\n -d DEVICE, --device DEVICE Specify the device to unpair\n\n**Example**\n\n.. code:: bash\n\n ~$ bjarkan unpair -d 00:11:22:33:44:55\n\nConnect\n~~~~~~~\n\n::\n\n usage: bjarkan connect [-h] -d DEVICE\n\n optional arguments:\n -h, --help show this help message and exit\n -d DEVICE, --device DEVICE Specify the device to connect to\n\n**Example**\n\n.. code:: bash\n\n ~$ bjarkan connect -d 00:11:22:33:44:55\n\nDisconnect\n~~~~~~~~~~\n\n::\n\n usage: bjarkan disconnect [-h] -d DEVICE\n\n optional arguments:\n -h, --help show this help message and exit\n -d DEVICE, --device DEVICE Specify the device to disconnect from\n\n**Example**\n\n.. code:: bash\n\n ~$ bjarkan disconnect -d 00:11:22:33:44:55\n\nPaired Devices\n~~~~~~~~~~~~~~\n\n::\n\n usage: bjarkan paired-devices [-h]\n\n optional arguments:\n -h, --help show this help message and exit\n\n**Example**\n\n.. code:: bash\n\n ~$ bjarkan paired-devices\n\nConnected Devices\n~~~~~~~~~~~~~~~~~\n\n::\n\n usage: bjarkan connected-devices [-h]\n\n optional arguments:\n -h, --help show this help message and exit\n\n**Example**\n\n.. code:: bash\n\n ~$ bjarkan connected-devices\n\nScan\n~~~~\n\n::\n\n usage: bjarkan scan [-h]\n\n optional arguments:\n -h, --help show this help message and exit\n\n**Example**\n\n.. code:: bash\n\n ~$ bjarkan scan\n\n.. |Snap Status| image:: https://build.snapcraft.io/badge/willdeberry/bjarkan.svg\n :target: https://build.snapcraft.io/user/willdeberry/bjarkan\n.. |PyPI version| image:: https://badge.fury.io/py/bjarkan.svg\n :target: https://badge.fury.io/py/bjarkan\n.. |PyPI| image:: https://img.shields.io/pypi/pyversions/bjarkan.svg\n :target: https://pypi.python.org/pypi/bjarkan\n.. |License| image:: http://img.shields.io/:license-bsd-blue.svg\n :target: https://github.com/willdeberry/bjarkan/blob/master/LICENSE", "description_content_type": null, "docs_url": null, "download_url": "https://github.com/willdeberry/bjarkan", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/willdeberry/bjarkan", "keywords": "bluez bluetooth cli", "license": "Copyright 2017 GetWellNetwork, Inc., BSD copyright and disclaimer apply", "maintainer": "", "maintainer_email": "", "name": "bjarkan", "package_url": "https://pypi.org/project/bjarkan/", "platform": "", "project_url": "https://pypi.org/project/bjarkan/", "project_urls": { "Download": "https://github.com/willdeberry/bjarkan", "Homepage": "https://github.com/willdeberry/bjarkan" }, "release_url": "https://pypi.org/project/bjarkan/1.2.0/", "requires_dist": null, "requires_python": "", "summary": "Bluetooth command line utility", "version": "1.2.0" }, "last_serial": 3065976, "releases": { "1.0": [], "1.0.1": [ { "comment_text": "", "digests": { "md5": "fe77310b94dd531fe1003100f5095287", "sha256": "ff17cac31f4c256f7474097807ce12cde0ed1284bd0c649b66a51b3da7334693" }, "downloads": -1, "filename": "bjarkan-1.0.1.tar.gz", "has_sig": false, "md5_digest": "fe77310b94dd531fe1003100f5095287", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6734, "upload_time": "2016-03-06T20:40:50", "url": "https://files.pythonhosted.org/packages/19/4d/d10500c23087d8a403bb09e0e6c71b4f55fdd308d3cae22a0ce88808be58/bjarkan-1.0.1.tar.gz" } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "5003ef13ce147e7be3c6428486db9cdb", "sha256": "2cc7d1adb0bd2cfbb45b68bf730f8c2af924aeab3d71dfcc26c703d563d55d92" }, "downloads": -1, "filename": "bjarkan-1.1.0.tar.gz", "has_sig": false, "md5_digest": "5003ef13ce147e7be3c6428486db9cdb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7122, "upload_time": "2016-04-09T02:53:48", "url": "https://files.pythonhosted.org/packages/b5/d8/594cd2d949e5cd389c842d246d48b7ddf0bcaeb62607465a538ee05cc8d5/bjarkan-1.1.0.tar.gz" } ], "1.1.1": [], "1.1.2": [ { "comment_text": "", "digests": { "md5": "4261372bb4ee281c8801a909bc29bdf7", "sha256": "f9451510ff0bef10d2b0dc2e2b7c9d8335677caeca6e49f768c870fa2aa08d00" }, "downloads": -1, "filename": "bjarkan-1.1.2.tar.gz", "has_sig": false, "md5_digest": "4261372bb4ee281c8801a909bc29bdf7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7281, "upload_time": "2016-04-19T03:06:53", "url": "https://files.pythonhosted.org/packages/1e/d7/22a4ac13e16e8758acb9fb64e7c281b775862b3fd6e64aff4be4b3579cbe/bjarkan-1.1.2.tar.gz" } ], "1.1.3": [ { "comment_text": "", "digests": { "md5": "44c86f972a1ab760da14c161fd490a38", "sha256": "bcb5ee1314b7e71eebedf662d1fdbd7c4faff58eaeaedc33467f07ef2167fd41" }, "downloads": -1, "filename": "bjarkan-1.1.3.tar.gz", "has_sig": false, "md5_digest": "44c86f972a1ab760da14c161fd490a38", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7239, "upload_time": "2016-04-19T03:19:44", "url": "https://files.pythonhosted.org/packages/a2/1b/f7feb9d94f3b645b7b1c8c7b77e0d2923eeeef72575bfe7b721c788075d7/bjarkan-1.1.3.tar.gz" } ], "1.1.4": [ { "comment_text": "", "digests": { "md5": "e289a3b2b2fd47460e4e871abd4218e0", "sha256": "9165fbee5c7c5ec3ce49d165dde2010ee202a88534f5bae01eca65d4841c2d01" }, "downloads": -1, "filename": "bjarkan-1.1.4.tar.gz", "has_sig": false, "md5_digest": "e289a3b2b2fd47460e4e871abd4218e0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7337, "upload_time": "2016-04-19T03:36:53", "url": "https://files.pythonhosted.org/packages/76/5d/afef321880538f5a519eba9d582f9f44c6dcd177d067fe06b368e3f1bfb6/bjarkan-1.1.4.tar.gz" } ], "1.1.5": [ { "comment_text": "", "digests": { "md5": "ae78ec022eb6a396bfb9baee61b74394", "sha256": "ef100c11696b29d06b01d163cb8a7ea39f69aa95c6e73944497bc8477b125cb6" }, "downloads": -1, "filename": "bjarkan-1.1.5.tar.gz", "has_sig": false, "md5_digest": "ae78ec022eb6a396bfb9baee61b74394", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7287, "upload_time": "2016-04-20T02:05:19", "url": "https://files.pythonhosted.org/packages/eb/50/a26b6ab2d839167a0d99621e532fed1a9a1ed487ccf3e62b77dfd27523b1/bjarkan-1.1.5.tar.gz" } ], "1.1.7": [ { "comment_text": "", "digests": { "md5": "6c80577d25adf74774edd40563c5299c", "sha256": "878cfa6a9dc931335b953f30110534f5ee8086c48f1dac6e0b91c21e122af916" }, "downloads": -1, "filename": "bjarkan-1.1.7.tar.gz", "has_sig": false, "md5_digest": "6c80577d25adf74774edd40563c5299c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7297, "upload_time": "2017-07-30T21:55:48", "url": "https://files.pythonhosted.org/packages/09/50/9543418358e07b8257db4180f183c3930a338141609d1e71026b0080e580/bjarkan-1.1.7.tar.gz" } ], "1.1.9": [ { "comment_text": "", "digests": { "md5": "fe6cef6e18f288e8a4d5ef295ebd383a", "sha256": "e327542fe5d5864988886bb422ad91a0fdcabd693d4ce944ce45fb0a0425013b" }, "downloads": -1, "filename": "bjarkan-1.1.9.tar.gz", "has_sig": false, "md5_digest": "fe6cef6e18f288e8a4d5ef295ebd383a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7375, "upload_time": "2017-08-01T03:46:11", "url": "https://files.pythonhosted.org/packages/ce/fa/c2d7b43041551c5b6eb8875cefc243c248cb7f8d02ad4c3ee0572f471f47/bjarkan-1.1.9.tar.gz" } ], "1.2.0": [ { "comment_text": "", "digests": { "md5": "02323b3dfce6750278a598661d033320", "sha256": "ad9d379432ffaa308d91cc01e93e65768a6b10eb14b6c07892b458337274adf7" }, "downloads": -1, "filename": "bjarkan-1.2.0.tar.gz", "has_sig": false, "md5_digest": "02323b3dfce6750278a598661d033320", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8060, "upload_time": "2017-08-02T02:13:26", "url": "https://files.pythonhosted.org/packages/dd/63/0e90e53c98ccf29546e293f8efbec5475f0cb1ec82cfa70dee4b2711b98e/bjarkan-1.2.0.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "02323b3dfce6750278a598661d033320", "sha256": "ad9d379432ffaa308d91cc01e93e65768a6b10eb14b6c07892b458337274adf7" }, "downloads": -1, "filename": "bjarkan-1.2.0.tar.gz", "has_sig": false, "md5_digest": "02323b3dfce6750278a598661d033320", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8060, "upload_time": "2017-08-02T02:13:26", "url": "https://files.pythonhosted.org/packages/dd/63/0e90e53c98ccf29546e293f8efbec5475f0cb1ec82cfa70dee4b2711b98e/bjarkan-1.2.0.tar.gz" } ] }