{"id":26728937,"url":"https://github.com/steppacodes/updates-reqs","last_synced_at":"2026-02-14T13:34:26.304Z","repository":{"id":283851051,"uuid":"953094227","full_name":"SteppaCodes/updates-reqs","owner":"SteppaCodes","description":"update-reqs: A smart CLI tool that automatically updates your requirements.txt by fetching the latest versions of outdated libraries from PyPI.","archived":false,"fork":false,"pushed_at":"2025-03-27T02:33:46.000Z","size":30,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-09-25T00:39:49.169Z","etag":null,"topics":["dependencies","python"],"latest_commit_sha":null,"homepage":"https://pypi.org/project/update-reqs/","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/SteppaCodes.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}},"created_at":"2025-03-22T15:00:05.000Z","updated_at":"2025-03-27T02:33:49.000Z","dependencies_parsed_at":"2025-06-06T08:04:07.757Z","dependency_job_id":"b87f837e-796e-401e-8957-8df188c4f5a8","html_url":"https://github.com/SteppaCodes/updates-reqs","commit_stats":null,"previous_names":["steppacodes/updates-reqs"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/SteppaCodes/updates-reqs","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SteppaCodes%2Fupdates-reqs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SteppaCodes%2Fupdates-reqs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SteppaCodes%2Fupdates-reqs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SteppaCodes%2Fupdates-reqs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/SteppaCodes","download_url":"https://codeload.github.com/SteppaCodes/updates-reqs/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SteppaCodes%2Fupdates-reqs/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29444781,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-14T12:43:28.304Z","status":"ssl_error","status_checked_at":"2026-02-14T12:43:14.160Z","response_time":53,"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":["dependencies","python"],"created_at":"2025-03-27T22:37:40.709Z","updated_at":"2026-02-14T13:34:26.288Z","avatar_url":"https://github.com/SteppaCodes.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# update-reqs 🚀  \n\n**A smart CLI tool to clean and update your `requirements.txt` by fetching the latest package versions from PyPI.**  \n\n## ✨ Features  \n✅ **Remove version numbers** from `requirements.txt` (clean mode).  \n🚧 **Fetch and update to the latest package versions** from PyPI.  \n🔜 **Preserve comments and structure** in the requirements file.  \n🔜 **Fast batch requests** to PyPI for improved performance (**In Progress**).  \n🔜 **Dry-run mode** to preview changes before applying (**Coming Soon**).  \n🔜 **Backup option** before modifying `requirements.txt` (**Coming Soon**).  \n\n## 📦 Installation  \n\n```sh\npip install update-reqs\n```\n\n## 🚀 Usage  \n\n### **Basic Commands**  \n\n| Command | Description |\n|---------|-------------|\n| `update-reqs clean --file requirements.txt` | Removes all version numbers from the file. |\n| `update-reqs update --file requirements.txt` | Updates all packages to the latest versions. |\n| `update-reqs update --file path/to/requirements.txt` | Updates a specific requirements file. |\n| `update-reqs --help` | Displays help and usage information. |\n\n## 📌 Feature Checklist  \n| Feature | Status |\n|---------|--------|\n| Remove version numbers | ✅ Done |\n| Check outdated packages | ✅ Done |\n| Fetch latest versions | 🚧 In Progress |\n| Preserve comments and formatting | 🔜 Coming Soon |\n| Parallelized requests for speed | 🔜 Coming Soon |\n| Dry-run mode (preview updates) | 🔜 Coming Soon |\n| Backup before modifying file | 🔜 Coming Soon |\n\n## 🔥 How It Works  \n1. **Reads `requirements.txt`** and extracts package names.  \n2. **Fetches the latest version** of each package from PyPI.  \n3. **Updates the file** while keeping comments and spacing intact.  \n4. **Writes back** the updated `requirements.txt`.  \n\n## 🤝 Contributing  \nWant to help improve `update-reqs`? Follow these steps:  \n\n1. **Fork the repo**.  \n2. **Clone your fork**:  \n   ```sh\n   git clone https://github.com/your-username/update-reqs.git\n   cd update-reqs\n   ```  \n3. **Install dependencies**:  \n   ```sh\n   pip install -r requirements.txt\n   ```  \n4. **Create a new branch**:  \n   ```sh\n   git checkout -b feature-name\n   ```  \n5. **Submit a Pull Request!** 🚀  \n\n## 📜 License  \nThis project is licensed under the MIT License.  \n\n🔹 Happy Coding!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsteppacodes%2Fupdates-reqs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsteppacodes%2Fupdates-reqs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsteppacodes%2Fupdates-reqs/lists"}