Metadata-Version: 2.1
Name: webpic
Version: 0.1.0
Summary: Automate screenshot taking
Home-page: https://github.com/Muxutruk2/uglify
Author: Muxutruk
Author-email: 156070698+Muxutruk2@users.noreply.github.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.12
Description-Content-Type: text/markdown
Requires-Dist: click
Requires-Dist: playwright

# Webshot

Webshot fixes the issue of having to open ports on develepment websites to show the website to your friends.

## Installation

Install via pip:
```bash
pip install webpic      
```

## Usage

Usage: webpic [OPTIONS] HOSTNAME SAVEPATH [URLS]...

Options:
  -f, --file PATH  File containing URLs separated by newlines.

### Examples

Let's say you have a django development server in your local machine with 2 urls: /home and /help and you want to save them in "screenshots"

```bash
webpic http://127.0.0.1:8000 ./screenshots home help
```

Or, if you have a long list of urls, put them in a file with the urls separated by new lines and run

```bash
webpic -f urls.txt http://127.0.0.1:8000 ./screenshots 
```
