Kann den Browser bedienen
pip install lxml
pip install mechanize
Im Voraus
Versuchen Sie hier, sich auf der Qiita-Site anzumelden.
browserplus.py
# -*- coding: utf-8 -*-
from browserplus import BrowserPlus
bp = BrowserPlus()
#Site öffnen
bp.open('https://qiita.com/login')
#Formular-Tag-Spezifikation
bp.select_form_by('action', '/login')
#Einstellungen für Benutzer-ID und Kennwort
bp['identity'] = 'your id'
bp['password'] = 'your password'
#Senden
bp.submit()
#HTML-Anzeige
bp.show()
Recommended Posts