Please note, this is a STATIC archive of website www.tutorialspoint.com from 11 May 2019, cach3.com does not collect or store any user information, there is no "phishing" involved.
Tutorialspoint

Titan Land Channel Premade Bot

import requests
import json
import urllib2
import time

webhook_url = 'https://discordapp.com/api/webhooks/355866897704550412/e3dmYfVXANhJaCnZJkbewLUHLLu7zjEmo0GnskJC9fYrcMjO6VFAgNzISGOKI0sddcFq'
slack_data = {} #"username":"IFTTT YouTube Test",

while True:
    data = urllib2.urlopen("https://drive.google.com/uc?export=download&id=0B8OPOPGiSJ7fZlB5SjFFcmF0a1E")
    
    a = data.readlines()
    
    if a[0][0] == "F":
        slack_data["content"] = "```No Premade Games Scheduled```"
    else:
        b = ""
        b = b.join(a[1:])
    
        slack_data["content"] = "```" + b + "```"
    
    
    response = requests.post(
        webhook_url, data=json.dumps(slack_data),
        headers={'Content-Type': 'application/json'}
    )
    break

aasasasasasasasasasasasasasa

# Hello World program in Python
    
print "Hello World!\n"

Execute Python Online

import requests
import json
import urllib2
import time

webhook_url = 'https://discordapp.com/api/webhooks/355866897704550412/e3dmYfVXANhJaCnZJkbewLUHLLu7zjEmo0GnskJC9fYrcMjO6VFAgNzISGOKI0sddcFq'
slack_data = {} #"username":"IFTTT YouTube Test",

while True:
    data = urllib2.urlopen("https://drive.google.com/uc?export=download&id=0B8OPOPGiSJ7fZlB5SjFFcmF0a1E")
    
    a = data.readlines()
    
    if a[0][0] == "F":
        slack_data["content"] = "```No Premade Games Scheduled```"
    else:
        b = ""
        b = b.join(a[1:])
    
        slack_data["content"] = "```" + b + "```"
    
    
    response = requests.post(
        webhook_url, data=json.dumps(slack_data),
        headers={'Content-Type': 'application/json'}
    )
    break

PyViewFileViewerPython2713

import sys

def getfilen():
    global fname
    fname = sys.ergv[1]
def getfileninp():
    global fname
    fname = raw_input("File Name: ")
try:
    getfilen()
except:
    getfileninp()
try:
    f = open(fname, "r")
except:
    print("\nBad Filename / Binary File")
    sys.exit()
linen = 1
for line in f:
    print("1: %s %s %s" % linen, fname, line)
    linen = linen + 1
print("EOF")

Advertisements
Loading...

We use cookies to provide and improve our services. By using our site, you consent to our Cookies Policy.