Public scan — anyone with this URL can view this analysis. Sign up to track your own repos privately, run scheduled re-scans, and get AI fix prompts via your dashboard.
158 of your 194 findings came from Repobility's proprietary detections. ✓ Repobility tags below mark them.

Scan timing: clone 5.14s · analysis 6.56s · 5.9 MB · GitHub preflight 513ms

subzeroid/instagrapi

https://github.com/subzeroid/instagrapi · scanned 2026-06-05 18:24 UTC (4 days, 18 hours ago) · 10 languages

437 raw signals (191 security + 246 graph) 66th percentile · Python · medium (20-100K LoC) System graph score 88 (lower by 15)

UNIFIED Repobility · multi-layer engine · AI coders

Complete repo analysis

Last scanned 4 days, 18 hours ago · v2 · 153 actionable findings from 2 signal sources. 160 repeated signals grouped for readability. Security checks, system graph analysis, and verified AI-agent feedback are merged into one review queue.

JSON
Score breakdown â 2026-05-18-v5
Component Sub-score Weight Contribution
structure_score 75.0 0.15 11.25
security_score 55.0 0.25 13.75
testing_score 90.0 0.20 18.00
documentation_score 89.0 0.15 13.35
practices_score 82.0 0.15 12.30
code_quality 42.5 0.10 4.25
Overall 1.00 72.9
Severity distribution — click a segment to filter
Active filters: excluding tests × Reset all
Corpus Intelligence Cross-corpus context (cohort percentile, top patterns, fix plan) is shown only on repositories you own. Sign up and connect your repo to view it.
Scan summary Ranks in the 8th percentile among small-sized repos. Strongest dependencies (90), documentation (83); weakest testing (15), code quality (55). 98 findings (6 critical, 14 high). Most common pattern: mutable-default-arg.

Showing 102 of 153 actionable findings. 313 raw detector signals were grouped into reader-sized issues. Click TP / FP to vote on a finding's accuracy — votes adjust the confidence weighting and improve detection across the platform.

