diff --git a/AUTHORS b/AUTHORS index 11276d5..9c14d27 100644 --- a/AUTHORS +++ b/AUTHORS @@ -1,4 +1,5 @@ Ahmed Tahri +akeonly Asuki Kono belono Christoph Heuel diff --git a/README.rst b/README.rst index fc551e1..3eebf6d 100644 --- a/README.rst +++ b/README.rst @@ -65,6 +65,19 @@ The basic usage is: p.barcode('1324354657687', 'EAN13', 64, 2, '', '') p.cut() + +Another example based on the Network printer class: + +.. code:: python + + from escpos.printer import Network + + kitchen = Network("192.168.1.100") #Printer IP Address + kitchen.text("Hello World\n") + kitchen.barcode('1324354657687', 'EAN13', 64, 2, '', '') + kitchen.cut() + + The full project-documentation is available on `Read the Docs `_. Contributing