Benjamin Schollnick
Benjamin Schollnick
I'm evaluating easymail to replace an older smtp wrapper library that I've been using... The only real issue I see is that I'm unclear on how to pass in CC...
1) Updated the BOA code to work with wxPython 4 (Phoenix) 2) Went through and updated all the String module code to work with Python 3 (eg string.lower(variable) -> variable.lower())...
Moonbase59, I'm working a bit on updating PAWS to Python 3... I'm not familiar with WXPython, so I'm stuck on updating TerminalFrame.py to support wxPython 4... Once I get significantly...
Folks, 1. Ran into a situation where files where not downloading, so I used @matega fork. https://github.com/matega/humblebundle-downloader 2. But the same files weren't downloading. After investigating, it appears that they...
**Describe the bug** I installed via HACS, and I see the frontend integration in HACS, but I am receiving the error "Custom Element doesn't exist: timer-bar-card". **Your card configuration** ```yaml...
I can't explain this, but I copied some files from Google drive, and python-thumbnails is crashing when creating the thumbnail. Traceback (most recent call last): File "/Library/Python/2.7/site-packages/django/core/handlers/exception.py", line 41, in...
Hey. I am looking to use Python-thumbnails as a partial replacement for a thumbnail system that I was working on... But I've noticed an issue... tnail = get_thumbnail(testfilename, '300x300', crop='center',...
A second discovery while learning the API, and evaluating it. >>> tnail = get_thumbnail(testfilename, '300x300', crop='center', force=True, quality=100) 82K >>> tnail = get_thumbnail(testfilename, '300x300', crop='center', force=True, quality=10) 5K >>> tnail...
I am running into several issues... But here's my structure: > > ├── __pycache__ > ├── django_jinja > │ ├── __pycache__ > │ ├── builtins > │ ├── contrib >...
I was hoping to see a speed increase from hashlib, but pycryptodome appears to be running ~6x slower that hashlib with SHA-512 generation... python 3.7.1 (64bit) on windows 10 64-bit....