critical Security checks quality Quality conf 1.00 ✓ Repobility [MINED013] Password In Url: https://user:password@host — leaks creds via logs, referrer, error messages.
Review and fix per the pattern semantics. See CWE-200 / A07:2021 for context.
examples/next_proxy.py:28
critical Security checks security secrets conf 0.95 6 occurrences Detected a Generic API Key, potentially exposing access to various services and sensitive operations.
Gitleaks detected a committed secret or credential pattern.
4 files, 6 locations
docs/usage-guide/media.md:439, 513 (2 hits)
instagrapi/mixins/location.py:36, 37 (2 hits)
instagrapi/mixins/challenge.py:366
instagrapi/mixins/video.py:886
high Security checks quality Quality conf 1.00 ✓ Repobility 4 occurrences Missing import: `html` used but not imported
The file uses `html.something(...)` but never imports `html`. This raises NameError at runtime the first time the line executes.
4 files, 4 locations
instagrapi/mixins/graphql.py:145
instagrapi/mixins/private.py:184
instagrapi/mixins/user.py:136
instagrapi/realtime/client.py:99
high Security checks quality Quality conf 1.00 ✓ Repobility 25 occurrences `self.next_proxy` used but never assigned in __init__
Method `get_client` of class `Account` reads `self.next_proxy`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the first time the method runs against an instance.
2 files, 25 locations
examples/handle_exception.py:26, 28, 30, 31, 35, 39, 40, 45, +6 more (14 hits)
tests/helpers.py:207, 225, 232, 236, 267, 279, 283, 295, +3 more (11 hits)
low Security checks cicd CI/CD security conf 0.90 ✓ Repobility 28 occurrences GitHub Action is tag-pinned rather than SHA-pinned
Action `actions/checkout` pinned to mutable ref `@v6` uses a mutable tag or branch. Pin external actions to a reviewed full commit SHA when the workflow is security-sensitive.
4 files, 28 locations
.github/workflows/python-package.yml:19, 20, 35, 36, 56, 57, 90, 91, +3 more (17 hits)
.github/workflows/publish.yml:40, 41, 57, 72, 85, 86 (6 hits)
.github/workflows/live-account-tests.yml:41, 42 (3 hits)
.github/workflows/codeql-analysis.yml:42 (2 hits)
CI/CD securitySupply chainGitHub Actions
medium Security checks cicd CI/CD security conf 0.90 ✓ Repobility 7 occurrences GitHub Action is tag-pinned rather than SHA-pinned
Action `github/codeql-action/init` pinned to mutable ref `@v4` uses a mutable tag or branch. Pin external actions to a reviewed full commit SHA when the workflow is security-sensitive.
2 files, 7 locations
.github/workflows/codeql-analysis.yml:46, 57, 71 (6 hits)
.github/workflows/publish.yml:76
CI/CD securitySupply chainGitHub Actions
high Security checks software dependencies conf 0.90 ✓ Repobility 2 occurrences pre-commit hook `https://github.com/pre-commit/pre-commit-hooks` pinned to mutable rev `v6.0.0`
`.pre-commit-config.yaml` references `https://github.com/pre-commit/pre-commit-hooks` at `rev: v6.0.0`. If `{rev}` is a branch or version tag, the repo owner can push new code there and `pre-commit install --install-hooks` will fetch it on every developer's machine.
lines 2, 8
.pre-commit-config.yaml:2, 8 (2 hits)
low Security checks quality Error handling conf 0.55 ✓ Repobility 15 occurrences Broad exception handler needs review
This handler catches Exception/BaseException. It is actionable when it swallows errors without logging, re-raising, or returning a structured error. Handlers that intentionally convert exceptions into typed error results should not be treated as high risk.
8 files, 15 locations
instagrapi/mixins/direct.py:750, 755, 973, 1115 (4 hits)
tests/helpers.py:281, 326, 349, 377 (4 hits)
examples/load_session_cookie.py:63, 82 (2 hits)
examples/debug_direct_thread.py:146
instagrapi/mixins/clip.py:47
instagrapi/mixins/graphql.py:370
instagrapi/mixins/user.py:42
instagrapi/utils/video.py:218
Error handlingquality
medium Security checks quality Quality conf 1.00 ✓ Repobility 5 occurrences Mutable default argument in `clip_upload` (dict)
`def clip_upload(... = []/{}/set())` — Python's default value is constructed ONCE at function definition time and shared across all calls. Mutating it in one call mutates it for every future call too.
2 files, 5 locations
instagrapi/mixins/clip.py:335, 592, 672 (3 hits)
instagrapi/mixins/igtv.py:67, 196 (2 hits)
medium Security checks quality Quality conf 1.00 ✓ Repobility 12 occurrences Mutable default argument in `clip_upload` (list)
`def clip_upload(... = []/{}/set())` — Python's default value is constructed ONCE at function definition time and shared across all calls. Mutating it in one call mutates it for every future call too.
4 files, 12 locations
instagrapi/mixins/direct.py:490, 726, 775, 996, 1138, 1682, 1755, 1941 (8 hits)
instagrapi/mixins/igtv.py:67, 196 (2 hits)
instagrapi/mixins/clip.py:335
instagrapi/story.py:60
medium System graph cicd CI/CD security conf 1.00 GitHub Actions workflow grants broad write permissions
CI tokens with write permissions increase blast radius when an action, dependency, or PR workflow is compromised. Prefer job-level least-privilege permissions.
.github/workflows/publish.yml CI/CD securitySupply chainGithub actions
medium System graph security Coverage conf 1.00 No auth library detected
The scanner did not find any standard auth library (JWT, OAuth, NextAuth, Auth0, etc.). Either auth lives in custom code, in a separate service, or is missing.
auth
low Security checks quality Quality conf 0.60 7 occurrences Duplicated implementation block across source files
Duplicate implementation blocks are maintenance debt. Keep them visible, but they are not a high-severity defect unless the duplicated logic is security-sensitive or drifting.
4 files, 7 locations
instagrapi/mixins/igtv.py:154, 156 (2 hits)
instagrapi/mixins/photo.py:288, 362 (2 hits)
instagrapi/mixins/public.py:98, 217 (2 hits)
instagrapi/mixins/clip.py:527
duplicationquality
high Security checks software dependencies conf 0.90 3 occurrences GitHub Action `actions/setup-python@v6` is minor version(s) behind (latest v6.2.0)
`uses: actions/setup-python@v6` is minor version(s) behind the latest published release v6.2.0. Old action majors run on deprecated runner images / Node versions and miss upstream fixes. This is the exact 'outdated GitHub Action' class Dependabot raises — and which Repobility had no coverage for.
3 files, 3 locations
.github/workflows/live-account-tests.yml:42
.github/workflows/publish.yml:41
.github/workflows/python-package.yml:20
low System graph software Dead code candidate conf 1.00 File has no detected symbols: examples/create_sticker.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: instagrapi/config.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph quality Integrity conf 1.00 16 occurrences Near-duplicate function bodies in 2 places
Functions with the same first-5-line body hash: instagrapi/zones.py:utcoffset, instagrapi/zones.py:utcoffset This is *the* AI-coder failure mode (4× more duplication in vibe-coded repos — see https://jw.hn/ai-code-hygiene). Consolidate or document why they're separate.
16 occurrences
repo-level (16 hits)
duplicatesduplication
low System graph quality Integrity conf 1.00 3 occurrences Near-duplicate function bodies in 3 places
Functions with the same first-5-line body hash: instagrapi/types.py:validate_external_url, instagrapi/types.py:validate_external_url, instagrapi/types.py:validate_external_url This is *the* AI-coder failure mode (4× more duplication in vibe-coded repos — see https://jw.hn/ai-code-hygiene). Consoli…
3 occurrences
repo-level (3 hits)
duplicatesduplication
low System graph quality Integrity conf 1.00 Near-duplicate function bodies in 4 places
Functions with the same first-5-line body hash: instagrapi/mixins/igtv.py:analyze_video, instagrapi/mixins/igtv.py:crop_thumbnail, instagrapi/mixins/clip.py:analyze_video, instagrapi/mixins/clip.py:crop_thumbnail This is *the* AI-coder failure mode (4× more duplication in vibe-coded repos — see ht…
duplicatesduplication
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `direct_v2` in examples/debug_direct_thread.py:99
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `direct_v2` in instagrapi/mixins/direct.py:109
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `direct_v2` in instagrapi/mixins/private.py:55
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `direct_v2` in instagrapi/realtime/client.py:336
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `direct_v2` in tests/regression/test_direct.py:22
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `direct_v2` in tests/regression/test_realtime.py:317
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `extract_about_v1` in instagrapi/mixins/user.py:21
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `extract_guide_v1` in instagrapi/mixins/location.py:6
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `extract_hashtag_v1` in instagrapi/mixins/fbsearch.py:4
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `extract_hashtag_v1` in instagrapi/mixins/hashtag.py:9
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `extract_highlight_v1` in instagrapi/mixins/highlight.py:10
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `extract_media_v1` in instagrapi/extractors.py:50
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `extract_media_v1` in instagrapi/mixins/collection.py:4
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `extract_media_v1` in instagrapi/mixins/media.py:26
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `extract_media_v1` in instagrapi/mixins/timeline.py:3
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `extract_media_v1` in tests/regression/test_media.py:3
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `extract_media_v1` in tests/regression/test_upload.py:4
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `extract_resource_v1` in tests/helpers.py:55
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `extract_resource_v1` in tests/regression/test_extractors.py:6
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `extract_story_v1` in instagrapi/mixins/story.py:17
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `extract_story_v1` in tests/regression/test_hardening.py:7
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `fbsearch_accounts_v2` in tests/regression/test_fbsearch.py:16
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `featured_accounts_v1` in instagrapi/mixins/multiple_accounts.py:6
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `hashtag_medias_recent_v1` in tests/regression/test_hashtag.py:30
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `hashtag_medias_v1` in instagrapi/types.py:147
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `hashtag_v1` in tests/live/test_hashtag.py:28
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `ig_android_direct_main_tab_universe_v2` in instagrapi/config.py:68
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `media_comments_v1` in instagrapi/mixins/comment.py:219
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `media_comments_v1` in tests/live/test_comments.py:7
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `media_info_v1` in instagrapi/mixins/video.py:63
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `media_info_v1` in tests/live/test_upload.py:77
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `media_info_v1` in tests/regression/test_download.py:53
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `music_search_v2` in instagrapi/mixins/track.py:136
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `music_search_v2` in tests/live/test_track.py:25
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `music_search_v2` in tests/regression/test_track.py:41
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `news_inbox_v1` in instagrapi/mixins/account.py:364
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `polling_sticker_v2` in instagrapi/mixins/photo.py:859
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `standalone_fundraiser_info_v1` in instagrapi/mixins/fundraiser.py:6
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `story_camera_clips_v2` in instagrapi/mixins/clip.py:680
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `test_user_followers_sorted_v1` in tests/live/test_user.py:12
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `user_info_by_username_v1` in tests/regression/test_user.py:190
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `user_info_v1` in instagrapi/mixins/auth.py:683
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `user_info_v1` in tests/regression/test_auth_story.py:409
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `user_medias_v1` in tests/live/test_media.py:87
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `user_medias_v1` in tests/live/test_story.py:15
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `user_stories_v1` in tests/regression/test_public.py:102
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph software Dead code conf 1.00 Possibly dead Python function: account_security_info
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
instagrapi/mixins/account.py:255
low System graph software Dead code conf 1.00 Possibly dead Python function: album_download_origin
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
instagrapi/mixins/album.py:98
low System graph software Dead code conf 1.00 Possibly dead Python function: clip_download
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
instagrapi/mixins/clip.py:107
low System graph software Dead code conf 1.00 Possibly dead Python function: clip_download_by_url
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
instagrapi/mixins/clip.py:126
low System graph software Dead code conf 1.00 Possibly dead Python function: direct_active_presence
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
instagrapi/mixins/direct.py:1303
low System graph software Dead code conf 1.00 Possibly dead Python function: direct_message_like
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
instagrapi/mixins/direct.py:704
low System graph software Dead code conf 1.00 Possibly dead Python function: direct_profile_share
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
instagrapi/mixins/direct.py:1941
low System graph software Dead code conf 1.00 Possibly dead Python function: direct_send_cutout_sticker
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
instagrapi/mixins/direct.py:1216
low System graph software Dead code conf 1.00 Possibly dead Python function: direct_spam_inbox
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
instagrapi/mixins/direct.py:318
low System graph software Dead code conf 1.00 Possibly dead Python function: direct_story_share
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
instagrapi/mixins/direct.py:1755
low System graph software Dead code conf 1.00 Possibly dead Python function: direct_thread_mark_unread
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
instagrapi/mixins/direct.py:1809
low System graph software Dead code conf 1.00 Possibly dead Python function: direct_users_presence
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
instagrapi/mixins/direct.py:1274
low System graph software Dead code conf 1.00 Possibly dead Python function: dst
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
instagrapi/zones.py:16
low System graph software Dead code conf 1.00 Possibly dead Python function: extract_direct_response
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
instagrapi/extractors.py:353
low System graph software Dead code conf 1.00 Possibly dead Python function: igtv_download
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
instagrapi/mixins/igtv.py:25
low System graph software Dead code conf 1.00 Possibly dead Python function: igtv_download_by_url
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
instagrapi/mixins/igtv.py:43
low System graph software Dead code conf 1.00 Possibly dead Python function: manual_change_password
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
instagrapi/mixins/private.py:85
low System graph software Dead code conf 1.00 Possibly dead Python function: manual_input_code
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
instagrapi/mixins/private.py:61
low System graph software Dead code conf 1.00 Possibly dead Python function: news_inbox_v1
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
instagrapi/mixins/account.py:364
low System graph software Dead code conf 1.00 Possibly dead Python function: remove_bio_links
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
instagrapi/mixins/account.py:202
low System graph software Dead code conf 1.00 Possibly dead Python function: send_confirm_email
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
instagrapi/mixins/account.py:379
low System graph software Dead code conf 1.00 Possibly dead Python function: send_confirm_phone_number
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
instagrapi/mixins/account.py:417
low System graph software Dead code conf 1.00 Possibly dead Python function: set_external_url
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
instagrapi/mixins/account.py:208
low System graph software Dead code conf 1.00 Possibly dead Python function: small_delay
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
instagrapi/mixins/private.py:159
low System graph software Dead code conf 1.00 Possibly dead Python function: track_info_by_canonical_id
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
instagrapi/mixins/track.py:346
low System graph software Dead code conf 1.00 Possibly dead Python function: track_info_by_id
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
instagrapi/mixins/track.py:370
low System graph software Dead code conf 1.00 Possibly dead Python function: utcoffset
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
instagrapi/zones.py:13
low System graph software Dead code conf 1.00 Possibly dead Python function: very_small_delay
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
instagrapi/mixins/private.py:169
low System graph quality Complexity conf 1.00 Very large file: instagrapi/mixins/auth.py (1390 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: instagrapi/mixins/direct.py (2037 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: instagrapi/mixins/media.py (2046 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: instagrapi/mixins/user.py (2286 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: tests/regression/test_upload.py (1579 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
high Security checks software dependencies conf 0.90 4 occurrences GitHub Action `actions/checkout@v6` is patch version(s) behind (latest v6.0.3)
`uses: actions/checkout@v6` is patch version(s) behind the latest published release v6.0.3. Old action majors run on deprecated runner images / Node versions and miss upstream fixes. This is the exact 'outdated GitHub Action' class Dependabot raises — and which Repobility had no coverage for.
4 files, 4 locations
.github/workflows/codeql-analysis.yml:42
.github/workflows/live-account-tests.yml:41
.github/workflows/publish.yml:40
.github/workflows/python-package.yml:19
high Security checks software dependencies conf 0.90 GitHub Action `actions/download-artifact@v8` is patch version(s) behind (latest v8.0.1)
`uses: actions/download-artifact@v8` is patch version(s) behind the latest published release v8.0.1. Old action majors run on deprecated runner images / Node versions and miss upstream fixes. This is the exact 'outdated GitHub Action' class Dependabot raises — and which Repobility had no coverage f…
.github/workflows/publish.yml:72
high Security checks software dependencies conf 0.90 GitHub Action `actions/upload-artifact@v7` is patch version(s) behind (latest v7.0.1)
`uses: actions/upload-artifact@v7` is patch version(s) behind the latest published release v7.0.1. Old action majors run on deprecated runner images / Node versions and miss upstream fixes. This is the exact 'outdated GitHub Action' class Dependabot raises — and which Repobility had no coverage for.
.github/workflows/publish.yml:57
high Security checks software dependencies conf 0.90 GitHub Action `actions/upload-artifact@v7` is patch version(s) behind (latest v7.0.1)
`uses: actions/upload-artifact@v7` is patch version(s) behind the latest published release v7.0.1. Old action majors run on deprecated runner images / Node versions and miss upstream fixes. This is the exact 'outdated GitHub Action' class Dependabot raises — and which Repobility had no coverage for.
.github/workflows/python-package.yml:107
For AI agents: Voting guide (TP/FP) MCP manifest Stdio wrapper SARIF Integrate Findings queue Vote TP/FP on findings to calibrate the engine.
For AI agents + API integrations
Email me when this repo regresses
Free. We re-scan periodically; new criticals → your inbox. No signup required for the scan itself.
API access

This page is publicly accessible at: https://repobility.com/scan/03454a0b-a3a3-48af-905c-c6cf5c8291b6/

To check status programmatically (no auth required):

curl -s https://repobility.com/api/v1/public/scan/03454a0b-a3a3-48af-905c-c6cf5c8291b6/

Important — please don't re-submit the same URL repeatedly. The submission endpoint is idempotent: re-submitting the same git URL returns this same scan_token, not a new one. To re-scan this repo, sign up free and use the dashboard.