plasmate 0.0.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- plasmate-0.0.1/PKG-INFO +29 -0
- plasmate-0.0.1/README.md +11 -0
- plasmate-0.0.1/pyproject.toml +27 -0
- plasmate-0.0.1/src/plasmate/__init__.py +2 -0
- plasmate-0.0.1/uv.lock +8 -0
plasmate-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: plasmate
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: The agent-native headless browser engine. Replaces CDP with AWP, DOM with SOM.
|
|
5
|
+
Project-URL: Homepage, https://plasmate.app
|
|
6
|
+
Project-URL: Repository, https://github.com/dbhurley/plasmate
|
|
7
|
+
Author: DBH Ventures
|
|
8
|
+
License-Expression: Apache-2.0
|
|
9
|
+
Keywords: agent,ai,automation,awp,browser,headless,som
|
|
10
|
+
Classifier: Development Status :: 1 - Planning
|
|
11
|
+
Classifier: Intended Audience :: Developers
|
|
12
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
13
|
+
Classifier: Programming Language :: Python :: 3
|
|
14
|
+
Classifier: Topic :: Internet :: WWW/HTTP :: Browsers
|
|
15
|
+
Classifier: Topic :: Software Development :: Libraries
|
|
16
|
+
Requires-Python: >=3.9
|
|
17
|
+
Description-Content-Type: text/markdown
|
|
18
|
+
|
|
19
|
+
# Plasmate
|
|
20
|
+
|
|
21
|
+
The agent-native headless browser engine.
|
|
22
|
+
|
|
23
|
+
- **AWP** (Agent Web Protocol) replaces CDP
|
|
24
|
+
- **SOM** (Semantic Object Model) replaces DOM dumps
|
|
25
|
+
- **Wasm Skills** for community-extensible site automation
|
|
26
|
+
|
|
27
|
+
Built in Rust. Open source (Apache 2.0).
|
|
28
|
+
|
|
29
|
+
https://plasmate.app
|
plasmate-0.0.1/README.md
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# Plasmate
|
|
2
|
+
|
|
3
|
+
The agent-native headless browser engine.
|
|
4
|
+
|
|
5
|
+
- **AWP** (Agent Web Protocol) replaces CDP
|
|
6
|
+
- **SOM** (Semantic Object Model) replaces DOM dumps
|
|
7
|
+
- **Wasm Skills** for community-extensible site automation
|
|
8
|
+
|
|
9
|
+
Built in Rust. Open source (Apache 2.0).
|
|
10
|
+
|
|
11
|
+
https://plasmate.app
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "plasmate"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "The agent-native headless browser engine. Replaces CDP with AWP, DOM with SOM."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = "Apache-2.0"
|
|
11
|
+
requires-python = ">=3.9"
|
|
12
|
+
keywords = ["browser", "headless", "agent", "ai", "automation", "awp", "som"]
|
|
13
|
+
authors = [
|
|
14
|
+
{name = "DBH Ventures"}
|
|
15
|
+
]
|
|
16
|
+
classifiers = [
|
|
17
|
+
"Development Status :: 1 - Planning",
|
|
18
|
+
"Intended Audience :: Developers",
|
|
19
|
+
"License :: OSI Approved :: Apache Software License",
|
|
20
|
+
"Programming Language :: Python :: 3",
|
|
21
|
+
"Topic :: Internet :: WWW/HTTP :: Browsers",
|
|
22
|
+
"Topic :: Software Development :: Libraries"
|
|
23
|
+
]
|
|
24
|
+
|
|
25
|
+
[project.urls]
|
|
26
|
+
Homepage = "https://plasmate.app"
|
|
27
|
+
Repository = "https://github.com/dbhurley/plasmate"
|