Skip to content

Commit

Permalink
Readme refinement
Browse files Browse the repository at this point in the history
  • Loading branch information
miklevin committed Aug 29, 2019
1 parent 3fc6d42 commit f1db72e
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,8 @@ should have a www at the beginning or if the protocol is correct::
google.com

And now let's say you write a simple function that will test what the real
homepage URL is::
homepage URL is. This example uses the popular "Requests" package for making
http requests::

import requests

Expand Down Expand Up @@ -95,7 +96,14 @@ the results in column B and push the results back up into Google Sheets::
df['B'] = df['A'].apply(cleanurl)
gs.populate(tab, cl, df)

And that's it! Imagine the utility.
And that's it! Column B will now contain::

https://www.apple.com/
https://www.google.com/
https://www.amazon.com/

Imagine the utility! I addition to working magic in Google Sheets, you're
acquiring incredibly useful Python Pandas skills!

Parametrizing Your Arguments for Scheduling
===========================================
Expand Down

0 comments on commit f1db72e

Please sign in to comment.