Skip to content
This repository has been archived by the owner on May 30, 2020. It is now read-only.

Latest commit

 

History

History
36 lines (26 loc) · 1.01 KB

README.rst

File metadata and controls

36 lines (26 loc) · 1.01 KB
https://travis-ci.org/HenrikOssipoff/python-opengraph.svg?branch=master https://coveralls.io/repos/HenrikOssipoff/python-opengraph/badge.svg?branch=master

❗ This repository is no longer maintained in any way. PRs will not be responded to ❗

Python module to parse Open Graph metadata on web pages. For more information on the Open Graph Protocol, see http://ogp.me/.

Compatability

  • Python 2.7
  • Python 3.3, 3.4
  • PyPy

Other versions may work, but testing is only done against the above versions.

Dependencies

  • Beautiful Soup 4
  • Requests

Installation

pip install python-opengraph

Example loading from URL

from opengraph import OpenGraph

og = OpenGraph(url='http://someurl.com')
og.title  # would yield the 'title' open graph element