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
<html> | |
<head> | |
<meta charset="UTF-8"> | |
<?php $debug=False; ?> | |
<title>d3stryr 3stripes</title> | |
<script> | |
function setCookie(cname, cvalue, exdays) { | |
var d = new Date(); | |
d.setTime(d.getTime() + (exdays*24*60*60*1000)); | |
var expires = "expires="+d.toUTCString(); |
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
<?php | |
$marketsList=[]; | |
$marketsList['AT']='de_AT'; | |
$marketsList['AU']='en_AU'; | |
$marketsList['BE']='fr_BE'; | |
$marketsList['BR']='pt_BR'; | |
$marketsList['CA']='en_CA'; | |
$marketsList['CL']='es_CL'; | |
$marketsList['CO']='es_CO'; | |
$marketsList['CZ']='cz_CZ'; |
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
## Developed by @SoleWingSneaks | |
## Uses the Tellegram API to send send the product link when found | |
## User must supply very own server, botkey and chatid | |
## Read up on the app and how to use their API and get your botkey and chatid here https://core.telegram.org/ | |
import requests | |
from bs4 import BeautifulSoup | |
from threading import Thread | |
def message(bot_key, chat_id, txt): |
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
#!/bin/env python2.7 | |
# -*- coding: utf-8 -*- | |
import requests | |
import time | |
import json | |
from bs4 import BeautifulSoup | |
import datetime | |
import adidasProfiles | |
import threading |
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
#!/usr/bin/env python | |
import datetime | |
import inspect | |
import json | |
import lxml.html | |
from lxml.cssselect import CSSSelector | |
import re | |
import requests | |
import os |