botostubs icon indicating copy to clipboard operation
botostubs copied to clipboard

Type stubs for botocore and boto3. **Note: This project is a work in-progess**

Results 6 botostubs issues
Sort by recently updated
recently updated
newest added

Could you please add a stub for lambda.invoke_with_response_stream. Thank you

Bumps [jinja2](https://github.com/pallets/jinja) from 2.10.1 to 2.11.3. Release notes Sourced from jinja2's releases. 2.11.3 This contains a fix for a speed issue with the urlize filter. urlize is likely to be...

dependencies

Hi Team, Is there any timeline or ETA for the stable version of botostubs ?

As of now, last change happened 13 months ago... Would be nice to have types with boto

This type checks even though I would expect it to fail: ``` $ cat app.py from typing import List import botocore.session def testit() -> List[str]: session = botocore.session.Session() client =...

e.g. ```python3 import boto3 session = boto3.Session() s3 = session.resource('s3', ...) bucket = s3.Bucket('foo') object = bucket.Object('bar') response = object.get() print(f'Got status {response["ResponseMetadata"]["HTTPStatusCode"]}') ``` `mypy` on the above results in:...