Jason Haury
Jason Haury
## Feature Request Add `Running On-Demand All Inf instances` to the response of code like this: ``` c = AwsLimitChecker(region='us-west-2') c.find_usage(['EC2']) # load data so we can then use .get_limits()...
After running the Dockerized flask server in the "components example" (https://github.com/taverntesting/tavern/tree/master/example/components) , I then run the `py.test` tests in the same directory. The test fails with the below, which is...
According to the [Swagger spec](https://github.com/wordnik/swagger-spec/blob/master/versions/1.2.md), setting `allowMultiple = True` will cause a CSV string (comma-separated values) to be converted to an array. The caveat is this field may be used...
This markdown: ``` 1. First parent item 1. first parent's child 2. first parent's other child 2. Second parent item ``` ...should render as: ``` # First parent item ##...
[Postgres has a column type called HSTORE](http://www.postgresqltutorial.com/postgresql-hstore/) which is represented as a CSV string with `"key1"=>"value1", "key2"=>"value2"` pairs. While this can be parsed with a Python UDF once in Exasol,...
I have a wtf_appengine form defined with: ```python PostForm = ndb.model_form(Post, base_class=flask_wtf.FlaskForm, exclude=vars(AuditMixin), field_args={ 'summary': {'widget': widgets.TextArea(), 'render_kw': {'class': 'form-control'}, 'validators': [validators.Length(max=1500)]}, 'essay': {'widget': widgets.TextArea(), 'render_kw': {'class': 'form-control'}} }) ```...
If my NDB model has a Property like `ndb.StringProperty(verbose_name='type', required=True, choices=['Essay', 'Podcast', 'Video'])`, and I then I expect the resulting form `select` to have options in the same order. However,...
This is such a great tool! In some compose files, the resulting diagrams are hard to read because there are so many arrows etc. I realize this is due to...