{"id":34944695,"url":"https://github.com/t-chov/pcloud-uploader","last_synced_at":"2026-02-22T06:03:14.308Z","repository":{"id":144887413,"uuid":"608621337","full_name":"t-chov/pcloud-uploader","owner":"t-chov","description":null,"archived":false,"fork":false,"pushed_at":"2023-03-20T11:40:31.000Z","size":155,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2023-06-27T22:27:21.518Z","etag":null,"topics":["command-line-tool","pcloud","pcloud-cli"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/t-chov.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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":"2023-03-02T11:58:53.000Z","updated_at":"2023-03-16T13:07:35.000Z","dependencies_parsed_at":null,"dependency_job_id":"3aa89340-b042-493e-82d7-ede2dec4a1e1","html_url":"https://github.com/t-chov/pcloud-uploader","commit_stats":null,"previous_names":[],"tags_count":5,"template":null,"template_full_name":null,"purl":"pkg:github/t-chov/pcloud-uploader","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/t-chov%2Fpcloud-uploader","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/t-chov%2Fpcloud-uploader/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/t-chov%2Fpcloud-uploader/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/t-chov%2Fpcloud-uploader/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/t-chov","download_url":"https://codeload.github.com/t-chov/pcloud-uploader/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/t-chov%2Fpcloud-uploader/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29705845,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-22T05:59:28.568Z","status":"ssl_error","status_checked_at":"2026-02-22T05:58:46.208Z","response_time":110,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["command-line-tool","pcloud","pcloud-cli"],"created_at":"2025-12-26T19:53:35.138Z","updated_at":"2026-02-22T06:03:14.303Z","avatar_url":"https://github.com/t-chov.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# pcloud-uploader\n\n[![license](https://img.shields.io/badge/license-MIT-red.svg?style=flat)](https://raw.githubusercontent.com/t-chov/pcloud-uploader/main/LICENSE)\n[![CI](https://github.com/t-chov/pcloud-uploader/actions/workflows/ci.yaml/badge.svg)](https://github.com/t-chov/pcloud-uploader/actions/workflows/ci.yaml)\n\nA command-line client for [pCloud](https://my.pcloud.com/).\n\n## Installation\n\n```sh\ngo install github.com/t-chov/pcloud-uploader@latest\n```\n\n## Usage\n\n```text\nNAME:\n   pcloud-uploader - A new cli application\n\nUSAGE:\n   pcloud-uploader [global options] command [command options] [arguments...]\n\nVERSION:\n   0.1.0\n\nCOMMANDS:\n   ls, listfolder  Receive data for a folder.\n   up, uploadfile  Upload a file.\n   help, h         Shows a list of commands or help for one command\n\nGLOBAL OPTIONS:\n   --help, -h     show help\n   --version, -v  print the version\n```\n\n## Requirements\n\nYou must have a registered pCloud account.\n\nYou can provide your credentials via environment variables to avoid interactive login prompts every time:\n\n- `PCLOUD_USERNAME`: The email address associated with your pCloud account.\n- `PCLOUD_PASSWORD`: Your pCloud login password.\n\n```sh\nexport PCLOUD_USERNAME=john.smith@example.com\nexport PCLOUD_PASSWORD=IamJohnSmith\n```\n\nIf these environment variables are not set, the application will prompt you to enter your username and password interactively upon running a command.\n\n## Commands\n\n### `listfolder` / `ls`\n\nReceive metadata and structure for a folder on pCloud. It prints a tree-like outline of the files and directories.\n\n```text\n$ pcloud-uploader ls --help\nNAME:\n   pcloud-uploader ls - Receive data for a folder.\n\nUSAGE:\n   pcloud-uploader ls [command options] \u003cPATH\u003e\n\nOPTIONS:\n   --recursive, -r  full directory tree will be returned (default: false)\n   --showdeleted    deleted files and folders that can be undeleted will be displayed (default: false)\n   --nofiles        only the folder (sub)structure will be returned (default: false)\n   --noshares       only user's own folders and files will be displayed (default: false)\n   --help, -h       show help\n```\n\n**Example:**\n```sh\n# List contents of the root directory\n$ pcloud-uploader ls /\n\n# List contents recursively\n$ pcloud-uploader ls -r /Photos\n```\n\n### `uploadfile` / `up`\n\nUpload a local file to a specified remote destination path. Prints the updated file's hash upon successful upload.\n\n```text\n$ pcloud-uploader up --help\nNAME:\n   pcloud-uploader up - Upload a file.\n\nUSAGE:\n   pcloud-uploader up [command options] \u003cSOURCE_FILE\u003e \u003cDEST_PATH\u003e\n\nOPTIONS:\n   --help, -h  show help\n```\n\n**Example:**\n```sh\n# Upload a local file.txt to /Documents/file.txt on pCloud\n$ pcloud-uploader up ./file.txt /Documents/file.txt\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ft-chov%2Fpcloud-uploader","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ft-chov%2Fpcloud-uploader","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ft-chov%2Fpcloud-uploader/lists"}