We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 018fdeb commit 07d19edCopy full SHA for 07d19ed
README.md
@@ -1,18 +1,18 @@
1
# Google doc revision analytics
2
Prototyping tools to extract and analyze google doc revision history data.
3
4
-Example usage of gdoc_revisions module:
+Example usage of gdocrevisions module:
5
```
6
from oauth2client.service_account import ServiceAccountCredentials
7
-import gdoc_revisions
+import gdocrevisions
8
9
CREDENTIAL_FILE = 'my-credentials.json'
10
FILE_ID = 'abcdefg12345'
11
12
scope = ['https://www.googleapis.com/auth/drive']
13
credentials = ServiceAccountCredentials.from_json_keyfile_name(CREDENTIAL_FILE, scope)
14
15
-gdoc = gdoc_revisions.GoogleDoc(FILE_ID, credentials)
+gdoc = gdocrevisions.GoogleDoc(FILE_ID, credentials)
16
17
gdoc.metadata
18
gdoc.revisions
0 commit comments