Skip to content

Commit 4785f56

Browse files
committed
special characters removed from markdown
1 parent 1848874 commit 4785f56

File tree

2 files changed

+13
-13
lines changed

2 files changed

+13
-13
lines changed

README.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Google Objects
22
Thin, pythonic OO wrapper around Google's "google-api-python-client" library.
3-
Currently supports Python 3+ :snake::snake::snake:
3+
Currently supports Python 3+
44

55
## Installation
66
```bash
@@ -12,7 +12,7 @@ Requires a valid Google API Credentials object from Google's excellent oauth2lib
1212

1313
### Google Drive v3
1414

15-
- [x] Retrieve drive 'About' information:
15+
- Retrieve drive 'About' information:
1616

1717
```python
1818
from google_objects import DriveClient
@@ -29,7 +29,7 @@ print(about.photo)
2929
# ...
3030
```
3131

32-
- [x] List files in drive by type:
32+
- List files in drive by type:
3333

3434
```python
3535
files_by_type = {
@@ -49,7 +49,7 @@ for file in files_by_type['spreadsheets']:
4949
# ...
5050
```
5151

52-
- [x] Copy and share file:
52+
- Copy and share file:
5353

5454
```python
5555
file = gdrive.get_file('FILE_ID')
@@ -64,7 +64,7 @@ print(permission.role, permission.type, permission.email)
6464

6565
### Google Slides v1
6666

67-
- [x] Retrieve presentation and loop through elements:
67+
- Retrieve presentation and loop through elements:
6868

6969
```python
7070
from google_objects import SlidesClient
@@ -81,15 +81,15 @@ for slide in presentation:
8181
# Shape, Table, etc
8282
```
8383

84-
- [x] Check text in shape:
84+
- Check text in shape:
8585

8686
```python
8787
shape = presentation.get_element_by_id('SHAPE_ID')
8888
for segment in shape.text:
8989
print(segment.text)
9090
```
9191

92-
- [x] Batch update every cell in table:
92+
- Batch update every cell in table:
9393

9494
```python
9595
# use with to perform batch updates in block
@@ -104,7 +104,7 @@ with presentation as pres:
104104

105105
### Google Sheets v4
106106

107-
- [x] Retrieve spreadsheet and loop through sheets:
107+
- Retrieve spreadsheet and loop through sheets:
108108

109109
```python
110110
from google_objects import SheetsClient
@@ -116,22 +116,22 @@ for sheet in spreadsheet:
116116
print(sheet.id, sheet.title)
117117
```
118118

119-
- [x] Get sheet by name and return its full block of values:
119+
- Get sheet by name and return its full block of values:
120120

121121
```python
122122
sheet = spreadsheet['Sheet 1']
123123
values = sheet.values()
124124
```
125125

126-
- [x] Get named range value block:
126+
- Get named range value block:
127127

128128
```python
129129
named_ranges = spreadsheet.named_ranges('SHEET_NAME!A:C')
130130
for rng in named_range:
131131
values = named_range.get_block()
132132
```
133133

134-
- [x] Update values block:
134+
- Update values block:
135135

136136
```python
137137
values = spreadsheet.get_range('SHEET_NAME!A:C')
@@ -146,7 +146,7 @@ values[2:5] = [[1,2,4], [4, 5, 6], [6, 7, 8]]
146146
values.update()
147147
```
148148

149-
- [x] Append to values block:
149+
- Append to values block:
150150

151151
```python
152152
to_append = [[1, 2, 3], [4, 5, 6]]

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
os.system('twine upload dist/*')
2222
sys.exit(0)
2323

24-
VERSION = '0.0.5'
24+
VERSION = '0.0.7'
2525
REQUIRES = ['google-api-python-client>=1.5.3', 'pandas>=0.22.0', 'fire>=0.1.3']
2626
GITHUB_URL = 'https://github.com/condad/google-objects'
2727

0 commit comments

Comments
 (0)