{"id":36656595,"url":"https://github.com/anafvana/pickpack","last_synced_at":"2026-01-12T10:20:13.135Z","repository":{"id":44989157,"uuid":"511187256","full_name":"anafvana/pickpack","owner":"anafvana","description":"Curses-based (and pick-based) interactive picker for the terminal. Now covering trees also!","archived":false,"fork":false,"pushed_at":"2024-07-27T19:49:46.000Z","size":271,"stargazers_count":20,"open_issues_count":0,"forks_count":4,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-12-07T09:31:07.978Z","etag":null,"topics":["pick","picker","python","tree","tree-structure"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":"wong2/pick","license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/anafvana.png","metadata":{"files":{"readme":"README-dev.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}},"created_at":"2022-07-06T15:12:43.000Z","updated_at":"2025-06-09T18:51:03.000Z","dependencies_parsed_at":"2024-01-13T06:52:26.509Z","dependency_job_id":"cd843655-c563-40a8-a8fd-1838e029c9d5","html_url":"https://github.com/anafvana/pickpack","commit_stats":{"total_commits":112,"total_committers":15,"mean_commits":7.466666666666667,"dds":0.5446428571428572,"last_synced_commit":"d2839b0bb3fe953e034e595b80d936aa41b5095f"},"previous_names":[],"tags_count":17,"template":false,"template_full_name":null,"purl":"pkg:github/anafvana/pickpack","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/anafvana%2Fpickpack","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/anafvana%2Fpickpack/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/anafvana%2Fpickpack/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/anafvana%2Fpickpack/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/anafvana","download_url":"https://codeload.github.com/anafvana/pickpack/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/anafvana%2Fpickpack/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28338152,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-12T06:09:07.588Z","status":"ssl_error","status_checked_at":"2026-01-12T06:05:18.301Z","response_time":98,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5: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":["pick","picker","python","tree","tree-structure"],"created_at":"2026-01-12T10:20:11.261Z","updated_at":"2026-01-12T10:20:13.096Z","avatar_url":"https://github.com/anafvana.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# `pickpack` for devs\n\nIf you are thinking of cloning or modifying `pickpack`, here are some tips, divided into the following sections:\n\n\u003c!-- TOC start --\u003e\n\n- [`poetry`](#poetry)\n  - [Installing `poetry`](#installing-poetry)\n  - [Installing dependencies](#installing-dependencies)\n  - [Updating dependencies](#updating-dependencies)\n- [`ci`](#ci)\n- [Distributing on PyPi](#distributing-on-pypi)\n  - [`twine`](#twine)\n- [Testing](#testing)\n\u003c!-- TOC end --\u003e\n\n## `poetry`\n\n`pickpack` has been packaged using `poetry`\n\n### Installing `poetry`\n\nYou can either install `poetry` through your distribution's package manager or with\n\n```\ncurl -sSL https://install.python-poetry.org | python3 -\n```\n\nBeware: `poetry` lock files are not always backwards compatible. Current lock files (`poetry 1.4`) are not compatible with `poetry 1.2`.\n\n### Installing dependencies\n\nOnce you have `poetry`, you can run the following command to install dependencies:\n\n```\npoetry install\n```\n\nIf you want to also install dependencies from a specific group (for example, `dev`), use:\n\n```\npoetry install --with dev\n```\n\n### Updating dependencies\n\nWhen adding new dependencies or updating existing ones in your `pyproject.toml`, remember to update the lock file with\n\n```\npoetry lock\n```\n\nIf you want to avoid upgrading dependencies, you may run\n\n```\npoetry lock --no-update\n```\n\n## `ci`\n\nIf you want to continue using the CI pipeline under `.github/workflows/ci.yml`, you will need to take a few elements into account:\n\n1. Python version: what versions will your fork support?\n2. OSs, especially Ubuntu LTS: what versions will you test with?\n   - From experience, testing with a very old version of Ubuntu may lead to fails simply because the image has become unavailable\n3. `poetry` version: as previously said, `poetry` lock files are not always backwards compatible. Make sure you are running `poetry` commands with a compatible version of the package.\n\n## Distributing on PyPi\n\nThere are different ways to distribute packages on PyPi. For `pickpack`, `twine` has been used. This one is up to you.\n\nTo bundle your package and get it ready for upload:\n\n```\npoetry build\n```\n\n### `twine`\n\nIf you choose to use `twine`, you can install it with\n\n```\npip install twine\n```\n\nThen, set up your credentials in `$HOME/.pypirc':\n\n```\n[pypi]\n\tusername = __token__\n\tpassword = \u003ctoken generated on PyPi\u003e\n```\n\nFinally, upload your package with\n\n```\ntwine upload -r pypi path/to/package/dist/*\n```\n\n## Testing\n\nYou can either write a script which runs whatever tests you want on its own or alter the tests already specified under `tests/test_pickpack.py`.\n\nTo run the aforementioned file using `poetry`, use the command:\n\n```\npoetry run python tests/test_pickpack.py\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fanafvana%2Fpickpack","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fanafvana%2Fpickpack","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fanafvana%2Fpickpack/lists"}