Results 15 issues of Hoylen Sue

A previous version of Mailer (e.g. version 1.1.0) had significant syntax checking of email addresses for validity against RFC 5822, as well as parsing an address into its components. This...

next
help wanted (easy)

**Describe the bug** The versions of package dependencies in _setup.py_ and _requirements.txt_ are inconsistent. For the `extra_requires`, _setup.py_ references these packages: https://github.com/oauthlib/oauthlib/blob/d4716eb95e9590bb47381a64cda1d57bad8dd907/setup.py#L21-L23 The _requirements.txt_ contains: https://github.com/oauthlib/oauthlib/blob/d4716eb95e9590bb47381a64cda1d57bad8dd907/requirements.txt#L1-L3 And there is also...

Discussion
Contributor Friendly
Cleanup

**Describe the bug** The _setup.py_ install script currently defines two "extras" that can be installed: - **rsa** which only installs PyCA's `cryptography` package, and - **signedtoken** which installs both `cryptography`...

Bug
Discussion
Contributor Friendly
Cleanup

Hi, Is this project being maintained? We would like to see the release on PyPI to be updated with the pull request that was submitted 3.5 years ago, etc. Hoylen

Added support the RSA-SHA1 signature method, as well as retaining support for HMAC-SHA1 in a backward compatible manner. Bumped version number up to 2.0.0.

Fixed `parse` method to allow _buffer_ and _offset_ parameters to be used as intended. Previously, the code said `if (buffer.length != 16) throw ...` which means larger buffers cannot be...

### Updated crypto dependency Updated dependency on the _crypto_ package to '>=0.9.2 =0.9.0

When an error occurs in a nested Configuration, there is no context of where it came from. For example, consider the following program: ```dart import 'dart:io'; import 'package:safe_config/safe_config.dart'; class AppConfig...

What is the best way to clean up after a `TimeoutException` is thrown when running an SQL query? **Problem** If you have code like this: ```dart Transaction tx = ...;...

There needs to be an _execute_ method that can take a SQL statement and a list of parameters: `Future execute(String sql, Iterable values)`. Sometimes (often?) you want to run a...