Metadata-Version: 2.0
Name: lj
Version: 0.2
Summary: Python realization of LiveJournal (LJ) API.Checkout https://github.com/daniilr/python-lj for more info
Home-page: https://github.com/daniilr/python-lj
Author: Original developer: David Lynch; Curent maintainer: Daniil Ryzhkov 
Author-email: i@daniil-r.ru
License: The BSD 3-Clause License
Download-URL: https://github.com/daniilr/python-lj/tarball/0.2
Keywords: livejournal,blog,writing
Platform: osx
Platform: posix
Platform: linux
Platform: windows

Python LiveJournal
==================

**Feel free to make pull requests!**

| **A python realization of LiveJournal (LJ) API**
| A full description of the protocol can be found at:
| http://www.livejournal.com/doc/server/ljp.csp.xml-rpc.protocol.html

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

Just type (pip integration is work in progress):

.. code:: bash

    pip install lj

You can also find `Python LJ on Github
<https://github.com/daniilr/python-lj/>`_

Usage example
-------------

.. code:: python

    from lj import lj as _lj
    lj = _lj.LJServer("Python-Blog3/1.0", "http://daniil-r.ru/bots.html; i@daniil-r.ru")
    lj.login("yourusername", "yourpassword")
    lj.postevent("Awesome post", "Awesome subject", props={"taglist": "github,livejournal"})


