Skip to content

Instantly share code, notes, and snippets.

@TomAugspurger
Forked from jiffyclub/svstatic
Last active August 15, 2017 12:47
Show Gist options
  • Save TomAugspurger/121b1a2b864264bc87d5ff97d3ca1ba7 to your computer and use it in GitHub Desktop.
Save TomAugspurger/121b1a2b864264bc87d5ff97d3ca1ba7 to your computer and use it in GitHub Desktop.
Convert a SnakeViz HTML file into a self-contained static file that can be hosted anywhere. This script replaces instances of static files being loaded from the local server by having them come from the rawgit CDN.
#!/usr/bin/env python
"""
Prepare an HTML file from SnakeViz for use as a static page.
This makes it so all static files are loaded from a CDN instead
of from the local server.
To get the SnakeViz HTML file run the snakeviz CLI to load a profile
in your browser, than save that page as an HTML file to your computer.
Finally, run this script on that HTML file.
This script prints the modified HTML to stdout.
"""
from __future__ import print_function
import argparse
import re
import sys
# This regex excludes the lines in the Worker that look like
# event.data['url'] + "/static/vendor/immutable.min.js"
RESTR = r'(?<!] \+ ")/static/'
REPLACE_WITH = \
'https://cdn.rawgit.com/jiffyclub/snakeviz/v0.4.1/snakeviz/static/'
def parse_args(args=None):
parser = argparse.ArgumentParser(
description=(
'Prepare an HTML file from SnakeViz for use as a static page. '
'The modified HTML is printed to stdout.'))
parser.add_argument(
'htmlfile', type=argparse.FileType('r'),
help='HTML to convert to a static page.')
return parser.parse_args(args)
def main(args=None):
args = parse_args(args)
html = args.htmlfile.read()
print(re.sub(RESTR, REPLACE_WITH, html))
if __name__ == '__main__':
sys.exit(main())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment