Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions legacy-web-hacker/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# web-hacker → bluebox-sdk

**This package has been renamed to `bluebox-sdk`.**

## Migration

```bash
pip uninstall web-hacker
pip install bluebox-sdk
```

Then update your imports:

```python
# Old
from web_hacker import ...

# New
from bluebox import ...
```

## About bluebox-sdk

SDK for reverse engineering web apps. See the [bluebox-sdk repository](https://github.com/VectorlyApp/bluebox-sdk) for documentation and updates.
22 changes: 22 additions & 0 deletions legacy-web-hacker/pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"

[project]
name = "web-hacker"
version = "1.3.2"
description = "Renamed to bluebox-sdk. This package is a compatibility shim."
readme = "README.md"
requires-python = ">=3.12"
license = {text = "Apache-2.0"}
authors = [
{name = "Vectorly", email = "contact@vectorly.app"}
]
dependencies = ["bluebox-sdk>=1.3.1"]

[project.urls]
Homepage = "https://vectorly.app"
Repository = "https://github.com/VectorlyApp/bluebox-sdk"

[tool.hatch.build.targets.wheel]
packages = ["web_hacker"]
11 changes: 11 additions & 0 deletions legacy-web-hacker/web_hacker/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import warnings

warnings.warn(
"web-hacker has been renamed to bluebox-sdk. "
"Please update: pip install bluebox-sdk",
DeprecationWarning,
stacklevel=2,
)

# Re-export everything from bluebox for backward compatibility
from bluebox import *
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,9 @@ bluebox-execute = "bluebox.scripts.execute_routine:main"

[project.urls]
Homepage = "https://vectorly.app"
Documentation = "https://github.com/VectorlyApp/bluebox#readme"
Repository = "https://github.com/VectorlyApp/bluebox"
Issues = "https://github.com/VectorlyApp/bluebox/issues"
Documentation = "https://github.com/VectorlyApp/bluebox-sdk#readme"
Repository = "https://github.com/VectorlyApp/bluebox-sdk"
Issues = "https://github.com/VectorlyApp/bluebox-sdk/issues"

[tool.hatch.build.targets.wheel]
packages = ["bluebox"]
Expand Down