LeyckerS/moondownloader - Open Source PR Review Scorecard

Bulk file downloader for datanodes.to and fuckingfast.co β€” real-Chrome extraction over CDP, pure-HTTP extraction with a Chrome TLS fingerprint, aiohttp streaming, WebView2 GUI and a headless CLI. Windows, Python 3.10+, MIT.

C-Rank Grade: S (Elite) - 75/100

External PR Merge Rate: 88%

Response Time: 1h

First Timer Success: 80%

Frequently Asked Questions

Is LeyckerS/moondownloader welcoming to first-time open-source contributors?

LeyckerS/moondownloader has a recorded first-timer success rate of 80.0%. Repositories ranked S typically provide actionable feedback during code reviews and actively nurture new community contributors.

How fast can I expect code review feedback on my pull request?

Maintainers in LeyckerS/moondownloader respond to incoming external pull requests in approximately 1.2 hours on average. Keeping PRs focused on single tasks and ensuring tests pass helps maintainers review faster.

What does the 74.6 C-Rankβ„’ score (S Tier) represent?

The C-Rankβ„’ system evaluates GitHub projects on a 0–100 scale using real data: PR merge rates, review turnaround time, active maintainer presence, and first-time contributor success. A score of 74.6 places LeyckerS/moondownloader in the S tier.

What is the external contributor pull request merge rate for LeyckerS/moondownloader?

The external contributor pull request merge rate for LeyckerS/moondownloader is 88.0%, based on public PR activity from non-core contributors.

Are there Good First Issues available in LeyckerS/moondownloader?

LeyckerS/moondownloader currently has 8 active issue(s) tagged with beginner-friendly labels like "good first issue", "beginner", or "up-for-grabs".

LeyckerS
LeyckerS/moondownloaderSβ€’Elite1.6k
GitHub
Back to Explorer
LeyckerS

LeyckerS/moondownloader

1,579
Sβ€’Elite(75/100)Python

Bulk file downloader for datanodes.to and fuckingfast.co β€” real-Chrome extraction over CDP, pure-HTTP extraction with a Chrome TLS fingerprint, aiohttp streaming, WebView2 GUI and a headless CLI. Windows, Python 3.10+, MIT.

Compareβ€’
Jump to:

AI Maintainer Review Guidelines

Review Persona

Strict Architecture Gatekeeper

Warmth Score
7.6/10
Patience Score
8.0/10
Nitpick Rate
45%

Strict review standards in LeyckerS/moondownloader. Ensure PR scope matches issue requirements closely before requesting review.

Top PR Submission Do's

  • β€’Ensure code complies with the project coding style
  • β€’Keep PRs scoped to a single concern
  • β€’Include context and link to the related issue

