-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhelpers.py
76 lines (60 loc) · 2.16 KB
/
helpers.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
import os
import requests
import urllib.parse
from flask import redirect, render_template, request, session
from functools import wraps
def apology(message, code=400):
"""Render message as an apology to user."""
def escape(s):
"""
Escape special characters.
https://github.com/jacebrowning/memegen#special-characters
"""
for old, new in [("-", "--"), (" ", "-"), ("_", "__"), ("?", "~q"),
("%", "~p"), ("#", "~h"), ("/", "~s"), ("\"", "''")]:
s = s.replace(old, new)
return s
return render_template("apology.html", top=code, bottom=escape(message)), code
def login_required(f):
"""
Decorate routes to require login.
https://flask.palletsprojects.com/en/1.1.x/patterns/viewdecorators/
"""
@wraps(f)
def decorated_function(*args, **kwargs):
if session.get("user_id") is None:
return redirect("/login")
return f(*args, **kwargs)
return decorated_function
def lookup(val="python+java"):
"""Look up most starred repo of topics."""
# Contact API
try:
url = f"https://api.github.com/search/repositories?q=language:{val}&sort=stars"
headers = {'Accept': 'application/vnd.github.v3+json'}
response = requests.get(url, headers=headers)
response.raise_for_status()
except requests.RequestException:
return None
# Parse response
res = []
try:
response_dict = response.json()
if response_dict["total_count"] >= 12:
search = response_dict["items"][:12]
else:
search = response_dict["items"]
for item in search:
result= {}
result["name"] = item["name"].capitalize()
result["pic"] = item["owner"]["avatar_url"]
result["url"] = item["html_url"]
result["des"] = item["description"][:80].capitalize() + "..."
result["stars"] = item["stargazers_count"]
result["owner_usr"] = item["owner"]["login"]
res.append(result)
except (KeyError, TypeError, ValueError):
return None
if len(res) == 0:
return None
return res