hotin 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.
- hotin-0.2.0/LICENSE +190 -0
- hotin-0.2.0/NOTICE +8 -0
- hotin-0.2.0/PKG-INFO +137 -0
- hotin-0.2.0/README.md +114 -0
- hotin-0.2.0/pyproject.toml +40 -0
- hotin-0.2.0/setup.cfg +4 -0
- hotin-0.2.0/src/hotin/__init__.py +3 -0
- hotin-0.2.0/src/hotin/__main__.py +8 -0
- hotin-0.2.0/src/hotin/board.py +198 -0
- hotin-0.2.0/src/hotin/cache.py +379 -0
- hotin-0.2.0/src/hotin/canonical.py +59 -0
- hotin-0.2.0/src/hotin/categories.py +64 -0
- hotin-0.2.0/src/hotin/cli.py +1015 -0
- hotin-0.2.0/src/hotin/coerce.py +31 -0
- hotin-0.2.0/src/hotin/config.py +97 -0
- hotin-0.2.0/src/hotin/dedupe.py +34 -0
- hotin-0.2.0/src/hotin/engine.py +505 -0
- hotin-0.2.0/src/hotin/health.py +29 -0
- hotin-0.2.0/src/hotin/render.py +48 -0
- hotin-0.2.0/src/hotin/render_board.py +196 -0
- hotin-0.2.0/src/hotin/schedule.py +128 -0
- hotin-0.2.0/src/hotin/sources/__init__.py +1 -0
- hotin-0.2.0/src/hotin/sources/_hf.py +42 -0
- hotin-0.2.0/src/hotin/sources/collections.py +204 -0
- hotin-0.2.0/src/hotin/sources/frontier.py +183 -0
- hotin-0.2.0/src/hotin/sources/github.py +263 -0
- hotin-0.2.0/src/hotin/sources/hfmodels.py +118 -0
- hotin-0.2.0/src/hotin/sources/hfpapers.py +162 -0
- hotin-0.2.0/src/hotin/sources/hn.py +288 -0
- hotin-0.2.0/src/hotin/sources/insiders.py +210 -0
- hotin-0.2.0/src/hotin/sources/npm.py +293 -0
- hotin-0.2.0/src/hotin/sources/reddit.py +262 -0
- hotin-0.2.0/src/hotin/sources/smartmoney.py +247 -0
- hotin-0.2.0/src/hotin/sources/smolai.py +178 -0
- hotin-0.2.0/src/hotin/sources/trends.py +227 -0
- hotin-0.2.0/src/hotin/sources/x.py +25 -0
- hotin-0.2.0/src/hotin/sources/youtube.py +501 -0
- hotin-0.2.0/src/hotin/throttle.py +42 -0
- hotin-0.2.0/src/hotin.egg-info/PKG-INFO +137 -0
- hotin-0.2.0/src/hotin.egg-info/SOURCES.txt +63 -0
- hotin-0.2.0/src/hotin.egg-info/dependency_links.txt +1 -0
- hotin-0.2.0/src/hotin.egg-info/entry_points.txt +2 -0
- hotin-0.2.0/src/hotin.egg-info/top_level.txt +1 -0
- hotin-0.2.0/tests/test_cache.py +227 -0
- hotin-0.2.0/tests/test_canonical.py +40 -0
- hotin-0.2.0/tests/test_categories.py +21 -0
- hotin-0.2.0/tests/test_cli.py +462 -0
- hotin-0.2.0/tests/test_config.py +74 -0
- hotin-0.2.0/tests/test_engine.py +404 -0
- hotin-0.2.0/tests/test_health.py +37 -0
- hotin-0.2.0/tests/test_render.py +44 -0
- hotin-0.2.0/tests/test_render_board.py +98 -0
- hotin-0.2.0/tests/test_schedule.py +35 -0
- hotin-0.2.0/tests/test_source_collections.py +76 -0
- hotin-0.2.0/tests/test_source_frontier.py +54 -0
- hotin-0.2.0/tests/test_source_github.py +192 -0
- hotin-0.2.0/tests/test_source_hn.py +207 -0
- hotin-0.2.0/tests/test_source_insiders.py +86 -0
- hotin-0.2.0/tests/test_source_npm.py +170 -0
- hotin-0.2.0/tests/test_source_reddit.py +173 -0
- hotin-0.2.0/tests/test_source_smartmoney.py +78 -0
- hotin-0.2.0/tests/test_source_trends.py +94 -0
- hotin-0.2.0/tests/test_source_x.py +14 -0
- hotin-0.2.0/tests/test_source_youtube.py +278 -0
- hotin-0.2.0/tests/test_throttle.py +60 -0
hotin-0.2.0/LICENSE
ADDED
|
@@ -0,0 +1,190 @@
|
|
|
1
|
+
Apache License
|
|
2
|
+
Version 2.0, January 2004
|
|
3
|
+
http://www.apache.org/licenses/
|
|
4
|
+
|
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
6
|
+
|
|
7
|
+
1. Definitions.
|
|
8
|
+
|
|
9
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
10
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
11
|
+
|
|
12
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
13
|
+
the copyright owner that is granting the License.
|
|
14
|
+
|
|
15
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
16
|
+
other entities that control, are controlled by, or are under common
|
|
17
|
+
control with that entity. For the purposes of this definition,
|
|
18
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
19
|
+
direction or management of such entity, whether by contract or
|
|
20
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
21
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
22
|
+
|
|
23
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
24
|
+
exercising permissions granted by this License.
|
|
25
|
+
|
|
26
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
27
|
+
including but not limited to software source code, documentation
|
|
28
|
+
source, and configuration files.
|
|
29
|
+
|
|
30
|
+
"Object" form shall mean any form resulting from mechanical
|
|
31
|
+
transformation or translation of a Source form, including but
|
|
32
|
+
not limited to compiled object code, generated documentation,
|
|
33
|
+
and conversions to other media types.
|
|
34
|
+
|
|
35
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
36
|
+
Object form, made available under the License, as indicated by a
|
|
37
|
+
copyright notice that is included in or attached to the work
|
|
38
|
+
(an example is provided in the Appendix below).
|
|
39
|
+
|
|
40
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
41
|
+
form, that is based on (or derived from) the Work and for which the
|
|
42
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
43
|
+
represent, as a whole, an original work of authorship. For the
|
|
44
|
+
purposes of this License, Derivative Works shall not include works
|
|
45
|
+
that remain separable from, or merely link (or bind by name) to the
|
|
46
|
+
interfaces of, the Work and Derivative Works thereof.
|
|
47
|
+
|
|
48
|
+
"Contribution" shall mean any work of authorship, including the
|
|
49
|
+
original version of the Work and any modifications or additions
|
|
50
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
51
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
52
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
53
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
54
|
+
means any form of electronic, verbal, or written communication sent
|
|
55
|
+
to the Licensor or its representatives, including but not limited to
|
|
56
|
+
communication on electronic mailing lists, source code control systems,
|
|
57
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
58
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
59
|
+
excluding communication that is conspicuously marked or otherwise
|
|
60
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
61
|
+
|
|
62
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
63
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
64
|
+
subsequently incorporated within the Work.
|
|
65
|
+
|
|
66
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
67
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
68
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
69
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
70
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
71
|
+
Work and such Derivative Works in Source or Object form.
|
|
72
|
+
|
|
73
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
74
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
75
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
76
|
+
(except as stated in this section) patent license to make, have made,
|
|
77
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
78
|
+
where such license applies only to those patent claims licensable
|
|
79
|
+
by such Contributor that are necessarily infringed by their
|
|
80
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
81
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
82
|
+
institute patent litigation against any entity (including a
|
|
83
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
84
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
85
|
+
or contributory patent infringement, then any patent licenses
|
|
86
|
+
granted to You under this License for that Work shall terminate
|
|
87
|
+
as of the date such litigation is filed.
|
|
88
|
+
|
|
89
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
90
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
91
|
+
modifications, and in Source or Object form, provided that You
|
|
92
|
+
meet the following conditions:
|
|
93
|
+
|
|
94
|
+
(a) You must give any other recipients of the Work or
|
|
95
|
+
Derivative Works a copy of this License; and
|
|
96
|
+
|
|
97
|
+
(b) You must cause any modified files to carry prominent notices
|
|
98
|
+
stating that You changed the files; and
|
|
99
|
+
|
|
100
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
101
|
+
that You distribute, all copyright, patent, trademark, and
|
|
102
|
+
attribution notices from the Source form of the Work,
|
|
103
|
+
excluding those notices that do not pertain to any part of
|
|
104
|
+
the Derivative Works; and
|
|
105
|
+
|
|
106
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
107
|
+
distribution, then any Derivative Works that You distribute must
|
|
108
|
+
include a readable copy of the attribution notices contained
|
|
109
|
+
within such NOTICE file, excluding those notices that do not
|
|
110
|
+
pertain to any part of the Derivative Works, in at least one
|
|
111
|
+
of the following places: within a NOTICE text file distributed
|
|
112
|
+
as part of the Derivative Works; within the Source form or
|
|
113
|
+
documentation, if provided along with the Derivative Works; or,
|
|
114
|
+
within a display generated by the Derivative Works, if and
|
|
115
|
+
wherever such third-party notices normally appear. The contents
|
|
116
|
+
of the NOTICE file are for informational purposes only and
|
|
117
|
+
do not modify the License. You may add Your own attribution
|
|
118
|
+
notices within Derivative Works that You distribute, alongside
|
|
119
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
120
|
+
that such additional attribution notices cannot be construed
|
|
121
|
+
as modifying the License.
|
|
122
|
+
|
|
123
|
+
You may add Your own copyright statement to Your modifications and
|
|
124
|
+
may provide additional or different license terms and conditions
|
|
125
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
126
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
127
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
128
|
+
the conditions stated in this License.
|
|
129
|
+
|
|
130
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
131
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
132
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
133
|
+
this License, without any additional terms or conditions.
|
|
134
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
135
|
+
the terms of any separate license agreement you may have executed
|
|
136
|
+
with Licensor regarding such Contributions.
|
|
137
|
+
|
|
138
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
139
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
140
|
+
except as required for reasonable and customary use in describing
|
|
141
|
+
the origin of the Work and reproducing the content of the NOTICE file.
|
|
142
|
+
|
|
143
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
144
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
145
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
146
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
147
|
+
implied, including, without limitation, any warranties or conditions
|
|
148
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
149
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
150
|
+
appropriateness of using or redistributing the Work and assume any
|
|
151
|
+
risks associated with Your exercise of permissions under this License.
|
|
152
|
+
|
|
153
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
154
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
155
|
+
unless required by applicable law (such as deliberate and grossly
|
|
156
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
157
|
+
liable to You for damages, including any direct, indirect, special,
|
|
158
|
+
incidental, or consequential damages of any character arising as a
|
|
159
|
+
result of this License or out of the use or inability to use the
|
|
160
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
161
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
162
|
+
other commercial damages or losses), even if such Contributor
|
|
163
|
+
has been advised of the possibility of such damages.
|
|
164
|
+
|
|
165
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
166
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
167
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
168
|
+
or other liability obligations and/or rights consistent with this
|
|
169
|
+
License. However, in accepting such obligations, You may act only
|
|
170
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
171
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
172
|
+
defend, and hold each Contributor harmless for any liability
|
|
173
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
174
|
+
of your accepting any such warranty or additional liability.
|
|
175
|
+
|
|
176
|
+
END OF TERMS AND CONDITIONS
|
|
177
|
+
|
|
178
|
+
Copyright 2026 Abe Diaz (github.com/abe238)
|
|
179
|
+
|
|
180
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
181
|
+
you may not use this file except in compliance with the License.
|
|
182
|
+
You may obtain a copy of the License at
|
|
183
|
+
|
|
184
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
185
|
+
|
|
186
|
+
Unless required by applicable law or agreed to in writing, software
|
|
187
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
188
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
189
|
+
See the License for the specific language governing permissions and
|
|
190
|
+
limitations under the License.
|
hotin-0.2.0/NOTICE
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
hotin
|
|
2
|
+
Copyright 2026 Abe Diaz (github.com/abe238)
|
|
3
|
+
|
|
4
|
+
This product includes software originally created by Abe Diaz
|
|
5
|
+
as part of the hotin project (https://github.com/abe238/hotinai, https://hotin.ai).
|
|
6
|
+
|
|
7
|
+
If this project or its ideas inspired your work, a credit or link back
|
|
8
|
+
to the original (github.com/abe238/hotinai) is appreciated.
|
hotin-0.2.0/PKG-INFO
ADDED
|
@@ -0,0 +1,137 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: hotin
|
|
3
|
+
Version: 0.2.0
|
|
4
|
+
Summary: An open-source CLI surfacing what's hot, fresh, and credible in AI from GitHub, Hacker News, npm, Reddit, and a public influencer-stars credibility signal, ranked by cross-source corroboration and freshness.
|
|
5
|
+
Author: Abe Diaz
|
|
6
|
+
License: Apache-2.0
|
|
7
|
+
Project-URL: Homepage, https://hotin.ai
|
|
8
|
+
Project-URL: Repository, https://github.com/abe238/hotinai
|
|
9
|
+
Project-URL: Issues, https://github.com/abe238/hotinai/issues
|
|
10
|
+
Keywords: ai,cli,github,trending,discovery,terminal
|
|
11
|
+
Classifier: Development Status :: 3 - Alpha
|
|
12
|
+
Classifier: Environment :: Console
|
|
13
|
+
Classifier: Intended Audience :: Developers
|
|
14
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
15
|
+
Classifier: Programming Language :: Python :: 3
|
|
16
|
+
Classifier: Topic :: Software Development :: Libraries
|
|
17
|
+
Classifier: Topic :: Internet
|
|
18
|
+
Requires-Python: >=3.9
|
|
19
|
+
Description-Content-Type: text/markdown
|
|
20
|
+
License-File: LICENSE
|
|
21
|
+
License-File: NOTICE
|
|
22
|
+
Dynamic: license-file
|
|
23
|
+
|
|
24
|
+
# hotin — what's hot in AI, from your terminal
|
|
25
|
+
|
|
26
|
+
An open-source CLI for finding what's hot, fresh, and credible in AI.
|
|
27
|
+
|
|
28
|
+
hotin pulls together independent signals and ranks projects by cross-source consensus and freshness, so a tool gaining attention in more than one place has more weight than a one-source spike.
|
|
29
|
+
|
|
30
|
+
## What it does
|
|
31
|
+
|
|
32
|
+
The zero-key core combines GitHub Trending, curated growth momentum, Hacker News, and npm velocity with no configuration. Add an optional key to unlock Reddit and YouTube (ScrapeCreators, or the official YouTube Data API v3), including curated repo-roundup channels. A “smart money” signal (repos the AI Insiders are backing) is included on a best-effort basis, and an AI-newsletter feed adds an editorial signal. Sources can be temporarily unavailable without taking down the CLI.
|
|
33
|
+
|
|
34
|
+
Beyond repos, hotin surfaces trending **AI models** (`hotin models`) and **papers** (`hotin papers`) as their own views, and a short daily **`hotin brief`** of what's happening across all of them. Run `hotin refresh` on a schedule and hotin records a time series, so the board can flag what's genuinely **rising** and **viral** (velocity, not just a snapshot) — not just what's big right now.
|
|
35
|
+
|
|
36
|
+
## Install
|
|
37
|
+
|
|
38
|
+
Once hotin is published to PyPI, the standard install will be:
|
|
39
|
+
|
|
40
|
+
```sh
|
|
41
|
+
pip install hotin
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
From a checkout during pre-release development:
|
|
45
|
+
|
|
46
|
+
```sh
|
|
47
|
+
pip install -e .
|
|
48
|
+
```
|
|
49
|
+
|
|
50
|
+
Or install the current repository with pipx:
|
|
51
|
+
|
|
52
|
+
```sh
|
|
53
|
+
pipx install git+https://github.com/abe238/hotinai
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
A prebuilt single-file `hotin.pyz` will be attached to GitHub Releases as a zero-install option for a fresh machine. Run it with:
|
|
57
|
+
|
|
58
|
+
```sh
|
|
59
|
+
python hotin.pyz
|
|
60
|
+
```
|
|
61
|
+
|
|
62
|
+
## Quick start
|
|
63
|
+
|
|
64
|
+
```sh
|
|
65
|
+
hotin
|
|
66
|
+
```
|
|
67
|
+
|
|
68
|
+
Available commands:
|
|
69
|
+
|
|
70
|
+
| Command | Description |
|
|
71
|
+
| --- | --- |
|
|
72
|
+
| `hotin` | the flagship board (defaults to `repos`) |
|
|
73
|
+
| `hotin repos` | trending AI repos, fused across sources |
|
|
74
|
+
| `hotin insiders` | repos the AI Insiders are backing (the smart-money signal) |
|
|
75
|
+
| `hotin models` | AI models — lab press releases + trending weights |
|
|
76
|
+
| `hotin papers` | trending AI papers |
|
|
77
|
+
| `hotin news` | recent AI news headlines |
|
|
78
|
+
| `hotin brief` | a one-shot digest across every entity |
|
|
79
|
+
| `hotin refresh` | refresh all sources + record a snapshot (`--quiet` = headless) |
|
|
80
|
+
| `hotin export` | write the board to `docs/index.html` + `latest.json` |
|
|
81
|
+
| `hotin setup` | check config, or schedule automatic refreshes |
|
|
82
|
+
| `hotin search <query>` | search cached repos |
|
|
83
|
+
| `hotin show <owner/repo>` | show one repo |
|
|
84
|
+
| `hotin about` | show project information |
|
|
85
|
+
|
|
86
|
+
**Flags:** `--format text\|json\|md\|html` · `--limit N` (default 20) · `--source <name>` (repos: one upstream feed instead of the fused board) · `--since 30d` / `--min-stars N` (repos filters) · `--verbose`.
|
|
87
|
+
|
|
88
|
+
Each repo result presents a score, the owner/repo (clickable), category, and applicable badges: `fresh` (recently created or active), `rising` / `viral` (climbing fast on the recorded time series, `viral` being the rare accelerating-and-consensus extreme), `smart-money` (the AI Insiders are backing it), and `paper-backed` (linked from a trending paper). Consensus across sources is folded into the score itself, not shown as a badge.
|
|
89
|
+
|
|
90
|
+
Example (real output, top of a live run):
|
|
91
|
+
|
|
92
|
+
```text
|
|
93
|
+
$ hotin --limit 8
|
|
94
|
+
30.59 xai-org/grok-build agents fresh
|
|
95
|
+
Grok Build is open source
|
|
96
|
+
22.17 justvugg/colibri uncategorized
|
|
97
|
+
Show HN: Getting GLM 5.2 running on my slow computer
|
|
98
|
+
17.05 dietrichgebert/ponytail app-building fresh
|
|
99
|
+
17.00 odysseus-dev/odysseus uncategorized fresh
|
|
100
|
+
16.93 nexu-io/open-design agents fresh
|
|
101
|
+
15.46 yuan1z0825/nature-skills uncategorized fresh
|
|
102
|
+
15.24 bigpizzav3/codexplusplus uncategorized fresh
|
|
103
|
+
14.77 antirez/ds4 inference fresh
|
|
104
|
+
```
|
|
105
|
+
|
|
106
|
+
The first line of each result is score, owner/repo (clickable in a real terminal), category, and badges; a dimmed second line shows the human title when it adds context the slug doesn't. `fresh` reflects recent repository activity. In a live terminal the score and badges are colored. Your output will differ — it reflects what is actually hot when you run it.
|
|
107
|
+
|
|
108
|
+
## Keeping it fresh
|
|
109
|
+
|
|
110
|
+
hotin's `rising` / `viral` badges and the `hotin brief` come from a recorded time series, so they get better the more often `hotin refresh` runs. `hotin setup` can install a scheduled job for you:
|
|
111
|
+
|
|
112
|
+
```sh
|
|
113
|
+
hotin setup # interactive: once a day (8am) or twice (8am & 8pm)
|
|
114
|
+
hotin setup --schedule twice # non-interactive: 8am & 8pm
|
|
115
|
+
hotin setup --schedule daily # 8am only
|
|
116
|
+
hotin setup --schedule off # remove it
|
|
117
|
+
```
|
|
118
|
+
|
|
119
|
+
On macOS/Linux this manages a marked block in your `crontab`; on Windows it creates `hotin-refresh` scheduled tasks. Either way it runs `python -m hotin refresh --quiet`, leaving the rest of your schedule untouched.
|
|
120
|
+
|
|
121
|
+
## Data Sources & Terms
|
|
122
|
+
|
|
123
|
+
hotin's code is licensed under Apache-2.0. That license does not relicense the underlying data returned by GitHub, Hacker News, npm, Reddit, or YouTube: each source's own terms of use apply.
|
|
124
|
+
|
|
125
|
+
The Reddit and YouTube integrations are unofficial third-party integrations via ScrapeCreators; they are not officially sanctioned by Reddit or YouTube. The smart-money signal is a best-effort read of a public AI-influencer graph and may change or break without notice.
|
|
126
|
+
|
|
127
|
+
## Contributing
|
|
128
|
+
|
|
129
|
+
Issues and contributions are welcome at the [issue tracker](https://github.com/abe238/hotinai/issues).
|
|
130
|
+
|
|
131
|
+
## License
|
|
132
|
+
|
|
133
|
+
Apache License 2.0 — see [LICENSE](LICENSE) and [NOTICE](NOTICE).
|
|
134
|
+
|
|
135
|
+
hotin was created by [Abe Diaz](https://github.com/abe238). If hotin, its ranking approach, or its ideas helped your project, a credit and link back to [github.com/abe238/hotinai](https://github.com/abe238/hotinai) are appreciated.
|
|
136
|
+
|
|
137
|
+
*Made by [@abe238](https://github.com/abe238) · [hotin.ai](https://hotin.ai)*
|
hotin-0.2.0/README.md
ADDED
|
@@ -0,0 +1,114 @@
|
|
|
1
|
+
# hotin — what's hot in AI, from your terminal
|
|
2
|
+
|
|
3
|
+
An open-source CLI for finding what's hot, fresh, and credible in AI.
|
|
4
|
+
|
|
5
|
+
hotin pulls together independent signals and ranks projects by cross-source consensus and freshness, so a tool gaining attention in more than one place has more weight than a one-source spike.
|
|
6
|
+
|
|
7
|
+
## What it does
|
|
8
|
+
|
|
9
|
+
The zero-key core combines GitHub Trending, curated growth momentum, Hacker News, and npm velocity with no configuration. Add an optional key to unlock Reddit and YouTube (ScrapeCreators, or the official YouTube Data API v3), including curated repo-roundup channels. A “smart money” signal (repos the AI Insiders are backing) is included on a best-effort basis, and an AI-newsletter feed adds an editorial signal. Sources can be temporarily unavailable without taking down the CLI.
|
|
10
|
+
|
|
11
|
+
Beyond repos, hotin surfaces trending **AI models** (`hotin models`) and **papers** (`hotin papers`) as their own views, and a short daily **`hotin brief`** of what's happening across all of them. Run `hotin refresh` on a schedule and hotin records a time series, so the board can flag what's genuinely **rising** and **viral** (velocity, not just a snapshot) — not just what's big right now.
|
|
12
|
+
|
|
13
|
+
## Install
|
|
14
|
+
|
|
15
|
+
Once hotin is published to PyPI, the standard install will be:
|
|
16
|
+
|
|
17
|
+
```sh
|
|
18
|
+
pip install hotin
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
From a checkout during pre-release development:
|
|
22
|
+
|
|
23
|
+
```sh
|
|
24
|
+
pip install -e .
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
Or install the current repository with pipx:
|
|
28
|
+
|
|
29
|
+
```sh
|
|
30
|
+
pipx install git+https://github.com/abe238/hotinai
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
A prebuilt single-file `hotin.pyz` will be attached to GitHub Releases as a zero-install option for a fresh machine. Run it with:
|
|
34
|
+
|
|
35
|
+
```sh
|
|
36
|
+
python hotin.pyz
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
## Quick start
|
|
40
|
+
|
|
41
|
+
```sh
|
|
42
|
+
hotin
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
Available commands:
|
|
46
|
+
|
|
47
|
+
| Command | Description |
|
|
48
|
+
| --- | --- |
|
|
49
|
+
| `hotin` | the flagship board (defaults to `repos`) |
|
|
50
|
+
| `hotin repos` | trending AI repos, fused across sources |
|
|
51
|
+
| `hotin insiders` | repos the AI Insiders are backing (the smart-money signal) |
|
|
52
|
+
| `hotin models` | AI models — lab press releases + trending weights |
|
|
53
|
+
| `hotin papers` | trending AI papers |
|
|
54
|
+
| `hotin news` | recent AI news headlines |
|
|
55
|
+
| `hotin brief` | a one-shot digest across every entity |
|
|
56
|
+
| `hotin refresh` | refresh all sources + record a snapshot (`--quiet` = headless) |
|
|
57
|
+
| `hotin export` | write the board to `docs/index.html` + `latest.json` |
|
|
58
|
+
| `hotin setup` | check config, or schedule automatic refreshes |
|
|
59
|
+
| `hotin search <query>` | search cached repos |
|
|
60
|
+
| `hotin show <owner/repo>` | show one repo |
|
|
61
|
+
| `hotin about` | show project information |
|
|
62
|
+
|
|
63
|
+
**Flags:** `--format text\|json\|md\|html` · `--limit N` (default 20) · `--source <name>` (repos: one upstream feed instead of the fused board) · `--since 30d` / `--min-stars N` (repos filters) · `--verbose`.
|
|
64
|
+
|
|
65
|
+
Each repo result presents a score, the owner/repo (clickable), category, and applicable badges: `fresh` (recently created or active), `rising` / `viral` (climbing fast on the recorded time series, `viral` being the rare accelerating-and-consensus extreme), `smart-money` (the AI Insiders are backing it), and `paper-backed` (linked from a trending paper). Consensus across sources is folded into the score itself, not shown as a badge.
|
|
66
|
+
|
|
67
|
+
Example (real output, top of a live run):
|
|
68
|
+
|
|
69
|
+
```text
|
|
70
|
+
$ hotin --limit 8
|
|
71
|
+
30.59 xai-org/grok-build agents fresh
|
|
72
|
+
Grok Build is open source
|
|
73
|
+
22.17 justvugg/colibri uncategorized
|
|
74
|
+
Show HN: Getting GLM 5.2 running on my slow computer
|
|
75
|
+
17.05 dietrichgebert/ponytail app-building fresh
|
|
76
|
+
17.00 odysseus-dev/odysseus uncategorized fresh
|
|
77
|
+
16.93 nexu-io/open-design agents fresh
|
|
78
|
+
15.46 yuan1z0825/nature-skills uncategorized fresh
|
|
79
|
+
15.24 bigpizzav3/codexplusplus uncategorized fresh
|
|
80
|
+
14.77 antirez/ds4 inference fresh
|
|
81
|
+
```
|
|
82
|
+
|
|
83
|
+
The first line of each result is score, owner/repo (clickable in a real terminal), category, and badges; a dimmed second line shows the human title when it adds context the slug doesn't. `fresh` reflects recent repository activity. In a live terminal the score and badges are colored. Your output will differ — it reflects what is actually hot when you run it.
|
|
84
|
+
|
|
85
|
+
## Keeping it fresh
|
|
86
|
+
|
|
87
|
+
hotin's `rising` / `viral` badges and the `hotin brief` come from a recorded time series, so they get better the more often `hotin refresh` runs. `hotin setup` can install a scheduled job for you:
|
|
88
|
+
|
|
89
|
+
```sh
|
|
90
|
+
hotin setup # interactive: once a day (8am) or twice (8am & 8pm)
|
|
91
|
+
hotin setup --schedule twice # non-interactive: 8am & 8pm
|
|
92
|
+
hotin setup --schedule daily # 8am only
|
|
93
|
+
hotin setup --schedule off # remove it
|
|
94
|
+
```
|
|
95
|
+
|
|
96
|
+
On macOS/Linux this manages a marked block in your `crontab`; on Windows it creates `hotin-refresh` scheduled tasks. Either way it runs `python -m hotin refresh --quiet`, leaving the rest of your schedule untouched.
|
|
97
|
+
|
|
98
|
+
## Data Sources & Terms
|
|
99
|
+
|
|
100
|
+
hotin's code is licensed under Apache-2.0. That license does not relicense the underlying data returned by GitHub, Hacker News, npm, Reddit, or YouTube: each source's own terms of use apply.
|
|
101
|
+
|
|
102
|
+
The Reddit and YouTube integrations are unofficial third-party integrations via ScrapeCreators; they are not officially sanctioned by Reddit or YouTube. The smart-money signal is a best-effort read of a public AI-influencer graph and may change or break without notice.
|
|
103
|
+
|
|
104
|
+
## Contributing
|
|
105
|
+
|
|
106
|
+
Issues and contributions are welcome at the [issue tracker](https://github.com/abe238/hotinai/issues).
|
|
107
|
+
|
|
108
|
+
## License
|
|
109
|
+
|
|
110
|
+
Apache License 2.0 — see [LICENSE](LICENSE) and [NOTICE](NOTICE).
|
|
111
|
+
|
|
112
|
+
hotin was created by [Abe Diaz](https://github.com/abe238). If hotin, its ranking approach, or its ideas helped your project, a credit and link back to [github.com/abe238/hotinai](https://github.com/abe238/hotinai) are appreciated.
|
|
113
|
+
|
|
114
|
+
*Made by [@abe238](https://github.com/abe238) · [hotin.ai](https://hotin.ai)*
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "hotin"
|
|
7
|
+
version = "0.2.0"
|
|
8
|
+
description = "An open-source CLI surfacing what's hot, fresh, and credible in AI from GitHub, Hacker News, npm, Reddit, and a public influencer-stars credibility signal, ranked by cross-source corroboration and freshness."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.9"
|
|
11
|
+
license = { text = "Apache-2.0" }
|
|
12
|
+
authors = [{ name = "Abe Diaz" }]
|
|
13
|
+
dependencies = []
|
|
14
|
+
classifiers = [
|
|
15
|
+
"Development Status :: 3 - Alpha",
|
|
16
|
+
"Environment :: Console",
|
|
17
|
+
"Intended Audience :: Developers",
|
|
18
|
+
"License :: OSI Approved :: Apache Software License",
|
|
19
|
+
"Programming Language :: Python :: 3",
|
|
20
|
+
"Topic :: Software Development :: Libraries",
|
|
21
|
+
"Topic :: Internet",
|
|
22
|
+
]
|
|
23
|
+
keywords = ["ai", "cli", "github", "trending", "discovery", "terminal"]
|
|
24
|
+
|
|
25
|
+
[project.urls]
|
|
26
|
+
Homepage = "https://hotin.ai"
|
|
27
|
+
Repository = "https://github.com/abe238/hotinai"
|
|
28
|
+
Issues = "https://github.com/abe238/hotinai/issues"
|
|
29
|
+
|
|
30
|
+
[project.scripts]
|
|
31
|
+
hotin = "hotin.cli:main"
|
|
32
|
+
|
|
33
|
+
[tool.setuptools]
|
|
34
|
+
package-dir = { "" = "src" }
|
|
35
|
+
|
|
36
|
+
[tool.setuptools.packages.find]
|
|
37
|
+
where = ["src"]
|
|
38
|
+
|
|
39
|
+
[tool.pytest.ini_options]
|
|
40
|
+
pythonpath = ["src"]
|
hotin-0.2.0/setup.cfg
ADDED