Skip to content

Commit

Permalink
get slugs from PyOhio git json
Browse files Browse the repository at this point in the history
  • Loading branch information
CarlFK committed Jul 15, 2024
1 parent 129ca88 commit 1fb801e
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions tests/github/gh_raw.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@

# get_github.py

import os
import requests

from pprint import pprint

url="https://raw.githubusercontent.com/pyohio/pyohio-static-website/main/2024/src/content/json/talks.json"
response=requests.get( url )
o = response.json()
pprint(o)

print(f"{o[0].keys()=}")



0 comments on commit 1fb801e

Please sign in to comment.