Skip to content

Commit

Permalink
Google sheets integration (#23)
Browse files Browse the repository at this point in the history
  • Loading branch information
cullenwatson authored Aug 28, 2023
1 parent ce5226b commit 9eb14a7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ _Python version >= [3.10](https://www.python.org/downloads/release/python-3100/)
## Usage
### Google Sheets Integration (Optional)

#### Obtaining an Access Key : [Video Guide](https://www.youtube.com/watch?v=w533wJuilao)
#### Obtaining an Access Key: [Video Guide](https://youtu.be/w533wJuilao?si=5u3m50pRtdhqkg9Z&t=43)
* Enable the [Google Sheets & Google Drive API](https://console.cloud.google.com/)
* Create credentials -> service account -> create & continue
* Select role -> basic: editor -> done
Expand All @@ -156,7 +156,7 @@ _Python version >= [3.10](https://www.python.org/downloads/release/python-3100/)
#### Using the key in the repo
* Copy the key file into the JobSpy repo as `/client_secret.json`
* Go to [my template sheet](https://docs.google.com/spreadsheets/d/1mOgb-ZGZy_YIhnW9OCqIVvkFwiKFvhMBjNcbakW7BLo/edit?usp=sharing) & save as a copy into your account
* Share the sheet with the email from the service account above with editor rights
* Share the Google sheet with the email in `client_email` in the `client_secret.json` above with editor rights
* If you changed the name of the sheet, put the name in `GSHEET_NAME` in `/settings.py`

### How to call the API
Expand Down
2 changes: 1 addition & 1 deletion api/v1/jobs/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ def scrape_site(site: Site) -> Tuple[str, JobResponse]:

except Exception as e:
return CommonResponse(
status="Failed to upload to Google Sheet", error=str(e)
status="Failed to upload to Google Sheet", error=repr(e)
)

else:
Expand Down

0 comments on commit 9eb14a7

Please sign in to comment.