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
""" | |
@author: Brandon Harmon | |
@date : 9 April, 2014 | |
@description: | |
Pass this program the location of the places.sqlite file for firefox | |
(for me it is ~/.mozilla/firefox/mwad0hks.default/places.sqlite) | |
It will output a csv file where you designate in the 2nd param | |
""" | |
import sqlite3 as lite |
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
#!/usr/bin/python | |
#Heavily based on libtorrent example | |
#Did this to print examples of what information is being processed at different parts of the bittorrent protocol | |
import libtorrent as lt | |
import time | |
import sys | |
class SmallClient: | |
def __init__(self): |
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
#!/usr/bin/env python3 | |
import urllib.request | |
import sys | |
import smtplib | |
import os | |
#Sending text alert | |
def send(body, to="#Email Address to send to", username = "#User Name @gmail.com", password="#Password"): | |
mail_server= smtplib.SMTP("smtp.gmail.com", 587) |