Metadata-Version: 1.1
Name: wells
Version: 1.1.0
Summary: wells python utilities
Home-page: https://pypi.python.org/pypi/wells
Author: Yuanle Song
Author-email: sylecn@gmail.com
License: LGPLv3+
Description: wells python utilities
        =======================
        
        .. image:: https://img.shields.io/pypi/v/wells.svg
            :target: https://pypi.python.org/pypi/wells
        
        .. image:: https://img.shields.io/pypi/l/wells.svg
            :target: https://pypi.python.org/pypi/wells
        
        .. image:: https://img.shields.io/pypi/wheel/wells.svg
            :target: https://pypi.python.org/pypi/wells
        
        .. image:: https://img.shields.io/pypi/pyversions/wells.svg
            :target: https://pypi.python.org/pypi/wells
        
        .. image:: https://travis-ci.org/python-wells/wells.svg?branch=master
            :target: https://travis-ci.org/python-wells/wells
        
        wells is a collection of python utilities:
        
        Most common and general utilities:
        
         - utils               common utilities. sequence, string and others.
        
        Other included utilities:
        
         - bashscript_utils    read and write bashrc like config files (e.g. A=B)
         - config              config parser. parse simple a = b config files. Because I don't like ini sections.
         - debug               debug utilities, like @trace_time
         - fileutils           file io, like safe_read_file, safe_write_file
         - iputils             utilities to work with IP addresses
         - py3utils            python 3 portability issue helper. similar to six_.
         - redisutils          utilities when working with redis, including some converters for py3.
         - shellutils          shell related utilities
        
        .. _six: https://pythonhosted.org/six/
        
        Installation
        ------------
        
        To install this package:
        
        .. code-block:: bash
        
           $ pip install wells
        
        Baisc Usage
        ------------
        
        .. code-block:: sh
        
           >>> import datetime
           >>> from wells.utils import sha1sum, to_json
           >>> sha1sum("abc")
           'a9993e364706816aba3e25717850c26c9cd0d89d'
           >>> to_json({"start_date": datetime.date.today()})
           '{"start_date": "2017-04-23"}'
           >>> import wells.utils
           >>> help(wells.utils)
        
        Documentation
        -------------
        
        External documentation is not available yet. Type help(<module_name>) to get
        document in python REPL. You can also read examples in unit tests.
        
        ChangeLog
        ---------
        
        * v1.0.0 2017-04-23
          - init release.
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development :: Libraries
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
