Metadata-Version: 2.1
Name: cloneui
Version: 0.1.2
Summary: CloneUI is a Python library designed to clone a webpage into a structured folder format effortlessly.
Home-page: https://github.com/yourusername/cloneui
Author: Dhruv Ahir
Author-email: incnogeto@gmail.com
License: MIT
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
Requires-Dist: requests
Requires-Dist: beautifulsoup4

Sure! Here's the updated version of the README with the name changed to **CloneUI**:

---

# CloneUI

CloneUI is a Python library designed to clone a webpage into a structured folder format effortlessly. With CloneUI, you can easily download and save a webpage with its resources like images, CSS, and JavaScript files, organized in a folder structure.

## Installation

To install CloneUI, use pip:

```bash
pip install cloneui
```

## Usage

### Basic Example

Here is how you can use CloneUI to clone a webpage:

```python
from cloneui import CloneUI

# Provide the URL of the webpage you want to clone
url = "https://example.com"

# Download and save the webpage in a structured folder format
CloneUI.download_webpage(url)
```

### Functionality

1. **Cloning a webpage**: This function downloads the webpage and all its resources, organizing them into a folder structure that replicates the page’s elements.
2. **URL Support**: You can use any valid URL to clone the webpage.

## How It Works

CloneUI downloads the HTML, CSS, JavaScript, and image files associated with the webpage. It then organizes these resources into a folder structure, making it easy to view and access them locally.

- The HTML content is saved in the main folder.
- CSS, JavaScript, and image files are placed in respective subdirectories.
- All resources are linked correctly to match the structure of the original webpage.

## Contributing

We welcome contributions! If you'd like to help improve CloneUI, feel free to submit a pull request or open an issue with any suggestions or bug reports.

## License

This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.

---

You can now use this updated README file in your project. Just replace your existing `README.md` content with the one above, and it will reflect the changes with the new name **CloneUI**.

Let me know if you need further modifications or have additional questions!
