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.
@@ -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,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,10 @@
1
+ """
2
+ Heroshot - Screenshot automation CLI tool.
3
+
4
+ This is a placeholder package. The primary implementation is available via npm:
5
+ npx heroshot
6
+
7
+ For more information, visit https://heroshot.sh
8
+ """
9
+
10
+ __version__ = "0.0.1"
@@ -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,7 @@
1
+ README.md
2
+ pyproject.toml
3
+ heroshot/__init__.py
4
+ heroshot.egg-info/PKG-INFO
5
+ heroshot.egg-info/SOURCES.txt
6
+ heroshot.egg-info/dependency_links.txt
7
+ heroshot.egg-info/top_level.txt
@@ -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"
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+