Metadata-Version: 1.1
Name: python-bencode
Version: 1.0.0
Summary: bencode for humans
Home-page: https://github.com/plasmashadow/pytorrent.git
Author: plasmashadow
Author-email: plasmashadowx@gmail.com
License: BSD License
Description: ##python-bencode
        
        [![Build Status](https://travis-ci.org/plasmashadow/python-bencode.svg)](https://travis-ci.org/plasmashadow/python-bencode)
        
        Becode Encoder and Decoder
        
        ##Installation
        
        ```
        
        pip install python-bencode
        
        ```
        
        ##Usage
        
        ```python
        
        from bencode import Bencoder
        
        #encoding
        built_to_bencode = [1,2,3]
        strs = Bencoder.encode(built_to_bencode)
        
        #decoding
        decodable = "8:announce"
        obj = Bencoder.decode(decodeable)
        
        
        ```
        
        
        ##LICENSE
        BSD
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Intended Audience :: Developers
