Alexandre Leray

Results 14 comments of Alexandre Leray

Any plan to update the package on Pypi to version 0.3? Thanks

Hello, I'm interested by the exact same feature. What do you think about @ethanpil proposal? Thanks

Hi, I'm having the exact same problem, with any url. I'm using the package from pypi. Thanks

Very much interested in seeing this merged too!

Dpaste link is exipred. Here is the code: ```python from django.middleware.csrf import CsrfViewMiddleware from wagtail.core.views import serve from my_newsletter.models import NewsletterIndexPage class CustomCsrfViewMiddleware(CsrfViewMiddleware): def process_view(self, request, callback, callback_args, callback_kwargs): if...

Hi, I have commited a fix (for tabular inlines only at the moment). The trick is to override the tabular inline template and add a post-add hook in the javascript...

Hello, I'm having the exact same issue, with any images. I send 384px wide pictures, in 1bit. Usually, it starts with missing/miss-aligned rows and then I get some kind of...

Hello @BoboTiG here is my code. ```python import sys from PIL import Image from thermalprinter import * with ThermalPrinter(port='/dev/ttyUSB0') as printer: for img in sys.argv[1:]: printer.image(Image.open(img)) ``` And the [image](https://ibb.co/kc7NjHT)

@BoboTiG Thanks. In the meanwhile I tested and it seems to be working properly, although the code is not well packaged and it might be Python 2 only. Have a...