Metadata-Version: 2.1
Name: dell-printer-parser
Version: 0.0.5
Summary: A simple parser for DELL laser printers
Home-page: https://github.com/kongo09/dell-printer
Author: kongo09
Author-email: kongo09@gmail.com
License: MIT License
Project-URL: Bug Tracker, https://github.com/kongo09/dell-printer/issues
Keywords: dell,printer
Platform: UNKNOWN
Requires-Python: !=2.*,>=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: aiohttp (>=3.5.2)
Requires-Dist: beautifulsoup4 (>=4.10.0)
Provides-Extra: all
Requires-Dist: pytest (>=6.2.2) ; extra == 'all'
Requires-Dist: pytest-asyncio ; extra == 'all'
Requires-Dist: pytest-aiohttp ; extra == 'all'
Requires-Dist: pytest-cov ; extra == 'all'
Provides-Extra: test
Requires-Dist: pytest (>=6.2.2) ; extra == 'test'
Requires-Dist: pytest-asyncio ; extra == 'test'
Requires-Dist: pytest-aiohttp ; extra == 'test'
Requires-Dist: pytest-cov ; extra == 'test'

# dell-printer
Python parser for some DELL printer stats

Retrieves certain status and informational data from DELL c1765nfw style printers.

Usage:

```python
import aiohttp
import asyncio
from dell_printer_parser.printer_parser import DellPrinterParser

async def main():
    ip = "192.168.0.20"
    async with aiohttp.ClientSession() as session:
        dpp = DellPrinterParser(session, ip)
        await dpp.load_data()
        print(f"printer tag={dpp.information.dellServiceTagNumber}")


if (__name__ == '__main__'):
    asyncio.run(main())
```


