Metadata-Version: 2.1
Name: rangev2
Version: 0.1.1
Summary: A new version of python range
Home-page: https://github.com/co18326/rangev2
Author: Ishan Gambhir
Author-email: ishugambhir2001@gmail.com
License: MIT
Download-URL: https://github.com/CO18326/rangev2/archive/V_0.1.1.tar.gz
Description: # rangev2
        
        
        
        rangev2 is next version of popular range class of python, which enables you to produce lists even by using *,/,// and % operators along with +,- operators.
        
          - The syntax is nearly similar to the privious versions
          - Little modification is that step (third parametr) is now string containing operand and operator
          - Example : 
        ```sh
        >>> new_range(8,100,'*9')
        >>> [8,72]
        ```
        # New Features!
        
          - print(new_range(begin,end,step)) will now print the entire list
          - example 
        ```sh
        >>> print(new_range(100,1,'//3')
        >>> [100, 33, 11, 3]
        ```
          - the default values for begin and step are 0 and '+1' respectively.
          - in operator is overloaded: 
        ```sh  
        >>> 3 in new_range(4) 
        >>> True.
        ```
          - the list generated can also be accessed via list argument
          - example : 
         ```sh
        >>> new_range(6).list
        >>> [0,1,2,3,4,5]
        ```
        
        ### Installation
        
        ```sh
        pip install rangev2
        ```
        
        
        
        License
        ----
        
        MIT
        
        Contribute
        ---
        
        All ways welcome good contributions, keeping the target to make it core functionality of python
        
        
        
        
          
        
Keywords: range,latest,beginer,library,gp,agp
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
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Description-Content-Type: text/markdown
