This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from jinja2 import Template | |
| sitemap_template="""<?xml version="1.0" encoding="UTF-8"?> | |
| <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> | |
| {% for page in pages %} | |
| <url> | |
| <loc>{{page[0]|safe}}</loc> | |
| <lastmod>{{page[1]}}</lastmod> | |
| </url> | |
| {% endfor %} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| def get_redirects(url): | |
| try: | |
| # r = requests.get(url) | |
| r = requests.head(url) | |
| except: | |
| return (url, None, "Error") | |
| if r.status_code in [301, 302, 307]: | |
| return (url, r.status_code, r.headers['Location']) | |
| elif r.status_code == 404: | |
| return (url, r.status_code, None) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # We do a left merge to append the redirect information to our original GA dataframe. | |
| data_redirects = data.merge(redirects, left_on="url", right_on="url", how="left") | |
| data_redirects['true_url'] = data_redirects['redirect_url'].combine_first(data_redirects['path']) | |
| data_redirects['true_url'] = data_redirects['true_url'].apply(lambda x: urlparse(x).path) | |
| data_redirects['ga:date'] = pd.to_datetime(data_redirects['ga:date']) | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| true_before = data_redirects[data_redirects['ga:date'] < pd.to_datetime(MIDPOINT_DATE)] | |
| true_after = data_redirects[data_redirects['ga:date'] >= pd.to_datetime(MIDPOINT_DATE)] | |
| # Traffic totals before shopify switch | |
| true_totals_before = true_before[["true_url", "ga:newUsers"]]\ | |
| .groupby("true_url").sum() | |
| true_totals_before = true_totals_before.reset_index()\ | |
| .sort_values("ga:newUsers", ascending=False) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Comparing pages from before and after the switch | |
| true_change = true_totals_after.merge(true_totals_before, | |
| left_on="true_url", | |
| right_on="true_url", | |
| suffixes=["_after", "_before"], | |
| how="outer") | |
| true_change.loc[:, ["ga:newUsers_after", "ga:newUsers_before"]].fillna(0, inplace=True) | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Checking again that the total traffic adds up | |
| true_change[["ga:newUsers_before", "ga:newUsers_after"]].sum().sum() == data['ga:newUsers'].sum() | |
| #should be true |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| data_redirects['group'] = "N/A" | |
| data_redirects.loc[data_redirects['true_url'].str.contains(r"/collections(?!.*products.*)(?!.*/product.*)"), "group"] = "Collections" | |
| data_redirects.loc[data_redirects['true_url'].str.contains(r".*/products/.*|.*/product/.*"), "group"] = "Products" | |
| grouped_data = data_redirects[['group', "ga:newUsers", "ga:date"]].groupby(["group", "ga:date"]).sum().reset_index() | |
| # before and after comparison | |
| grouped_before = grouped_data[grouped_data['ga:date'] < pd.to_datetime("2017-12-15")] | |
| grouped_after = grouped_data[grouped_data['ga:date'] >= pd.to_datetime("2017-12-15")] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| plot_data = [ | |
| go.Bar( | |
| x = grouped_change['group'].tolist(), | |
| y = grouped_change['difference'].tolist(), | |
| marker = dict( | |
| color = 'red' | |
| ), | |
| name = 'Traffic Difference' | |
| ), | |
| go.Bar( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| line_data = [] | |
| for group in grouped_data['group'].unique().tolist(): | |
| line = go.Scatter( | |
| x = grouped_data.loc[grouped_data['group'] == group, 'ga:date'], | |
| y = grouped_data.loc[grouped_data['group'] == group, 'ga:newUsers'], | |
| name = group, | |
| mode="lines" | |
| ) | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #convert relative URLs to absolute | |
| from urllib.parse import urljoin | |
| #relative 404 URLs from Search Console API: webmasters.urlcrawlerrorssamples.list | |
| pageUrl = "product/mad-for-plaid-flannel-dress" #missing forward slash | |
| print(urljoin("https://www.example.com/", pageUrl)) |