Skip to content

Commit

Permalink
Updated python_repos.py, settings.py to match version in latest print…
Browse files Browse the repository at this point in the history
…ing.
  • Loading branch information
ehmatthes committed Feb 11, 2017
1 parent 80b08d0 commit 53b5690
Show file tree
Hide file tree
Showing 2 changed files with 53 additions and 1 deletion.
51 changes: 51 additions & 0 deletions chapter_17/python_repos_updated.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
import requests
import pygal
from pygal.style import LightColorizedStyle as LCS, LightenStyle as LS

# Make an API call, and store the response.
url = 'https://api.github.com/search/repositories?q=language:python&sort=stars'
r = requests.get(url)
print("Status code:", r.status_code)

# Store API response in a variable.
response_dict = r.json()
print("Total repositories:", response_dict['total_count'])

# Explore information about the repositories.
repo_dicts = response_dict['items']

names, plot_dicts = [], []
for repo_dict in repo_dicts:
names.append(repo_dict['name'])

# Get the project description, if one is available.
description = repo_dict['description']
if not description:
description = "No description provided."

plot_dict = {
'value': repo_dict['stargazers_count'],
'label': description,
'xlink': repo_dict['html_url'],
}
plot_dicts.append(plot_dict)

# Make visualization.
my_style = LS('#333366', base_style=LCS)
my_style.title_font_size = 24
my_style.label_font_size = 14
my_style.major_label_font_size = 18

my_config = pygal.Config()
my_config.x_label_rotation = 45
my_config.show_legend = False
my_config.truncate_label = 15
my_config.show_y_guides = False
my_config.width = 1000

chart = pygal.Bar(my_config, style=my_style)
chart.title = 'Most-Starred Python Projects on GitHub'
chart.x_labels = names

chart.add('', plot_dicts)
chart.render_to_file('python_repos.svg')
3 changes: 2 additions & 1 deletion chapter_20/learning_log/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,8 @@
}

# Heroku settings
if os.getcwd() == '/app':
cwd = os.getcwd()
if cwd == '/app' or cwd[:4] == '/tmp':
import dj_database_url
DATABASES = {
'default': dj_database_url.config(default='postgres://localhost')
Expand Down

0 comments on commit 53b5690

Please sign in to comment.