heroshot 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.
- heroshot-0.0.1/PKG-INFO +53 -0
- heroshot-0.0.1/README.md +29 -0
- heroshot-0.0.1/heroshot/__init__.py +10 -0
- heroshot-0.0.1/heroshot.egg-info/PKG-INFO +53 -0
- heroshot-0.0.1/heroshot.egg-info/SOURCES.txt +7 -0
- heroshot-0.0.1/heroshot.egg-info/dependency_links.txt +1 -0
- heroshot-0.0.1/heroshot.egg-info/top_level.txt +1 -0
- heroshot-0.0.1/pyproject.toml +33 -0
- heroshot-0.0.1/setup.cfg +4 -0
heroshot-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: heroshot
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Screenshot automation CLI tool
|
|
5
|
+
Author-email: Ondrej <ondre@macha.la>
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://heroshot.sh
|
|
8
|
+
Project-URL: Repository, https://github.com/ondrejbase/heroshot
|
|
9
|
+
Project-URL: Documentation, https://heroshot.sh
|
|
10
|
+
Keywords: screenshot,automation,cli,browser
|
|
11
|
+
Classifier: Development Status :: 1 - Planning
|
|
12
|
+
Classifier: Environment :: Console
|
|
13
|
+
Classifier: Intended Audience :: Developers
|
|
14
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
15
|
+
Classifier: Programming Language :: Python :: 3
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
20
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
21
|
+
Classifier: Topic :: Multimedia :: Graphics :: Capture :: Screen Capture
|
|
22
|
+
Requires-Python: >=3.8
|
|
23
|
+
Description-Content-Type: text/markdown
|
|
24
|
+
|
|
25
|
+
# Heroshot
|
|
26
|
+
|
|
27
|
+
Screenshot automation CLI tool.
|
|
28
|
+
|
|
29
|
+
## Status
|
|
30
|
+
|
|
31
|
+
This Python package is a **placeholder** for the heroshot project. The primary implementation is currently available as:
|
|
32
|
+
|
|
33
|
+
- **npm**: `npx heroshot` - [npmjs.com/package/heroshot](https://www.npmjs.com/package/heroshot)
|
|
34
|
+
- **Docker**: `docker pull heroshot/heroshot`
|
|
35
|
+
- **Website**: [heroshot.sh](https://heroshot.sh)
|
|
36
|
+
|
|
37
|
+
A Python version may be developed in the future.
|
|
38
|
+
|
|
39
|
+
## About
|
|
40
|
+
|
|
41
|
+
Heroshot automates browser screenshots with features like:
|
|
42
|
+
|
|
43
|
+
- Full-page and element-specific captures
|
|
44
|
+
- Multiple device viewports
|
|
45
|
+
- Dark/light mode switching
|
|
46
|
+
- Custom styling injection
|
|
47
|
+
- Batch processing
|
|
48
|
+
|
|
49
|
+
## Links
|
|
50
|
+
|
|
51
|
+
- [Website](https://heroshot.sh)
|
|
52
|
+
- [GitHub](https://github.com/ondrejbase/heroshot)
|
|
53
|
+
- [npm package](https://www.npmjs.com/package/heroshot)
|
heroshot-0.0.1/README.md
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
# Heroshot
|
|
2
|
+
|
|
3
|
+
Screenshot automation CLI tool.
|
|
4
|
+
|
|
5
|
+
## Status
|
|
6
|
+
|
|
7
|
+
This Python package is a **placeholder** for the heroshot project. The primary implementation is currently available as:
|
|
8
|
+
|
|
9
|
+
- **npm**: `npx heroshot` - [npmjs.com/package/heroshot](https://www.npmjs.com/package/heroshot)
|
|
10
|
+
- **Docker**: `docker pull heroshot/heroshot`
|
|
11
|
+
- **Website**: [heroshot.sh](https://heroshot.sh)
|
|
12
|
+
|
|
13
|
+
A Python version may be developed in the future.
|
|
14
|
+
|
|
15
|
+
## About
|
|
16
|
+
|
|
17
|
+
Heroshot automates browser screenshots with features like:
|
|
18
|
+
|
|
19
|
+
- Full-page and element-specific captures
|
|
20
|
+
- Multiple device viewports
|
|
21
|
+
- Dark/light mode switching
|
|
22
|
+
- Custom styling injection
|
|
23
|
+
- Batch processing
|
|
24
|
+
|
|
25
|
+
## Links
|
|
26
|
+
|
|
27
|
+
- [Website](https://heroshot.sh)
|
|
28
|
+
- [GitHub](https://github.com/ondrejbase/heroshot)
|
|
29
|
+
- [npm package](https://www.npmjs.com/package/heroshot)
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: heroshot
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Screenshot automation CLI tool
|
|
5
|
+
Author-email: Ondrej <ondre@macha.la>
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://heroshot.sh
|
|
8
|
+
Project-URL: Repository, https://github.com/ondrejbase/heroshot
|
|
9
|
+
Project-URL: Documentation, https://heroshot.sh
|
|
10
|
+
Keywords: screenshot,automation,cli,browser
|
|
11
|
+
Classifier: Development Status :: 1 - Planning
|
|
12
|
+
Classifier: Environment :: Console
|
|
13
|
+
Classifier: Intended Audience :: Developers
|
|
14
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
15
|
+
Classifier: Programming Language :: Python :: 3
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
20
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
21
|
+
Classifier: Topic :: Multimedia :: Graphics :: Capture :: Screen Capture
|
|
22
|
+
Requires-Python: >=3.8
|
|
23
|
+
Description-Content-Type: text/markdown
|
|
24
|
+
|
|
25
|
+
# Heroshot
|
|
26
|
+
|
|
27
|
+
Screenshot automation CLI tool.
|
|
28
|
+
|
|
29
|
+
## Status
|
|
30
|
+
|
|
31
|
+
This Python package is a **placeholder** for the heroshot project. The primary implementation is currently available as:
|
|
32
|
+
|
|
33
|
+
- **npm**: `npx heroshot` - [npmjs.com/package/heroshot](https://www.npmjs.com/package/heroshot)
|
|
34
|
+
- **Docker**: `docker pull heroshot/heroshot`
|
|
35
|
+
- **Website**: [heroshot.sh](https://heroshot.sh)
|
|
36
|
+
|
|
37
|
+
A Python version may be developed in the future.
|
|
38
|
+
|
|
39
|
+
## About
|
|
40
|
+
|
|
41
|
+
Heroshot automates browser screenshots with features like:
|
|
42
|
+
|
|
43
|
+
- Full-page and element-specific captures
|
|
44
|
+
- Multiple device viewports
|
|
45
|
+
- Dark/light mode switching
|
|
46
|
+
- Custom styling injection
|
|
47
|
+
- Batch processing
|
|
48
|
+
|
|
49
|
+
## Links
|
|
50
|
+
|
|
51
|
+
- [Website](https://heroshot.sh)
|
|
52
|
+
- [GitHub](https://github.com/ondrejbase/heroshot)
|
|
53
|
+
- [npm package](https://www.npmjs.com/package/heroshot)
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
heroshot
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61.0"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "heroshot"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Screenshot automation CLI tool"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.8"
|
|
11
|
+
license = {text = "MIT"}
|
|
12
|
+
authors = [
|
|
13
|
+
{name = "Ondrej", email = "ondre@macha.la"}
|
|
14
|
+
]
|
|
15
|
+
keywords = ["screenshot", "automation", "cli", "browser"]
|
|
16
|
+
classifiers = [
|
|
17
|
+
"Development Status :: 1 - Planning",
|
|
18
|
+
"Environment :: Console",
|
|
19
|
+
"Intended Audience :: Developers",
|
|
20
|
+
"License :: OSI Approved :: MIT License",
|
|
21
|
+
"Programming Language :: Python :: 3",
|
|
22
|
+
"Programming Language :: Python :: 3.8",
|
|
23
|
+
"Programming Language :: Python :: 3.9",
|
|
24
|
+
"Programming Language :: Python :: 3.10",
|
|
25
|
+
"Programming Language :: Python :: 3.11",
|
|
26
|
+
"Programming Language :: Python :: 3.12",
|
|
27
|
+
"Topic :: Multimedia :: Graphics :: Capture :: Screen Capture",
|
|
28
|
+
]
|
|
29
|
+
|
|
30
|
+
[project.urls]
|
|
31
|
+
Homepage = "https://heroshot.sh"
|
|
32
|
+
Repository = "https://github.com/ondrejbase/heroshot"
|
|
33
|
+
Documentation = "https://heroshot.sh"
|
heroshot-0.0.1/setup.cfg
ADDED