Metadata-Version: 2.4
Name: tilion-fortress
Version: 151.0.7908.0
Summary: Install and drive the Fortress stealth Chromium engine. Prebuilt binary, no source.
Author: arham766
License: BSD-3-Clause
Project-URL: Homepage, https://github.com/tiliondev/fortress
Project-URL: Source, https://github.com/tiliondev/fortress
Keywords: chromium,stealth,browser,automation,anti-bot,fortress,tilion
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# tilion-fortress (Python)

Install and drive the **Fortress** stealth browser — no build, no source.

```bash
pip install tilion-fortress
```

On first use it downloads the prebuilt Fortress binary for your platform from the
official GitHub Release (verified by SHA-256) and caches it. No Chromium source,
no compilation.

```python
from tilion_fortress import Fortress

with Fortress() as f:                       # launches headless + a CDP endpoint
    print(f.cdp_url)                         # ws://127.0.0.1:<port>/devtools/browser/...
    # drive it with your favourite CDP client:
    from playwright.sync_api import sync_playwright
    with sync_playwright() as p:
        browser = p.chromium.connect_over_cdp(f.cdp_url)
        page = browser.new_page()
        page.goto("https://abrahamjuliot.github.io/creepjs/")
```

Custom persona / extra flags:

```python
Fortress(persona={"timezone": "America/Chicago", "languages": "en-GB,en"},
         extra_args=["--window-size=1280,800"])
```

> Linux x64 has a native prebuilt. On macOS/Windows the package transparently runs
> Fortress via the official Docker image (`arham766/fortress`) — Docker is the
> cross-OS vehicle until native Win/Mac builds ship.
