Python Telejson
###############
Install and use Telejson eaisily for Python projects.

Installation
############
Installing from Pypi:

    pip install telejson

Installing latest Hg version:

    pip install -e hg+https://Nekmo@bitbucket.org/Nekmo/python-telejson#egg=telejson

Usage
#####
Create new Telejson instance:

    telejson = Telejson()

Start telejson instance:

    telejson.start()

That's all!! To use Pytg2 with Telejson easily:

    sender = self.telejson.get_sender()
    def handler(msg):
        if msg.text == u'ping':
            sender.send_msg(msg.sender.cmd, u"Pong!")
    self.telejson.handler(handler)

And yes, that's it! Please read the documentation of Pytg2. https://bitbucket.org/luckydonald/pytg2/overview It is to
 him that you have to thank. This is just a wrapper.
 
Telejson website: https://bitbucket.org/luckydonald/tg-for-pytg2.git