Joe Alcorn
Joe Alcorn
@rvernica I've had success using an `OrderedDict` to maintain the order of my links. I've opened a PR to document this (#127)
True concurrency is not really doable in python because of the global interpreter lock. It could spawn a subprocess and run there but I don't fully know the implications of...
I don't think logging is enough - it should be available on the [`Result`](https://github.com/joealcorn/laboratory/blob/master/laboratory/result.py) instance so that it's available during publishing.
We've just hit this problem as well, is there any reason this can't be merged in?
For anybody stumbling upon this, gmail's IMAP server doesn't support TLS. You can override `_get_mailbox_client` as a workaround: ```python from imaplib import IMAP4_SSL from imap_tools import MailBoxTls class MailBox(MailBoxTls): def...
This project is unmaintained, but if you take a look at the network page there are some forks which have added additional functionality: https://github.com/joealcorn/xbox/network In particular, I think this commit...
Hello @titilambert I don't really have the need for this project any more so it's not actively maintained (not even sure if it still works) but I will do my...
This is just happening because the twitter api is returning the small image, we explicitly add `:large` when rehosting it. Might be worth doing it for the original image as...