{"id":15924853,"url":"https://github.com/jaywink/shcli","last_synced_at":"2025-07-11T16:35:42.142Z","repository":{"id":142057177,"uuid":"100250429","full_name":"jaywink/shcli","owner":"jaywink","description":"Python client for Socialhome","archived":false,"fork":false,"pushed_at":"2020-02-14T21:11:39.000Z","size":13,"stargazers_count":5,"open_issues_count":0,"forks_count":4,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-06-19T03:40:47.969Z","etag":null,"topics":["client","federation","socialhome"],"latest_commit_sha":null,"homepage":"https://git.feneas.org/socialhome/shcli","language":"Python","has_issues":false,"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/jaywink.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE.txt","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}},"created_at":"2017-08-14T09:25:42.000Z","updated_at":"2021-03-26T14:45:46.000Z","dependencies_parsed_at":null,"dependency_job_id":"8da2c6ba-a62b-493a-a8ee-46ed937b9f6f","html_url":"https://github.com/jaywink/shcli","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/jaywink/shcli","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jaywink%2Fshcli","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jaywink%2Fshcli/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jaywink%2Fshcli/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jaywink%2Fshcli/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jaywink","download_url":"https://codeload.github.com/jaywink/shcli/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jaywink%2Fshcli/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":264851763,"owners_count":23673297,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["client","federation","socialhome"],"created_at":"2024-10-06T21:41:01.962Z","updated_at":"2025-07-11T16:35:42.124Z","avatar_url":"https://github.com/jaywink.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![Build Status](https://travis-ci.org/jaywink/shcli.svg?branch=master)](https://travis-ci.org/jaywink/shcli) [![codecov.io](https://codecov.io/github/jaywink/shcli/coverage.svg?branch=master)](https://codecov.io/github/jaywink/shcli?branch=master) [![Dependency Status](https://gemnasium.com/badges/github.com/jaywink/shcli.svg)](https://gemnasium.com/github.com/jaywink/shcli)\n\n[![snap](https://img.shields.io/badge/snap-shcli-orange.svg)](https://uappexplorer.com/snap/ubuntu/shcli) [![PyPI version](https://badge.fury.io/py/shcli.svg)](https://pypi.python.org/pypi/shcli) [![PyPI](https://img.shields.io/pypi/pyversions/shcli.svg?maxAge=2592000)](https://pypi.python.org/pypi/shcli) [![PyPI](https://img.shields.io/pypi/l/shcli.svg?maxAge=2592000)](https://pypi.python.org/pypi/shcli)\n\n[![chat on freenode](https://img.shields.io/badge/chat-on%20freenode-brightgreen.svg)](http://webchat.freenode.net?channels=%23socialhome\u0026uio=d4) [![Chat on Gitter](https://badges.gitter.im/Socialhome/Lobby.svg)](https://gitter.im/Socialhome/Lobby) [![chat on matrix](https://img.shields.io/badge/chat-on%20matrix-orange.svg)](https://riot.im/app/#/room/#socialhome:matrix.org)\n\n# shcli\n\nPython client for [Socialhome](https://socialhome.network).\n\n## Introduction\n\nInteract with your Socialhome account using the `shcli` client. This library will provide a CLI utility and a Python API. \n\n## Installation\n\n### From PyPi\n\n    pip install shcli\n    \n### As a Snap\n\n    # For example on Ubuntu. See https://snapcraft.io/ for support on other OS's.\n    sudo snap install shcli \n    \n## Usage\n\nTool help:\n\n    shcli --help\n\n### Creating content\n  \n#### Tool\n\n    shcli create \u003cdomain.tld\u003e \u003ctoken\u003e -t \u003ctext\u003e -v \u003cvisibility\u003e\n    \nFor example:\n\n    shcli create socialhome.network 123456789abcdefg -t 'Hello, World!' \\\n        -v public\n\n#### Python API\n\n    import shcli\n    \n    shcli.create(\u003cdomain.tld\u003e, \u003ctoken\u003e, \u003ctext\u003e, \u003cvisibility\u003e)\n    \nFor example:\n\n    shcli.create(\n        \"socialhome.network\", \"123456789abcdefg\", \"Hello, World!\", \"public\"\n    )\n  \nVisibility parameter can be one of `public`, `limited`, `site` or `self`.\n\nReturns the created `Content` object as JSON or another response with possible error messages.\n\n## Development\n\n### Install for development\n\n    pip install -U -r dev-requirements.txt\n    \n### Running tests\n\n    py.test\n\n## License\n\n[MIT](https://www.tldrlegal.com/l/mit)\n\n## Author\n\nJason Robinson / https://jasonrobinson.me / `@jaywink:federator.dev`\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjaywink%2Fshcli","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjaywink%2Fshcli","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjaywink%2Fshcli/lists"}