nowyourlink 0.2.0__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,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Arne Kellmann
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,27 @@
1
+ Metadata-Version: 2.4
2
+ Name: nowyourlink
3
+ Version: 0.2.0
4
+ Summary: Official nowyourlink command-line client: read the current and archived public Spotlights
5
+ License-Expression: MIT
6
+ Project-URL: Homepage, https://nowyourlink.com
7
+ Project-URL: Documentation, https://nowyourlink.com/developers
8
+ Project-URL: Repository, https://github.com/ArneFfm/nowyourlink-agent-kit
9
+ Project-URL: Issues, https://github.com/ArneFfm/nowyourlink-agent-kit/issues
10
+ Requires-Python: >=3.10
11
+ Description-Content-Type: text/markdown
12
+ License-File: LICENSE
13
+ Requires-Dist: nowyourlink-spotlights==0.2.0
14
+ Dynamic: license-file
15
+
16
+ # nowyourlink CLI
17
+
18
+ Official command-line client for the public nowyourlink Spotlight API. It installs the `nowyourlink` command and depends on the `nowyourlink-spotlights` SDK; both are MIT-licensed and read only public, settled advertising data without credentials.
19
+
20
+ ```bash
21
+ python -m pip install nowyourlink
22
+ nowyourlink current
23
+ nowyourlink list --limit 5
24
+ nowyourlink day 2026-09-01
25
+ ```
26
+
27
+ Results are JSON on stdout. Usage errors exit with code 2. See https://nowyourlink.com/developers for the API contract and https://github.com/ArneFfm/nowyourlink-agent-kit for source.
@@ -0,0 +1,12 @@
1
+ # nowyourlink CLI
2
+
3
+ Official command-line client for the public nowyourlink Spotlight API. It installs the `nowyourlink` command and depends on the `nowyourlink-spotlights` SDK; both are MIT-licensed and read only public, settled advertising data without credentials.
4
+
5
+ ```bash
6
+ python -m pip install nowyourlink
7
+ nowyourlink current
8
+ nowyourlink list --limit 5
9
+ nowyourlink day 2026-09-01
10
+ ```
11
+
12
+ Results are JSON on stdout. Usage errors exit with code 2. See https://nowyourlink.com/developers for the API contract and https://github.com/ArneFfm/nowyourlink-agent-kit for source.
@@ -0,0 +1,27 @@
1
+ Metadata-Version: 2.4
2
+ Name: nowyourlink
3
+ Version: 0.2.0
4
+ Summary: Official nowyourlink command-line client: read the current and archived public Spotlights
5
+ License-Expression: MIT
6
+ Project-URL: Homepage, https://nowyourlink.com
7
+ Project-URL: Documentation, https://nowyourlink.com/developers
8
+ Project-URL: Repository, https://github.com/ArneFfm/nowyourlink-agent-kit
9
+ Project-URL: Issues, https://github.com/ArneFfm/nowyourlink-agent-kit/issues
10
+ Requires-Python: >=3.10
11
+ Description-Content-Type: text/markdown
12
+ License-File: LICENSE
13
+ Requires-Dist: nowyourlink-spotlights==0.2.0
14
+ Dynamic: license-file
15
+
16
+ # nowyourlink CLI
17
+
18
+ Official command-line client for the public nowyourlink Spotlight API. It installs the `nowyourlink` command and depends on the `nowyourlink-spotlights` SDK; both are MIT-licensed and read only public, settled advertising data without credentials.
19
+
20
+ ```bash
21
+ python -m pip install nowyourlink
22
+ nowyourlink current
23
+ nowyourlink list --limit 5
24
+ nowyourlink day 2026-09-01
25
+ ```
26
+
27
+ Results are JSON on stdout. Usage errors exit with code 2. See https://nowyourlink.com/developers for the API contract and https://github.com/ArneFfm/nowyourlink-agent-kit for source.
@@ -0,0 +1,9 @@
1
+ LICENSE
2
+ README.md
3
+ pyproject.toml
4
+ nowyourlink.egg-info/PKG-INFO
5
+ nowyourlink.egg-info/SOURCES.txt
6
+ nowyourlink.egg-info/dependency_links.txt
7
+ nowyourlink.egg-info/entry_points.txt
8
+ nowyourlink.egg-info/requires.txt
9
+ nowyourlink.egg-info/top_level.txt
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ nowyourlink = nowyourlink_spotlights:main
@@ -0,0 +1 @@
1
+ nowyourlink-spotlights==0.2.0
@@ -0,0 +1,25 @@
1
+ [build-system]
2
+ requires = ["setuptools>=77"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "nowyourlink"
7
+ version = "0.2.0"
8
+ description = "Official nowyourlink command-line client: read the current and archived public Spotlights"
9
+ readme = "README.md"
10
+ requires-python = ">=3.10"
11
+ dependencies = ["nowyourlink-spotlights==0.2.0"]
12
+ license = "MIT"
13
+ license-files = ["LICENSE"]
14
+
15
+ [project.scripts]
16
+ nowyourlink = "nowyourlink_spotlights:main"
17
+
18
+ [project.urls]
19
+ Homepage = "https://nowyourlink.com"
20
+ Documentation = "https://nowyourlink.com/developers"
21
+ Repository = "https://github.com/ArneFfm/nowyourlink-agent-kit"
22
+ Issues = "https://github.com/ArneFfm/nowyourlink-agent-kit/issues"
23
+
24
+ [tool.setuptools]
25
+ packages = []
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+