This file contains 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
import os | |
import zipfile | |
EGG_FILE="~/dependencies.egg" | |
reference_path = "~/crawler_site_packages" | |
# Template to bootstrap so files to a py file | |
so_to_py_template = """ | |
def __bootstrap__(): | |
global __bootstrap__, __loader__, __file__ |
This file contains 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<style> | |
.popup { | |
position: fixed; | |
top: 50vh; | |
left: 50%; | |
width:400px; | |
margin-left: -200px; |