Skip to main content

OAuthBrowser is module to do authentications and web scraping.

Project description

OAuthBrowser

This module will let you authenticate OAuth 2.0 via system browser and get response URL. Currently supporting Google Chrome and Safari browsers. Built with applescript and osascript, only works on Mac OSX.

A lot more can be done with OAuthBrowser like getting source code without getting automation detection from websites.

Installation

Use the package manager pip to install OAuthBrowser.

pip install OAuthBrowser

Or install the latest repo from here.

pip install git+https://github.com/Saadmairaj/OAuthBrowser#egg=OAuthBrowser

Usage

Usage is very simple

  1. Pass authentication URL.
  2. Apply Wait class to wait for the browser to redirect.
  3. Fetch URL.
  4. Close browser.
from OAuthBrowser import Safari, Wait
from urllib.parse import urlparse, parse_qs

URL = """https://accounts.google.com/signin/oauth/oauthchooseaccount?
scope=https%3A%2F%2Fwww.googleapis.com%2Fauth%2Fdrive.metadata.readonly&
state=state_parameter_passthrough_value&
redirect_uri=https%3A%2F%2Foauth2.example.com%2Fcode&
access_type=offline&
response_type=code&
client_id=583306224539-atbcaa8ne8g85e8kc006o6vmq99qiid0.apps.googleusercontent.com&
o2v=2&as=CDdm3G6Zd1UOG9o_gWXzQQ&flowName=GeneralOAuthFlow"""

# Initialise browser
browser = Safari(window_geometry=(100, 22, 400, 690))
# Pass Authentication URL
browser.open_new_window(URL)
# Initialise Wait
wait = Wait(browser)
# Wait till query "code" is present in the URL.
wait.until_present_query('code')
# Fetch the url
response_url = urlparse(browser.get_current_url())
code = parse_qs(response_url.query).get('code')[0]
print("\nCode: %s\n" % code)
# Close the browser
browser.quit()

Demonstration

python -m OAuthBrowser

Contributing

When contributing to this repository, please first discuss the change you wish to make via issue, email, or any other method of this repository before making a change.

Please make sure to update tests as appropriate.

License

MIT

Changelog

  • 0.0.1
    • First import.

Download files

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

Source Distribution

OAuthBrowser-0.0.1.tar.gz (6.1 kB view details)

Uploaded Source

Built Distribution

OAuthBrowser-0.0.1-py2-none-any.whl (7.6 kB view details)

Uploaded Python 2

File details

Details for the file OAuthBrowser-0.0.1.tar.gz.

File metadata

  • Download URL: OAuthBrowser-0.0.1.tar.gz
  • Upload date:
  • Size: 6.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.6.8

File hashes

Hashes for OAuthBrowser-0.0.1.tar.gz
Algorithm Hash digest
SHA256 66794fd4920f8c9040b7de886df3c4459f880efbfce50f2651672c7d58635876
MD5 45674b5861ffa7da3f4c1288e93a6f3a
BLAKE2b-256 16165578502a71046d760799b8da4361a256e3e25929c7c10de9de8383cb8368

See more details on using hashes here.

Provenance

File details

Details for the file OAuthBrowser-0.0.1-py2-none-any.whl.

File metadata

  • Download URL: OAuthBrowser-0.0.1-py2-none-any.whl
  • Upload date:
  • Size: 7.6 kB
  • Tags: Python 2
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.6.8

File hashes

Hashes for OAuthBrowser-0.0.1-py2-none-any.whl
Algorithm Hash digest
SHA256 10ddeef9a151e69656cabfb6618288c001d923f532eda72f008946294ecd973b
MD5 3e343f6d6b57226566212f31a1aed247
BLAKE2b-256 3d9cb9f019e52225d796bb931b73216f265fc1f8e16699c76cb8f77875b57112

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