Skip to content

Commit

Permalink
docs: Add Russian documentation link and update title
Browse files Browse the repository at this point in the history
  • Loading branch information
neiromaster committed Jan 15, 2025
1 parent d5ace01 commit b13a4d3
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 17 deletions.
27 changes: 11 additions & 16 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

This script allows you to extract unique domains visited when browsing a given URL in a browser. It uses Playwright to open a browser, allows user interaction, and then saves the visited domains to a file.

- [Русская документация](docs/README_ru.md)

## Features

- Opens a URL in a browser.
Expand Down Expand Up @@ -56,22 +58,15 @@ uvx domain-collector https://www.wikipedia.org
```

This will open the Wikipedia homepage in a browser. After you interact with the page and close the browser, the script will save the visited domains to a file named `wikipedia_org_domains.txt`.
+
+## Cleanup
+
+To remove all artifacts, you can use the following commands:
+
+```bash
+uvx domain-collector https://www.wikipedia.org
+```
+
+This will open the Wikipedia homepage in a browser. After you interact with the page and close the browser, the script will save the visited domains to a file named `wikipedia_org_domains.txt`.
+
+```bash
+uvx playwright uninstall --all
+uv cache clean # Use with caution, this will remove all uv cache
+```
+

## Cleanup

To remove all artifacts, you can use the following commands:

```bash
uvx playwright uninstall --all
uv cache clean # Use with caution, this will remove all uv cache
```

## Dependencies

Expand Down
2 changes: 1 addition & 1 deletion docs/README.ru.md → docs/README_ru.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Сборщик доменов
# Сборщик доменов (Domain Collector)

Этот скрипт позволяет извлекать уникальные домены, посещенные при просмотре заданного URL в браузере. Он использует Playwright для открытия браузера, обеспечивает взаимодействие с пользователем, а затем сохраняет посещенные домены в файл.

Expand Down

0 comments on commit b13a4d3

Please sign in to comment.