{"id":51122515,"url":"https://github.com/masudranaxpert/streamflow","last_synced_at":"2026-06-25T04:01:02.825Z","repository":{"id":359048598,"uuid":"1244266010","full_name":"masudranaxpert/StreamFlow","owner":"masudranaxpert","description":"Multi-platform video streaming library for Python. Master link resolution, upload API, proxy support, and CLI tools for video platforms.","archived":false,"fork":false,"pushed_at":"2026-06-04T12:18:39.000Z","size":99,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-06-04T13:14:10.406Z","etag":null,"topics":["cli-tool","hls","hls-player","python","streaming-api","video-streaming"],"latest_commit_sha":null,"homepage":"https://masudranaxpert.github.io/StreamFlow/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/masudranaxpert.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-05-20T05:39:25.000Z","updated_at":"2026-06-04T12:18:43.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/masudranaxpert/StreamFlow","commit_stats":null,"previous_names":["masudranaxpert/streamflow"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/masudranaxpert/StreamFlow","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/masudranaxpert%2FStreamFlow","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/masudranaxpert%2FStreamFlow/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/masudranaxpert%2FStreamFlow/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/masudranaxpert%2FStreamFlow/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/masudranaxpert","download_url":"https://codeload.github.com/masudranaxpert/StreamFlow/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/masudranaxpert%2FStreamFlow/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34758776,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-25T02:00:05.521Z","response_time":101,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cli-tool","hls","hls-player","python","streaming-api","video-streaming"],"created_at":"2026-06-25T04:01:01.877Z","updated_at":"2026-06-25T04:01:02.724Z","avatar_url":"https://github.com/masudranaxpert.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# StreamFlow\n\n**Multi-platform video streaming utilities for Python.**\n\n[![License](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE)\n\n---\n\n## Features\n\n- **Master Link Resolution** — Get m3u8 streaming URLs from video platforms\n- **Remote Upload** — Upload files from direct URLs\n- **File Management** — List, delete, and manage files\n- **Proxy Support** — TCP, UDP, SOCKS5, MASQUE proxies\n- **HTTP Version Control** — Force HTTP/1.1, HTTP/2, or HTTP/3\n\n---\n\n## Installation\n\nInstall from GitHub:\n\n```bash\npip install git+https://github.com/masudranaxpert/StreamFlow.git\n```\n\nOr from source:\n\n```bash\ngit clone https://github.com/masudranaxpert/StreamFlow.git\ncd StreamFlow\npip install -e .\n```\n\n---\n\n## Quick Start\n\n### Get Streaming URL\n\n```python\nfrom streamflow.platforms.streamembed import get_master_link\n\n# Get m3u8 streaming URL\nresult = get_master_link(\"abc123\", provider=\"streamp2p\")\nprint(result.streaming_url)  # https://example.com/stream.m3u8\n```\n\n### Upload File\n\n```python\nfrom streamflow.platforms.voe import VOEClient\n\nclient = VOEClient(api_key=\"YOUR_API_KEY\")\nupload = client.upload(\"https://example.com/video.mp4\")\nprint(f\"Uploaded: {upload.result.filecode}\")\n```\n\n### List Files\n\n```python\nfrom streamflow.platforms.byse import ByseClient\n\nclient = ByseClient(api_key=\"YOUR_API_KEY\")\nfiles = client.list_files(page=1, per_page=20)\nfor f in files:\n    print(f.filecode, f.name)\n```\n\n---\n\n## Supported Platforms\n\n| Platform | Features |\n|----------|----------|\n| **StreamEmbed** | Master link + upload (seekstreaming, streamp2p, player4me) |\n| **VOE** | Account stats, file management, upload |\n| **Anonstream** | Remote upload, file management |\n| **Byse** | Upload, file management, master link |\n| **Vidara** | Upload, HLS master link, proxy support |\n\n---\n\n## Test Streams Online\n\nTest your m3u8 streams with free online players:\n\n- **[Livepush HLS Player](https://livepush.io/hls-player/index.html)** — Simple HLS stream tester\n\n---\n\n## CLI Usage\n\n```bash\n# Show help for a platform\nstreamflow help streamembed\n\n# Show all platforms\nstreamflow help\n\n# Show proxy help\nstreamflow help proxy\n\n# Platform audit\nstreamflow audit\n```\n\n---\n\n## License\n\nMIT License — see [LICENSE](LICENSE) for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmasudranaxpert%2Fstreamflow","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmasudranaxpert%2Fstreamflow","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmasudranaxpert%2Fstreamflow/lists"}