Metadata-Version: 1.1
Name: vitess-helpers
Version: 0.1.0
Summary: General purpose Vitess helper library
Home-page: https://github.com/spookiej/vitess-helpers
Author: James Stenhouse
Author-email: james.stenhouse@gmail.com
License: MIT
Download-URL: https://github.com/spookiej/vitess-helpers/archive/refs/tags/0.1.0.tar.gz
Description: # vitess-helpers
        This library is intended to be a general library to help manage the lifecycle of a Vitess cluster.
        
        Visit https://vitess.io/ for more information on what Vitess is.
        
        ## shard range library
        Generate shard ranges using python. The library takes a single input `shards` and generates a list of shard range names.
        
        See Vitess documentation for further information:
        
        https://vitess.io/docs/reference/features/sharding/
        
        Example usage:
        ```python
        >>> from vitess_helpers import shard_ranges
        >>> shard_ranges(3)
        ['-55', '55-aa', 'aa-']
        >>>
        ```
        
        ## to install
        
        `pip install vitess-helpers`
        
Keywords: vitess,shard,shard range
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
