-
Notifications
You must be signed in to change notification settings - Fork 5.3k
/
Copy pathgithub_gist.py
executable file
·43 lines (34 loc) · 1.16 KB
/
github_gist.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#!/usr/bin/env python
import json
import os
import sys
from urllib.request import Request, urlopen
def main() -> None:
"""Print the URL of a GitHub gist created from the standard input."""
print(create_gist(sys.stdin.read()))
def create_gist(content: str) -> str:
"""Return the URL of the created GitHub gist."""
response = post_json(
url="https://api.github.com/gists",
data={
"description": "bpython REPL",
"public": False,
"files": {"repl.py": {"content": content}},
},
headers={
"Accept": "application/vnd.github+json",
"Authorization": f"Bearer {os.getenv('GITHUB_TOKEN')}",
"Content-Type": "application/json",
},
)
return response["html_url"]
def post_json(url: str, data: dict, headers: dict = None) -> dict:
"""Return the JSON response from the server."""
payload = json.dumps(data).encode("utf-8")
with urlopen(Request(url, payload, headers or {})) as response:
return json.loads(response.read().decode("utf-8"))
if __name__ == "__main__":
try:
main()
except Exception as ex:
print(ex)