Python API for interacting with devices from Samsung.
Project description
Python API for interacting with printers from Samsung. Mainly to get the details about the different media levels.
Installation
The module is available from the Python Package Index.
$ pip3 install samsung_print
Usage
import asyncio
import aiohttp
from samsung_print import Printer
IP_PRINTER = '192.168.1.200'
@asyncio.coroutine
def main():
with aiohttp.ClientSession() as session:
printer = Printer(IP_PRINTER, loop, session)
yield from printer.async_get_data()
print("Printer status:", printer.status('hrDeviceStatus'))
loop = asyncio.get_event_loop()
loop.run_until_complete(main())
The file example.py contains further options about how to use this module.
Supported printer
samsung_print was tested with the following printer:
C410W
Development
For development is recommended to use a venv.
$ python3.6 -m venv .
$ source bin/activate
$ python3 setup.py develop
License
samsung_print is licensed under MIT, for more details check LICENSE.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
samsung_print-0.1.0.tar.gz
(3.1 kB
view details)
File details
Details for the file samsung_print-0.1.0.tar.gz
.
File metadata
- Download URL: samsung_print-0.1.0.tar.gz
- Upload date:
- Size: 3.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 718240d9455804a540fdb534225d74c3be21224ddcd490dae8e0b19a716471c6 |
|
MD5 | 38ca5b3db5c13d2a397d955342f7c3c1 |
|
BLAKE2b-256 | 7834baa39467f8c8f8e155e9460a8b117ec90c35458302a57eacfa731e9e3a4d |