コード例 #1
0
ファイル: autoporn.py プロジェクト: Mancuerna/mvscripts
def main():
    browser = utility.login("USER", "PASS")
    threads = utility.threads("threads")
    for thread in threads:
        message = utility.get_porn(thread[0])
        utility.post(message, thread[1], browser)
        time.sleep(60)
コード例 #2
0
ファイル: apod.py プロジェクト: Mancuerna/mvscripts
def main():
    browser = utility.login("user", "password")
    data = utility.get_apod()
    title = data['title']
    explanation = data['explanation']
    type = data['media_type']
    message = '[b]{}[/b]\n\n{}\n\n'.format(title,explanation)
    if "image" in type:
        if data['hdurl']:
            message = message + '[img]{}[/img]'.format(data['hdurl'])
        else:
            message = message + '[img]{}[/img]'.format(data['url'])
    else:
        video = data['url'].lstrip('https://www.youtube.com/embed/')
        message = message + '[video]https://www.youtube.com/watch?v={}[/video]'.format(video)
    utility.post(message, 555411, browser)
コード例 #3
0
def main():
    browser = utility.login(USERNAME_MV, PASSWORD_MV)
    data = {}
    r = requests.get("http://observatorio.info/")
    soup = BeautifulSoup(r.content, "lxml")
    title = soup.find('h1', 'intro')
    description = soup.find('div', 'lead main icn-enlarge').find('p')
    image = soup.find('div', 'col-sm-12 aq-first aq-last text-center icn-enlarge').find('a')
    video = soup.find('div', 'col-sm-12 aq-first aq-last text-center icn-enlarge').find('iframe')
    if image is not None:
        r = requests.get(image['href'])
        with open("imagen.jpg", "wb") as code:
            code.write(r.content)
        imagen = Image.open("./imagen.jpg")
        imagen.save("./imagen_comprimida.jpg", quality=90)
        im = pyimgur.Imgur(CLIENT_ID)
        uploaded_image = im.upload_image("./imagen_comprimida.jpg", title="Astronomic Picture of Day")
        data['image'] = uploaded_image.link
    if video is not None:
        data['video'] = video['src']
    data['title'] = title.text
    data['description'] = description.text

    title = data['title']
    explanation = data['description']
    message = '[b]{}[/b]\n\n{}\n\n'.format(title, explanation)
    if 'image' in data:
        message += '[img]{}[/img]\n\n{}'.format(data['image'], image['href'])
    else:
        if 'youtube' in data['video']:
            video = data['video'].lstrip('https://www.youtube.com/embed/')
            message += '[video]https://www.youtube.com/watch?v={}[/video]'.format(video)
        else:
            message = message + "\nDebido a capacidades del foro de mediavida, me es imposible insertar el siguiente enlace. Haz clic si deseas ver el contenido: " + \
                      data['video']
    utility.post(message, 555411, browser)  # post de ciencia