Skip to content

Instantly share code, notes, and snippets.

View eteamin's full-sized avatar
🌴
On vacation

Amin Etesamian eteamin

🌴
On vacation
View GitHub Profile
@eteamin
eteamin / tg_bot.py
Last active September 17, 2017 21:09
from telegram import Bot
bot = Bot(token='token')
offset = 0
while True:
updates = bot.get_updates(offset=offset)
for update in updates:
if update:
@eteamin
eteamin / insta_hack.py
Last active September 21, 2017 22:26
from __future__ import print_function
import itertools
import argparse
import random
import threading
import subprocess
import time
try:
@eteamin
eteamin / test
Created November 23, 2016 12:04
import sqlite3
from blackfield.variables import DB_FILE, DB_TEST_FILE, TEST_PERSON, INVALID_CART
if __name__ == '__main__':
connection = sqlite3.connect(DB_FILE)
cursor = connection.cursor()
try: