Skip to content

Commit b15b398

Browse files
committed
Update README
1 parent 27214b7 commit b15b398

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,18 +11,22 @@ The stubs were generated automatically based on Google's [Discovery Documents](h
1111

1212
If you find incorrect annotations, please create an issue.
1313

14+
Releases can be somewhat infrequent. If you need a new release, create an issue and I'll probably get around to it faster.
15+
1416
## Installation
1517

1618
```shell script
1719
$ pip install google-api-python-client-stubs
1820
```
1921

22+
The stubs should be automatically picked up by your editor or typechecker.
23+
2024
## Caveats
2125

2226
### Performance
2327
The stubs contain a separate overload of `googleapiclient.discovery.build` for each service and version (see `discovery.pyi`).
2428
This can lead to slow type inference for this function. Mypy will generally be pretty fast after the first run,
25-
but you might experience slow autocomplete. If you're experiencing this problem you can bypass type inference with explicit annotations,
29+
but you might experience slow autocomplete in your editor. If you're experiencing this problem you can bypass type inference with explicit annotations,
2630
e.g. `sheets_service: SheetsResource = build("sheets", "v4")` instead of `sheets_service = build("sheets", "v4")`.
2731
See the next section for some caveats to this approach.
2832

0 commit comments

Comments
 (0)