Skip to main content

Fill HTML login forms automatically

Project description

https://secure.travis-ci.org/scrapy/loginform.png?branch=master Coverage report

loginform is a library for filling HTML login forms given the login url, username & password. Which form and fields to fill are inferred automatically.

It’s implemented on top of lxml form filling, and thus depends on lxml.

Usage

Usage is very simple and best illustrated with an example:

>>> from loginform import fill_login_form
>>> import requests
>>> url = "https://github.com/login"
>>> r = requests.get(url)
>>> fill_login_form(url, r.text, "john", "secret")
([('authenticity_token', 'FQgPiKd1waDL+pycPH8IGutirTnP69SiZgm0zXwn+VQ='),
  ('login', 'john'),
  ('password', 'secret')],
 u'https://github.com/session',
 'POST')

And it is possible to use it as a tool to quickly debug a login form:

$ python -m loginform -u john -p secret https://github.com/login
url: https://github.com/session
method: POST
payload:
- authenticity_token: FQgPiKd1waDL+pycPH8IGutirTnP69SiZgm0zXwn+VQ=
- login: john
- password: secret

Testing

A collection of real-world samples is used to keep this library tested. Those samples are managed as follows:

First, you select a site to try, find out its login url, and run the following command to try loginform on it:

$ python test_samples.py https://github.com/login
[
   "https://github.com/login",
   [
      [
         [
            "authenticity_token",
            "NsdVWGpzxKmn7zSJSOdgnDcLIzIdJlCTO754LiEv2W4="
         ],
         [
            "login",
            "USER"
         ],
         [
            "password",
            "PASS"
         ]
      ],
      "https://github.com/session",
      "POST"
   ]
]

From the output you can judge if it worked or not. If it worked, great. If it didn’t, you would hack loginform.py to make it work and then add the sample with:

$ python test_samples.py https://github.com/login -w github

Note that we gave the sample a name (github in this case).

To list all available samples use:

$ python test_samples.py -l

To run all tests, install tox and run:

$ tox

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

loginform-1.2.0.tar.gz (3.1 kB view details)

Uploaded Source

Built Distribution

loginform-1.2.0-py2-none-any.whl (3.3 kB view details)

Uploaded Python 2

File details

Details for the file loginform-1.2.0.tar.gz.

File metadata

  • Download URL: loginform-1.2.0.tar.gz
  • Upload date:
  • Size: 3.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for loginform-1.2.0.tar.gz
Algorithm Hash digest
SHA256 e852eef73861d526f5904001225557c5a674d3b1eff739fd9f6c1751107c6b15
MD5 da62474e00034b5a07938f92ddd300c5
BLAKE2b-256 1ed3267b4304a72b8471250ae550423d5cd2ce9961de76ac3502f5c680da8e6c

See more details on using hashes here.

Provenance

File details

Details for the file loginform-1.2.0-py2-none-any.whl.

File metadata

File hashes

Hashes for loginform-1.2.0-py2-none-any.whl
Algorithm Hash digest
SHA256 bc2910c21337130844f0fbea60959dc5664e743eb1f06e1218e7175d72c626af
MD5 83c1615538e2b459a9b6c223d16ee34e
BLAKE2b-256 7acb48ee31f7616eb6711abf102694673b14b68629775ebb4c0e9b86bc1ab634

See more details on using hashes here.

Provenance

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page