Metadata-Version: 2.1
Name: javascriptpy
Version: 1.1.6
Summary: This package lets you use Javascript like objects in python.
Home-page: https://github.com/CodeWithSwastik/javascript-py
Author: Swas.py
Author-email: cwswas.py@gmail.com
License: UNKNOWN
Project-URL: Issue tracker, https://github.com/CodeWithSwastik/javascript-py/issues
Description: # Javascript.py
        
        This package lets you use javascript like objects in python.
        
        ## Installation
        
        Stable version:
        
        ```
        pip install javascriptpy
        ```
        
        Working version:
        
        ```
        pip install git+https://github.com/CodeWithSwastik/javascript-py
        ```
        
        ## Example Usage
        
        ```python
        from javascript import *
        
        array = Array('apple', 'orange', 'cherry')
        index = Math.floor(Math.random() * array.length)
        
        console.info('Random element:', array[index])
        console.table(array)
        ```
        
        ## Console
        
        ```py
        from javascript import console, Array
        
        console.clear()
        console.error("Syntax Error!")
        console.warn("Forgot an import!")
        console.table(Array(['earth', 'venus']))
        ```
        
        ![image](https://user-images.githubusercontent.com/61446939/126521684-669e4dd5-4263-4c5e-9cce-9c0e097759e3.png)
        
        ## What's new?
        
        - Added RegExp, Date, JSON
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Internet
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Utilities
Requires-Python: >=3.6
Description-Content-Type: text/markdown
