Nathan Klapstein

Results 9 issues of Nathan Klapstein

For safety concerns it could be a good idea to do mutations **not** in place (e.g. constructing a tempdir with a copy of the source code and temp venv and...

Resolves https://github.com/severb/graypy/issues/131 Fixes issue where installing graypy would also copy the project's `tests` directory to the Python environment's site-packages.

Since June 15th, 2021, the building on [travis-ci.org](http://www.travis-ci.org/) is ceased. Please use [travis-ci.com](http://www.travis-ci.com/) from now on.

Resolves https://github.com/severb/graypy/issues/134 Adds some tests validating the behavior of `warnings.warn` with graypy.

Updates graypy to follow the GELF 1.1 standard defined at http://docs.graylog.org/en/3.0/pages/gelf.html. This will change outputted logs of all handlers! But, should conform to GELF 1.1 much more closely! Adds better...

Presently the GLEF ``facility`` field is deprecated. As stated in their docs: http://docs.graylog.org/en/2.4/pages/gelf.html#gelf-payload-specification We could either drop sending this field or send it as additional field ``_facility``.

Cherry picks of #52 to have a reduced changeset and be easier to review. Features: * Python3 compatibility * Windows 10 compatibility * `tensorflow==2.0.0` compatibility * Smoke tests for `examples/`...

Due to using a `datetime.datetime` instance in `TwitchObject`, `TwitchObject` is not natively JSON serializable. Example: ```python json.dumps(client.search.channels("example")) ``` Running this will result in: ``` Traceback (most recent call last): File...

enhancement

By default google searches will filter duplicate/similar results. Normally, to override this behavior the `filter=0` HTTP parameter is included in the google search request's URL. I believed the following scrape_job...