Skip to main content
Glama
webclone-gui.pyโ€ข1.5 kB
#!/usr/bin/env python3 """ WebClone GUI Launcher Simple launcher script for the WebClone enterprise desktop GUI. Double-click this file or run from command line. Author: Ruslan Magana Website: ruslanmv.com """ import sys from pathlib import Path def main() -> None: """Launch the WebClone GUI.""" print("=" * 70) print("๐ŸŒ WebClone - Professional Website Cloning Engine") print("=" * 70) print() print("๐Ÿš€ Starting Enterprise Desktop GUI...") print("=" * 70) print() # Add src directory to path src_path = Path(__file__).parent / "src" if not src_path.exists(): print(f"โŒ Error: Could not find src directory at {src_path}") print("Make sure you're running this from the WebClone root directory.") sys.exit(1) sys.path.insert(0, str(src_path)) try: # Import and launch the GUI from webclone.gui.tkinter_app import WebCloneGUI app = WebCloneGUI() app.run() except ImportError as e: print("โŒ Error: Could not import GUI module!") print() print(f"Details: {e}") print() print("Please install GUI dependencies:") print(" make install-gui") print() print("Or manually:") print(" pip install ttkbootstrap") sys.exit(1) except Exception as e: print(f"\nโŒ Error: {e}") import traceback traceback.print_exc() sys.exit(1) if __name__ == "__main__": main()

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/ruslanmv/webclone'

If you have feedback or need assistance with the MCP directory API, please join our Discord server