We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1fa2f66 commit 1362709Copy full SHA for 1362709
README.md
@@ -174,10 +174,10 @@ You can pass an implementation of `suds.cache.Cache` to the `AdWordsClient` or
174
175
For example, configuring a different location and duration of the cache file:
176
```python
177
-file_cache = suds.cache.FileCache(location=cache_path, days=2)
+doc_cache = suds.cache.DocumentCache(location=cache_path, days=2)
178
adwords_client = adwords.AdWordsClient(
179
developer_token, oauth2_client, user_agent,
180
- client_customer_id=client_customer_id, cache=file_cache)
+ client_customer_id=client_customer_id, cache=doc_cache)
181
```
182
183
You can also disable caching in similar fashion:
0 commit comments