Top PR Friction Pitfalls (Don'ts)

  • β€’Do not submit PRs without linking an issue
  • β€’Do not break existing tests without fixing them
  • β€’Do not mix unrelated refactors in a single PR
Response Velocity
1 hours
Standard maintainer review cycle

Average Response Latency

Tracks hours until a maintainer leaves a review, comment, or PR response.

Merge Efficiency
88.0%
High acceptance rate for external PRs

External Acceptance Rate

Percentage of community pull requests successfully merged into main.

First-Timer Success
80.0%
Strong first-timer PR acceptance rate

First PR Conversion

Rate at which developers submitting their first repository PR succeed.

Active Maintainers
20 core
Highly collaborative maintainer core
Diagnostic Health HUD
88.0%
Merge Gauge
80.0%
1st-Timer
Community Vibe88/100

Embed C-Rank Badge

Show contributors that your repository actively reviews and merges external pull requests.

GetMerged C-Rank badge for LeyckerS/moondownloader
[![GetMerged C-Rank](https://getmerged.abhishekco.de/api/badge/LeyckerS/moondownloader)](https://getmerged.abhishekco.de/LeyckerS/moondownloader?utm_source=github&utm_medium=badge)

Active Good First Issues (5)

View on GitHub

Follow-up to #174, which landed its minimal half in #176: web/-only pull requests now get a syntax check (node --check web/app.js). That catches parse errors and nothing else. render_gui.py already exists as a real GUI check β€” headless-Chromium screenshots that fail on JS runtime errors, element overflow, horizontal scroll, or missing rows. Wired into the same workflow it would gate the class of breakage the syntax check cannot see: code that parses and then breaks the page. What #174 established and what it did not: node --check was verified on the runner. render_gui.py inside a GitHub Actions runner was not β€” locally it needs pip install -r requirements.txt plus playwright install chromium, and #174 estimated ~1–2 minutes of job time. Whether it runs headless in CI at all, and what it actually costs, is the open question β€” so this is a problem statement, not a recipe. First step for whoever takes it: get render_gui.py to produce its screenshots in a runner on a scratch branch

πŸ“… Opened Aug 29, 2026πŸ’¬ 0 comments
Quality: 90/100Contribute

Found while re-reviewing #154's counting paths. It exists on main independent of that PR, in both front-ends, so it gets its own issue per the usual scope rule. The accounting A run finishes only when every link is counted. In the CLI: mark_done() bumps n_done and sets all_done once n_done >= len(urls) (moon_cli.py:95-98); each browser_worker exits only on all_done.is_set() and q.empty() (moon_cli.py:183); run() gathers those workers (moon_cli.py:292). The engine is the same shape: mark_done at moon_engine.py:355-358, the worker's exit check at moon_engine.py:216. The dropped path A stall-killed download is re-queued for re-extraction with the same record (moon_cli.py:163-167; engine equivalent in _do_dl), and on pickup the entry is flagged is_re = rec.stall_kills > 0 (moon_cli.py:196, moon_engine.py:231). If that re-extraction then fails: the retry branch excludes it β€” not is_re at moon_cli.py:260 and moon_engine.py:316; the fail branch excludes it too β€” not is_re at moon_cli.py:

πŸ“… Opened Aug 29, 2026πŸ’¬ 0 comments
Quality: 90/100Contribute

Both workflows filter by path, and web/ matches neither: .github/workflows/lint.yml triggers on **.py, requirements.txt, constraints.txt, ruff.toml, pytest.ini, .github/dependabot.yml, and itself (lint.yml:3-22). .github/workflows/docs-cli-check.yml triggers on **.md, **.py, and itself. So a pull request touching only web/app.js, web/index.html or web/styles.css arrives with an empty check list: no byte-compile, no lint, nothing. A missing brace in app.js would merge green β€” there is no green to withhold. #173, the current first-timer issue, even has to warn its taker that "no checks" is normal. The gap is asymmetric with the rest of the repository: #164/#165 established the principle that every file controlling behaviour triggers CI, and the GUI β€” a third of what users touch β€” is the one part left out entirely. The minimal gate, verified GitHub's ubuntu-latest runners ship Node.js, and node --check web/app.js parses the file without executing it β€” verified against current ma

πŸ“… Opened Aug 21, 2026πŸ’¬ 4 comments
Quality: 90/100Contribute

On a run where 46 of 58 files failed, the GUI's headline card read: COMPLETED 58 / 58 [β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆ full green bar] and the pipeline said finished. The card immediately beside it, at a third of the size, read 12 ok Β· 46 failed. A user glancing at the top of the window sees a completed run. The run was 79% failure. Cause The card is fed by dl_done / dl_total, and _dl_done is incremented on every terminal outcome, not just success β€” moon_engine.py lines 166, 178 and 194 cover the already-exists, ok and failure paths alike. It is an accurate count of files the engine has finished dealing with; it is displayed under a label that promises something else. The DOWNLOAD 58 / 58 bar in the pipeline section has the same source and the same problem: it fills to 100% in success green regardless of how many of those files exist on disk. The data needed to render this correctly is already in the same snapshot β€” ok and fail are right ther

πŸ“… Opened Aug 1, 2026πŸ’¬ 6 comments
Quality: 90/100Contribute

grep -n "snapshot\|stage\|url_done\|extract_done" moon_cli.py returns nothing. The CLI keeps its own bytes_acc, ok_count, dls_active, t0 and lock, and computes its own speed in progress_loop, duplicating what Engine.snapshot() already produces for the GUI. This is the same shape as the problem #41 fixed for download_file, Telemetry and ProxyPool β€” one behaviour, two copies, free to drift. They already have. The drift, observed on a real run A 5-link datanodes batch spent its first 24 seconds extracting. The CLI printed twelve consecutive identical lines: [00:02] 0/5 done | 0 active | 0 KB/s | 0.00 GB ... twelve times ... [00:26] 0/5 done | 1 active | 5.1 MB/s | 0.00 GB Forty-four percent of that run looked, from the terminal, like nothing was happening. The engine already knows better. snapshot() returns stage (extracting / downloading / done) and extract_done / extract_total, which is exactly what the GUI uses to say "Extracting [2/5]". The CLI has no concept of

πŸ“… Opened Aug 1, 2026πŸ’¬ 6 comments
Quality: 90/100Contribute
Looking for more Python beginner tasks?Explore Python GFI

Contributor Community Vibe Feedback

Rate what actually matters after opening a pull request here.

Have you contributed to this repo?

Rate your first-hand PR experience (review speed, maintainer responsiveness, and onboarding ease) to help other contributors.

3 ratings required
Maintainer helpfulness
Review speed
Beginner friendliness

Contributor Compatibility & Review Speed Analysis for LeyckerS/moondownloader

When evaluating whether to contribute to LeyckerS/moondownloader, response velocity and maintainer engagement are crucial. GetMerged continuously tracks pull request trajectories, first-comment latency, and code review rounds to help developers avoid submitting pull requests to backlogged repositories.

Currently, maintainers of LeyckerS/moondownloader acknowledge new external contributions in approximately 1 hours. Out of all submitted pull requests from non-core authors in the last 180-day window, 88.0% were successfully merged into the primary branch.

Frequently Asked Questions - Contributing to LeyckerS/moondownloader

01

Is LeyckerS/moondownloader welcoming to first-time open-source contributors?

LeyckerS/moondownloader has a recorded first-timer success rate of 80.0%. Repositories ranked Elite typically provide actionable feedback during code reviews and actively nurture new community contributors.

02

How fast can I expect code review feedback on my pull request?

The initial maintainer response time averages ~1 hours. Keeping PRs scoped to single concerns and ensuring CI checks succeed will optimize review turnaround.

03

What does the 74.6 C-Rankβ„’ score represent?

The C-Rankβ„’ index scores repositories on a 0 to 100 scale using an objective formula: external PR merge rates, initial response speed, active maintainer count, and first-time contributor retention. A score of 74.6 places LeyckerS/moondownloader in the Elite tier.

04

What is the external contributor pull request merge rate for LeyckerS/moondownloader?

The external pull request merge rate is 88.0%. GetMerged isolates non-core community contributions so external developers get an accurate benchmark of PR acceptance probability.

05

Are there beginner Good First Issues open in LeyckerS/moondownloader?

Yes, LeyckerS/moondownloader currently has 8 active issue(s) tagged with beginner-friendly labels. You can inspect these directly from the repository issues tab.

GetMerged C-Rankβ„’ Indexing Standard

All metrics displayed for LeyckerS/moondownloader are automatically retrieved via the public GitHub API and recalculated daily. Insider pull requests submitted by repository owners or organization members are excluded from merge rate calculations to preserve objective external contributor statistics.