Metadata-Version: 2.1
Name: WebScripts
Version: 0.1.4
Summary: This package implements a web server to run scripts or  executables from the command line and display the result in a web interface.
Home-page: https://github.com/mauricelambert/WebScripts
Author: Maurice Lambert
Author-email: mauricelambert434@gmail.com
Maintainer: Maurice Lambert
Maintainer-email: mauricelambert434@gmail.com
License: GPL-3.0 License
Project-URL: Documentation, https://github.com/mauricelambert/WebScripts/wiki
Description: # WebScripts
        
        ## Description
        This package implements a web server to run scripts or executables from the command line and display the result in a web interface.
        
        ## Requirements
        This package require:
         - python3
         - python3 Standard Library
        
        Optional on Windows:
         - pywin32 (to centralize logs in Event Viewer)
        
        ## Installation
        
        ```bash
        pip install WebScripts
        ```
        
        ## Basic Usages
        
        ### Command line
        
        ```bash
        WebScripts
        python3 -m WebScripts
        
        WebScripts --help
        WebScripts -h # Print help message and command line options
        
        WebScripts --interface "192.168.1.2" --port 80
        WebScripts -i "192.168.1.2" -p 80 # Change interface and port
        
        # /!\ do not use the --debug option on the production environment
        WebScripts --debug
        WebScripts -d # Print informations about server configuration in errors pages (404 and 500)
        
        # /!\ do not use the --security option on the production environment
        WebScripts --security
        WebScripts -s # Do not use HTTP security headers (for debugging)
        
        WebScripts --accept-unauthenticated-user --accept-unknow-user
        # Accept unauthenticated user
        ```
        
        ### Python script
        
        ```python
        import WebScripts
        WebScripts.main()
        ```
        
        ```python
        from WebScripts import Configuration, Server, main
        from wsgiref import simple_server
        
        config = Configuration()
        config.add_conf(
            interface="", 
            port=8000, 
            scripts_path = [
                "./scripts/account",
                "./scripts/passwords"
            ],
            json_scripts_config = [
                "./config/scripts/*.json"
            ],
            ini_scripts_config = [
                "./config/scripts/*.ini"
            ],
            documentations_path = [
                "./doc/*.html"
            ],
            js_path = [
                "./static/js/*.js"
            ],
            statics_path = [
                "./static/html/*.html",
                "./static/css/*.css",
                "./static/images/*.jpg",
                "./static/pdf/*.pdf"
            ],
        )
        config.set_defaults()
        config.check_required()
        config.get_unexpecteds()
        config.build_types()
        
        server = Server(config)
        httpd = simple_server.make_server(server.interface, server.port, server.app)
        httpd.serve_forever()
        ```
        
        ## Documentation
        
        ### Wiki
         - [Installation](https://github.com/mauricelambert/WebScripts/wiki/Installation)
         - [Usages](https://github.com/mauricelambert/WebScripts/wiki/Usages)
         - [Server Configuration](https://github.com/mauricelambert/WebScripts/wiki/Server-Configuration)
         - [Script Configuration](https://github.com/mauricelambert/WebScripts/wiki/Script-Configuration)
         - [Argument Configuration](https://github.com/mauricelambert/WebScripts/wiki/Argument-Configuration)
         - [Logs](https://github.com/mauricelambert/WebScripts/wiki/Logs)
         - [Authentication](https://github.com/mauricelambert/WebScripts/wiki/Authentication)
         - [Default Database](https://github.com/mauricelambert/WebScripts/wiki/Default-Database)
         - [Security Considerations](https://github.com/mauricelambert/WebScripts/wiki/Security-Considerations)
         - [API](https://github.com/mauricelambert/WebScripts/wiki/API)
         - [Custom WEB Interface](https://github.com/mauricelambert/WebScripts/wiki/WEB-Interface)
         - [Modules (Custom responses and code)](https://github.com/mauricelambert/WebScripts/wiki/Modules)
         - [Security checks and tests (pentest tools)](https://github.com/mauricelambert/WebScripts/wiki/Pentest)
        
        ### Examples
        
         - [Deployment (using virtual environment and NGINX as proxy HTTPS)](https://github.com/mauricelambert/WebScripts/wiki/Deployment)
         - [Add a bash script (for authentication)](https://github.com/mauricelambert/WebScripts/wiki/Add-Script)
         - [Add a module](https://github.com/mauricelambert/WebScripts/wiki/Add-Module)
         - [Make a custom API client](https://github.com/mauricelambert/WebScripts/wiki/API-Client)
        
        ### PyDoc
         - [Index](https://mauricelambert.github.io/info/python/code/WebScripts/)
         - [WebScripts](https://mauricelambert.github.io/info/python/code/WebScripts/WebScripts.html)
         - [Pages](https://mauricelambert.github.io/info/python/code/WebScripts/Pages.html)
         - [commons](https://mauricelambert.github.io/info/python/code/WebScripts/commons.html)
         - [utils](https://mauricelambert.github.io/info/python/code/WebScripts/utils.html)
         - [Errors](https://mauricelambert.github.io/info/python/code/WebScripts/Errors.html)
         - [Default Database Manager](https://mauricelambert.github.io/info/python/code/WebScripts/manage_defaults_databases.html)
         - [Default Upload Manager](https://mauricelambert.github.io/info/python/code/WebScripts/uploads_management.html)
        
        ## Links
         - [Pypi](https://pypi.org/project/WebScripts)
         - [Github](https://github.com/mauricelambert/WebScripts)
        
        ## Pictures
        
        ![Index page (dark)](https://mauricelambert.github.io/info/python/code/WebScripts/images/WebScripts_dark_mode_index.JPG "Index page (dark)")
        ![Text script (dark)](https://mauricelambert.github.io/info/python/code/WebScripts/images/WebScripts_dark_mode_script_text.JPG "Text script (dark)")
        ![HTML script (light)](https://mauricelambert.github.io/info/python/code/WebScripts/images/WebScripts_light_mode_script_html.JPG "HTML script (light)")
        
        ## License
        Licensed under the [GPL, version 3](https://www.gnu.org/licenses/).
        
Keywords: Server,Web,Scripts,SOC,Administration,DevOps,WebScripts
Platform: Windows
Platform: Linux
Platform: MacOS
Classifier: Programming Language :: Python
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI :: Server
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3.9
Requires-Python: >=3.6
Description-Content-Type: text/markdown
