Michael

Results 6 comments of Michael

Just adding that the autoarchive would be a great feature for SIDs like 2402000 (Dshield, CINS, etc) which are useful in IPS mode but generate a ton of alerts that...

Something like: `self.cassette.match_options = match_requests_on` does work, but seems to fly in the face of the nearby code comment...

Groan, after further debugging above is the result of: ``` with betamax.Betamax.configure() as config: config.cassette_library_dir = 'tests/cassettes/' config.define_cassette_placeholder('', BEARER_TOKEN) config.define_cassette_placeholder('', 'https://foo.com') config.default_cassette_options['serialize_with'] = 'prettyjson' config.default_cassette_options['match_requests_on'] = ['method', 'uri', 'jsonbody'], yield...

With minor modifications all of the latest libraries can be used. import Celerey from flask_celerey becomes simply "... from celery" Changes to flask_security require the following addition in init_administration() of...

If I wasn't such a hack I would have figured out how to do that properly by now. Instead I just make changes as I go and there are many...

I run into a similar issue when I use inspect.signature(): ``` import inspect from typing import Union, List, Optional from pydantic import BaseModel, Field class Widget(BaseModel): """A Widget""" foo: Optional[str]...