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
# Python Web Proxy for HTTP GET | |
# UFABC 2021 Computer Networks Project | |
# Inspired by: https://gist.github.com/darkwave/52842722c0c451807df4 | |
# Imports | |
if 1: | |
import sys | |
import socket | |
import time # for delay | |
import select # selection of available sockets |
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
# Python code to search emails in csv, xlsx and json files; | |
# split email into name and domain; | |
# and apply md5 hash to the name, name in uppercase and name in lowercase; | |
# returning them in csv format. | |
import hashlib | |
import re | |
import csv | |
import glob | |
import pandas as pd |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.