{"id":20487147,"url":"https://github.com/tiagopog/gropen","last_synced_at":"2025-07-24T10:34:14.988Z","repository":{"id":57436118,"uuid":"343164765","full_name":"tiagopog/gropen","owner":"tiagopog","description":"gropen - git remote open","archived":false,"fork":false,"pushed_at":"2021-09-08T11:50:16.000Z","size":57,"stargazers_count":3,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-05-22T02:08:56.365Z","etag":null,"topics":["bitbucket","cli","developer-tools","git","github","gitlab","python"],"latest_commit_sha":null,"homepage":"","language":"Python","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/tiagopog.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}},"created_at":"2021-02-28T17:16:51.000Z","updated_at":"2023-12-19T02:06:32.000Z","dependencies_parsed_at":"2022-09-01T18:43:13.204Z","dependency_job_id":null,"html_url":"https://github.com/tiagopog/gropen","commit_stats":null,"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/tiagopog/gropen","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tiagopog%2Fgropen","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tiagopog%2Fgropen/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tiagopog%2Fgropen/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tiagopog%2Fgropen/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tiagopog","download_url":"https://codeload.github.com/tiagopog/gropen/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tiagopog%2Fgropen/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266828501,"owners_count":23991216,"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","status":"online","status_checked_at":"2025-07-24T02:00:09.469Z","response_time":99,"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":["bitbucket","cli","developer-tools","git","github","gitlab","python"],"created_at":"2024-11-15T16:40:05.097Z","updated_at":"2025-07-24T10:34:14.932Z","avatar_url":"https://github.com/tiagopog.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# gropen\n\n![PyPI](https://img.shields.io/pypi/v/gropen)\n[![Maintainability](https://api.codeclimate.com/v1/badges/513113a78c8843c094a2/maintainability)](https://codeclimate.com/github/tiagopog/gropen/maintainability)\n\n`gropen` (Git Remote Open) is a simple command line application for opening\nlocal files and directories in remote git repositories.\n\n![gropen_example](https://user-images.githubusercontent.com/760933/111877395-f8a0b400-8981-11eb-98c8-ad5f0a21b78d.gif)\n\n## Supported repos\n\n- [x] Bitbucket\n- [x] GitHub\n- [ ] GitLab\n\n## Supported editors\n\n- [ ] Sublime\n- [x] Vim ([gropen.vim](https://github.com/tiagopog/gropen.vim))\n- [x] VS Code ([gropen.vscode](https://github.com/tiagopog/gropen-vscode))\n\n## Supported systems\n\n- [x] Linux\n- [x] macOS\n- [x] Windows\n\n# Installation\n\n```\npip install gropen\n```\n\n**NOTE:** `gropen` requires Python 3.6 or greater installed on your local environment.\n\n# Usage\n\nHere are some example of what `gropen` can open on your project's remote repo.\n\nOpen current directory:\n\n```\ngropen .\n```\n\nOpen another directory:\n\n```\ngropen gropen/\n```\n\nOpen a file:\n\n```\ngropen gropen/gropen.py\n```\n\nOpen a file pointing out the lines of code to be highlighted:\n\n```\ngropen gropen/gropen.py:42\ngropen gropen/gropen.py:16,32\n\n```\n\nOpen file from an outter directory:\n\n```\ncd ~/Dev\ngropen python/gropen/gropen/gropen.py:20,30\n```\n\nOpen file from an inner directory:\n\n```\ncd ~/Dev/python/gropen/gropen\ngropen gropen.py:20,30\n```\n\n# TODO\n\n- [x] Add support for GitHub repositories;\n- [x] Add support for Bitbucket repositories;\n- [x] Add support for GitLab repositories;\n- [x] Open current directory;\n- [x] Open arbitrary directory and files;\n- [x] Open in a line or range of lines in the file;\n- [ ] Open files in a specific commit;\n- [x] Handle relative and absolute paths;\n- [x] Support flag for only displaying the URL instead of opening it in the browser;\n- [x] Create Vim plugin;\n- [x] Create VS Code plugin;\n- [ ] Create Sublime plugin.\n\n# Contributing\n\nBug reports and pull requests are welcome on GitHub at [https://github.com/tiagopog/gropen/](https://github.com/tiagopog/gropen/).\nThis project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the\n[Contributor Covenant](https://www.contributor-covenant.org/) code of conduct.\n\n# License\n\nThis package is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftiagopog%2Fgropen","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftiagopog%2Fgropen","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftiagopog%2Fgropen/lists"}