![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
|Build Status| |PyPI|
Einder is an API wrapper for the set-top boxes SMT C7400 and SMT C7401. In the Netherlands these boxes are sold by a big Dutch cable operator under the name Horizon Box. The name Einder is a Dutch synonym for horizon.
I'd like to thank kuijp <https://github.com/kuijp>
__ for his
work on horizoncontrol <https://github.com/kuijp/horizoncontrol>
__.
This is just a shameless Python rip off.
.. code:: shell
$ pip install einder
einder.Client
controls the set-top box by sending bytes. These bytes
represent the buttons of a remote control. You can find all supported
keys in einder.keys <einder/keys.py>
__. The example shows how to
send keys.
.. code:: python
import time
import logging
from einder import Client
from einder import keys
# Enable logging.
logging.basicConfig(level=logging.DEBUG)
# Replace IP with the IP of your set-top box. The port parameter is optional,
# by default its 5900.
c = Client("192.168.1.245", port=5900)
c.power_on()
# Wait a few seconds to let the set-top box have some time to start.
time.sleep(5)
# Select channel 501.
c.send_key(keys.NUM_5)
c.send_key(keys.NUM_0)
c.send_key(keys.NUM_1)
# For selecting a channel einder.Client offers a small helper function.
c.select_channel(501)
# No watch some TV...
c.power_off()
c.disconnect()
The einder.Client
can also be used as a context manager:
.. code:: python
from einder import Client
with Client("192.168.1.245") as c:
c.select_channel(501)
This software is licensed under the MIT license <LICENSE>
__.
.. |Build Status| image:: https://travis-ci.org/OrangeTux/einder.svg?branch=master :target: https://travis-ci.org/OrangeTux/einder .. |PyPI| image:: https://img.shields.io/pypi/v/einder.svg :target: https://pypi.python.org/pypi/einder/
FAQs
API wrapper for Samsumgs set-top boxes SMT-G7400 and SMT-G7401.
We found that einder demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.