I'm a beginner in Linux/ Python, so sorry for maybe asking something quite simple for some of you

I'd like to read from a component which is sending a serial signal and use the RPi2 as a data logger.
In the end the RPi should be a stand alone logger which at startup starts logging.
The signal is transferred with following parameters:
Baud rate: 19200, Data bits: 8, Parity: none, Stop bits: 1, Flow control: none
This is how the data is send: Message format
The device transmits blocks of data at 1 second intervals. Each field is sent using the following format:
<Newline><Field-Label><Tab><Field-Value>
The identifiers are defined as follows:
<Newline>A carriage return followed by a line feed (0x0D, 0x0A).
<Field-Label> An arbitrary length label that identifies the field. Where applicable, this will be the same as the label that is used on the LCD.
<Tab> A horizontal tab (0x09).
<Field-Value> The ASCII formatted value of this field. The number of characters transmitted depends on the magnitude and sign of the value.
I have a serial -> USB converter attached to the RPi2. I've got PyUSB installed. With lsusb I already found the connected converter and used to parameters in PyUSB to try to retrieve data. This works, because: device = usb.core.find(idVendor=0x0403, idProduct=0x6015) is TRUE and the device is recognized (a Future Technology Devices International, Ltd Bridge(I2C/SPI/UART/FIFO converter).
With Minicom I also got a dump of the data which is being send from the device...
Now I'd like to read from the device myself (writing in Python) and store this data in a file. Printing would already be sufficient I guess as I believe writing to a file will then not be so difficult.
On my search for PyUSB resources I did not find how to read from such a source. Can somebody help me (maybe a link or code) how to start reading from this USB converter? I do not need to write (at least I think

Thanks!