Simeon Visser
Simeon Visser
The library assumes an English locale is used (e.g., English-language hardcoded month names). Ideally the library would use locale-dependent constants so that computations are done correctly (e.g., the duration of...
If I call `picka.age(1, 1)` repeatedly I get `1` and `2` as results. I would have expected it to always return `1`. Note that this situation can occur when passing...
Just noticed this on PyPI.
If I'm not mistaken the following steps are sufficient to have this package publicly support Python 3.x: - Add PyPI classifiers in `setup.py` for the `setup()` call (such as https://github.com/svisser/logaugment/blob/master/setup.py#L31-L37)...
#### Problem description When writing a `.csv.gz` file to S3, performance was slow as it's calling `GzipFile.write()` for every single line in the CSV file. This is not the issue...
It seems like this package should also work in more recent .NET versions (e.g., .NET 6, 7). This issue exists for implementing the necessary changes to support those .NET versions.
This is an issue to explore the possibility to add type annotations to this project. Would you be interested in such contributions to this project? A related question is that...
Mailchimp has deprecated earlier API versions and v3.0 will be the new Mailchimp API: http://kb.mailchimp.com/api (also a RESTful API).
As of Django 1.3, the unique_error_message method has moved from the form to the model. For models with a unique slug field, this causes the following error upon saving: AttributeError:...