Skip to content

Commit a07d388

Browse files
author
Kenneth Reitz
committed
update readme formatting
1 parent adda1c2 commit a07d388

File tree

1 file changed

+0
-21
lines changed

1 file changed

+0
-21
lines changed

README.md

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,6 @@ Documentation is [available on Read the Docs](https://serpapi-python.readthedocs
5959
### Search Bing
6060
```python
6161
import os
62-
6362
import serpapi
6463

6564
client = serpapi.Client(api_key=os.getenv("API_KEY"))
@@ -74,7 +73,6 @@ results = client.search({
7473
### Search Baidu
7574
```python
7675
import os
77-
7876
import serpapi
7977

8078
client = serpapi.Client(api_key=os.getenv("API_KEY"))
@@ -89,7 +87,6 @@ results = client.search({
8987
### Search Yahoo
9088
```python
9189
import os
92-
9390
import serpapi
9491

9592
client = serpapi.Client(api_key=os.getenv("API_KEY"))
@@ -104,7 +101,6 @@ results = client.search({
104101
### Search YouTube
105102
```python
106103
import os
107-
108104
import serpapi
109105

110106
client = serpapi.Client(api_key=os.getenv("API_KEY"))
@@ -119,7 +115,6 @@ results = client.search({
119115
### Search Walmart
120116
```python
121117
import os
122-
123118
import serpapi
124119

125120
client = serpapi.Client(api_key=os.getenv("API_KEY"))
@@ -134,7 +129,6 @@ results = client.search({
134129
### Search eBay
135130
```python
136131
import os
137-
138132
import serpapi
139133

140134
client = serpapi.Client(api_key=os.getenv("API_KEY"))
@@ -149,7 +143,6 @@ results = client.search({
149143
### Search Naver
150144
```python
151145
import os
152-
153146
import serpapi
154147

155148
client = serpapi.Client(api_key=os.getenv("API_KEY"))
@@ -164,7 +157,6 @@ results = client.search({
164157
### Search Home Depot
165158
```python
166159
import os
167-
168160
import serpapi
169161

170162
client = serpapi.Client(api_key=os.getenv("API_KEY"))
@@ -179,7 +171,6 @@ results = client.search({
179171
### Search Apple App Store
180172
```python
181173
import os
182-
183174
import serpapi
184175

185176
client = serpapi.Client(api_key=os.getenv("API_KEY"))
@@ -194,7 +185,6 @@ results = client.search({
194185
### Search DuckDuckGo
195186
```python
196187
import os
197-
198188
import serpapi
199189

200190
client = serpapi.Client(api_key=os.getenv("API_KEY"))
@@ -209,7 +199,6 @@ results = client.search({
209199
### Search Google
210200
```python
211201
import os
212-
213202
import serpapi
214203

215204
client = serpapi.Client(api_key=os.getenv("API_KEY"))
@@ -225,7 +214,6 @@ results = client.search({
225214
### Search Google Scholar
226215
```python
227216
import os
228-
229217
import serpapi
230218

231219
client = serpapi.Client(api_key=os.getenv("API_KEY"))
@@ -240,7 +228,6 @@ results = client.search({
240228
### Search Google Autocomplete
241229
```python
242230
import os
243-
244231
import serpapi
245232

246233
client = serpapi.Client(api_key=os.getenv("API_KEY"))
@@ -255,7 +242,6 @@ results = client.search({
255242
### Search Google Product
256243
```python
257244
import os
258-
259245
import serpapi
260246

261247
client = serpapi.Client(api_key=os.getenv("API_KEY"))
@@ -271,7 +257,6 @@ results = client.search({
271257
### Search Google Reverse Image
272258
```python
273259
import os
274-
275260
import serpapi
276261

277262
client = serpapi.Client(api_key=os.getenv("API_KEY"))
@@ -287,7 +272,6 @@ results = client.search({
287272
### Search Google Events
288273
```python
289274
import os
290-
291275
import serpapi
292276

293277
client = serpapi.Client(api_key=os.getenv("API_KEY"))
@@ -302,7 +286,6 @@ results = client.search({
302286
### Search Google Local Services
303287
```python
304288
import os
305-
306289
import serpapi
307290

308291
client = serpapi.Client(api_key=os.getenv("API_KEY"))
@@ -318,7 +301,6 @@ results = client.search({
318301
### Search Google Maps
319302
```python
320303
import os
321-
322304
import serpapi
323305

324306

@@ -336,7 +318,6 @@ results = client.search({
336318
### Search Google Jobs
337319
```python
338320
import os
339-
340321
import serpapi
341322

342323

@@ -352,7 +333,6 @@ results = client.search({
352333
### Search Google Play
353334
```python
354335
import os
355-
356336
import serpapi
357337

358338
client = serpapi.Client(api_key=os.getenv("API_KEY"))
@@ -369,7 +349,6 @@ results = client.search({
369349
### Search Google Images
370350
```python
371351
import os
372-
373352
import serpapi
374353

375354
client = serpapi.Client(api_key=os.getenv("API_KEY"))

0 commit comments

Comments
 (0)