Metadata-Version: 2.1
Name: wayscript
Version: 0.0.1
Summary: WayScript gives you flexible building blocks to seamlessly integrate, automate and host tools in the cloud.
Home-page: https://github.com/wayscript/wayscript-python
Author: Team WayScript
Author-email: founders@wayscript.com
License: MIT
Description: # [<img src="https://user-images.githubusercontent.com/31461850/53454621-a1b39500-39dc-11e9-9b3c-276451d42437.png" width="155px" alt="WayScript" align="center">](https://wayscript.com) Python SDK
        
        [![CircleCI](https://circleci.com/gh/wayscript/wayscript-python/tree/master.svg?style=shield)](https://circleci.com/gh/wayscript/wayscript-python/tree/master)
        
        ### A new way to build software.
        
        * WayScript gives you flexible building blocks to seamlessly integrate, automate and host tools in the cloud. Unlock new potential with drag and drop programming.
        
        * Instantly connect to hundreds of datasets including GitHub, Twitter, databases, ecommerce data, or build your own integration. WayScript can read data from Excel, Google Sheets, and an evergrowing list of third-party APIs.
        
        * Seamlessly migrate to the cloud: Generate interfaces, instantly share, and run via event-based triggering. 
        
        ## Installation
        
        ```sh
        pip install wayscript
        ```
        
        ## Basic Usage
        
        1. Get the API Key from your WayScript user profile page
        
        2. Run your WayScript programs from your Python code:
        
        ```python
        from wayscript import WayScript
        
        api_key = 'YOUR_API_KEY'
        
        wayscript = WayScript( api_key )
        
        # Run a program by id
        program_id = 1234
        wayscript.run_program( program_id )
        
        # Pass variables to a program
        variables = [ 'one', 'two', 'three' ]
        wayscript.run_program( program_id, variables = variables )
        
        # Run a program asynchronously
        wayscript.run_program( program_id, run_async = True )
        wayscript.run_program( program_id, variables = variables, run_async = True )
        
        # Get the response from the server
        response = wayscript.run_program( program_id )
        ```
        
Keywords: wayscript,productivity,software,superpowers,scripts,cloud,tools,backend,visual,low-code,modules,trigger
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: End Users/Desktop
Classifier: Intended Audience :: Science/Research
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Communications
Classifier: Topic :: Database
Classifier: Topic :: Office/Business
Classifier: Topic :: Utilities
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Natural Language :: English
Description-Content-Type: text/markdown
