1.3 Inch OLED Module is a mini display screen with 128X64 resolution and SSD1106 chipset

Use the Adafruit_SH1106.h library for this display

Example python script for use with Raspberry Pi (works with OS Bookworm)

from luma.core.interface.serial import i2c, spi, pcf8574
from luma.core.interface.parallel import bitbang_6800
from luma.core.render import canvas
from luma.oled.device import ssd1306, ssd1309, ssd1325, ssd1331, sh1106, sh1107, ws0010


serial = i2c(port=1, address=0x3C)

device = sh1106(serial)

with canvas(device) as draw:
    draw.rectangle(device.bounding_box, outline="white", fill="black")
    draw.text((30, 40), "Hello World", fill="white")