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
UNLOAD ('select * from skytrax.airline') | |
TO 's3://redshift-data-movement/backups/airline.csv' | |
CREDENTIALS 'aws_access_key_id=XXXXXXXXXX;aws_secret_access_key=XXXXXXXXXX' | |
FORMAT as csv; |
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
import sys | |
import requests | |
from pprint import pprint | |
from bs4 import BeautifulSoup as bs | |
from urllib.parse import urljoin | |
XSS_SCRIPT = "<Script>alert('hi')</scripT>" | |
class MissingUrlException(Exception): |
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
import re | |
import json | |
# define a function to parse the resume | |
def parse_resume(resume_text): | |
# split the text into lines | |
lines = resume_text.split('\n') | |
# initialize variables to store the parsed information | |
name = '' |
OlderNewer