Skip to content

Commit 07d19ed

Browse files
Update README to reflect renaming
1 parent 018fdeb commit 07d19ed

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
# Google doc revision analytics
22
Prototyping tools to extract and analyze google doc revision history data.
33

4-
Example usage of gdoc_revisions module:
4+
Example usage of gdocrevisions module:
55
```
66
from oauth2client.service_account import ServiceAccountCredentials
7-
import gdoc_revisions
7+
import gdocrevisions
88
99
CREDENTIAL_FILE = 'my-credentials.json'
1010
FILE_ID = 'abcdefg12345'
1111
1212
scope = ['https://www.googleapis.com/auth/drive']
1313
credentials = ServiceAccountCredentials.from_json_keyfile_name(CREDENTIAL_FILE, scope)
1414
15-
gdoc = gdoc_revisions.GoogleDoc(FILE_ID, credentials)
15+
gdoc = gdocrevisions.GoogleDoc(FILE_ID, credentials)
1616
1717
gdoc.metadata
1818
gdoc.revisions

0 commit comments

Comments
 (0)