Metadata-Version: 2.0
Name: wsinfo
Version: 1.0.0
Summary: Python package for simply retrieving information about a specific website.
Home-page: https://github.com/linusg/wsinfo
Author: Linus Groh
Author-email: mail@linusgroh.de
License: MIT license
Download-URL: https://pypi.python.org/pypi/wsinfo
Keywords: website,http
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.1
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Internet
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules

The wsinfo library
==================

wsinfo (short for website information) is a Python package for getting some
useful information about some website, without the need to write some
complicated hackish Python code.

Requirements
------------

The package is compatible with both Python 2 and 3, so everything you need is
a recent Python installation.

Installation
------------

The wsinfo library is available on `PyPI <http://pypi.python.org/pypi/wsinfo>`_,
so you can install it using ``pip``::

    pip install wsinfo

Usage
-----

The usage of the wsinfo library is as easy as::

    >>> import wsinfo
    >>> w = wsinfo.Info("https://github.com")
    >>> w.ip
    '192.30.253.112'
    >>> w.http_status_code
    200
    >>> w.title
    'How people build software · GitHub'
    >>> w.content
    '<!DOCTYPE html>\n<html>\n[...]\n</html>'

Tested Platforms and Python Versions
------------------------------------

The code was tested with the following software configurations:

- Ubuntu 16.04 LTS, CPython 2.7.12
- Ubuntu 16.04 LTS, CPython 3.5.2
- Ubuntu 16.04 LTS, PyPy 3.5.2
- Windows 7, CPython 2.7.12

...but should work cross all common platforms on Python 2.7 and 3.x. Other
success reports are welcome.

