Metadata-Version: 2.1
Name: WebSiteCloner
Version: 0.0.1
Summary: This package implement a Web Site Cloner and his HTTP server to launch it.
Home-page: https://github.com/mauricelambert/WebSiteCloner
Author: Maurice Lambert
Author-email: mauricelambert434@gmail.com
License: UNKNOWN
Description: # WebSiteCloner
        
        ## Description
        This package implement a Web Site Cloner and his HTTP server to launch it.
        
        ## Requirements
        This package require :
         - python3
         - python3 Standard Library
        
        ## Installation
        ```bash
        pip install WebSiteCloner
        ```
        
        ## Launcher
        
         - Command line:
         ```bash
         WebSiteCloner -r -d ClonedWebSites -D "localhost:8000" -f "logs.log" -l DEBUG -S http "https://www.google.com/"
         WebClonerServer -f "logs.log" -S Apache -I "172.16.89.53" -H Set-Cookie:1278=1278,Set-Cookie:a=a,Test:haha -P 8000 "www.google.com"
         ```
        
         - Python:
         ```python
         import WebSiteCloner
         copy: WebSiteCloner.WebSiteCloner = WebSiteCloner.WebSiteCloner(
             "https://www.google.com/",
             recursive=True,
             directory="ClonedWebSites",
             replace_domain="localhost:8000",
             replace_scheme="http",
             loglevel=10,
             logfile="logs.log",
         )
         copy.launch()
         ```
        
        ## Links
         - [Github Page](https://github.com/mauricelambert/WebSiteCloner)
         - [Code Documentation WebSiteCloner](https://mauricelambert.github.io/info/python/security/WebSiteCloner/WebSiteCloner.html)
         - [Code Documentation HTTPLogger](https://mauricelambert.github.io/info/python/security/WebSiteCloner/HTTPLogger.html)
         - [Download as python executable](https://mauricelambert.github.io/info/python/security/WebSiteCloner.pyz)
         - [Pypi page](https://pypi.org/project/WebSiteCloner/)
        
        ## Licence
        Licensed under the [GPL, version 3](https://www.gnu.org/licenses/).
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.8
Requires-Python: >=3.6
Description-Content-Type: text/markdown
