{"id":21711330,"url":"https://github.com/rignaneseleo/flutter-pub-version-pychecker","last_synced_at":"2026-04-18T04:03:13.763Z","repository":{"id":132272660,"uuid":"191557114","full_name":"rignaneseleo/Flutter-Pub-Version-PyChecker","owner":"rignaneseleo","description":"With this python script you can check the last version of the plugins that are running in your Flutter project.","archived":false,"fork":false,"pushed_at":"2019-06-12T11:43:58.000Z","size":18,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-20T18:17:41.244Z","etag":null,"topics":["android","androidstudio","checker","dart","flutter","pubspec","pubspec-maintenance","python","script","update-checker","update-script"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"agpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/rignaneseleo.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}},"created_at":"2019-06-12T11:24:48.000Z","updated_at":"2024-02-29T16:34:59.000Z","dependencies_parsed_at":null,"dependency_job_id":"9b5082be-6dbd-4b92-aa33-f49887753a85","html_url":"https://github.com/rignaneseleo/Flutter-Pub-Version-PyChecker","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/rignaneseleo/Flutter-Pub-Version-PyChecker","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rignaneseleo%2FFlutter-Pub-Version-PyChecker","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rignaneseleo%2FFlutter-Pub-Version-PyChecker/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rignaneseleo%2FFlutter-Pub-Version-PyChecker/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rignaneseleo%2FFlutter-Pub-Version-PyChecker/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rignaneseleo","download_url":"https://codeload.github.com/rignaneseleo/Flutter-Pub-Version-PyChecker/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rignaneseleo%2FFlutter-Pub-Version-PyChecker/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31955920,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-18T00:39:45.007Z","status":"online","status_checked_at":"2026-04-18T02:00:07.018Z","response_time":103,"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":["android","androidstudio","checker","dart","flutter","pubspec","pubspec-maintenance","python","script","update-checker","update-script"],"created_at":"2024-11-25T23:21:32.107Z","updated_at":"2026-04-18T04:03:13.331Z","avatar_url":"https://github.com/rignaneseleo.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Tool to find the last version of Flutter plugins\n### This is a free open source tool to quikly get the list of the last versions of your Flutter plugins.\n\n## How TO\nFirst you have to edit your pubspec.yaml adding ```#vcontrol-start``` before the first plugin and ```#vcontrol-end``` after the last plugin you want to analyze.\n\nThen run ``` py flutter_pychecker.py```  or ``` python flutter_pychecker.py```  to execute the tool.\n\n## Example\nMy pubspec.yaml contains:\n```\n[...]\ndependencies:\n  flutter:\n    sdk: flutter\n\n  #vcontrol-start\n  sqflite: ^1.1.5\n  path_provider: ^1.1.0\n  curved_navigation_bar: ^0.1.26\n  fluttertoast: ^3.0.3\n  #esys_flutter_share: ^1.0.2\n  intl: ^0.15.8\n  flutter_speed_dial: ^1.1.2\n\n  photo: ^0.3.4\n  #image_picker: ^0.6.0+3\n  photo_view: ^0.4.0\n  image_downloader: ^0.15.2\n  image: ^2.0.7\n  cached_network_image: ^0.8.0\n  #vcontrol-end\n[...]\n``` \n\nSo let's start the tool and insert the absolute path of pubspec.yaml as required:\n``` \nInsert the absolute path of your pubspec.yaml: \n/Users/leonardorignanese/Progetti/Flutter/MyGrandKids/my_grand_kids/pubspec.yaml\n``` \n\nThen you'll get the list of active plugins with their last version:\n``` \nFound 11 plugins:\n        The last version of sqflite: ^1.1.5 is 1.1.5\n        The last version of path_provider: ^1.1.0 is 1.1.0\n        The last version of curved_navigation_bar: ^0.1.26 is 0.2.20\n        The last version of fluttertoast: ^3.0.3 is 3.1.0\n        The last version of intl: ^0.15.8 is 0.15.8\n        The last version of flutter_speed_dial: ^1.1.2 is 1.2.1\n        The last version of photo: ^0.3.4 is 0.3.4+1\n        The last version of photo_view: ^0.4.0 is 0.4.0\n        The last version of image_downloader: ^0.15.2 is 0.15.4\n        The last version of image: ^2.0.7 is 2.1.4\n        The last version of cached_network_image: ^0.8.0 is 0.8.0\n```\n\nThe tool can return also the updated list to copy and replace in your file:\n```\nDo you want to see the list updated to copy and paste in your pubspec.yaml?[Y/n]\nY\n\n#vcontrol-start\n  sqflite: ^1.1.5\n  path_provider: ^1.1.0\n  curved_navigation_bar: ^0.2.20\n  fluttertoast: ^3.1.0\n  intl: ^0.15.8\n  flutter_speed_dial: ^1.2.1\n  photo: ^0.3.4+1\n  photo_view: ^0.4.0\n  image_downloader: ^0.15.4\n  image: ^2.1.4\n  cached_network_image: ^0.8.0\n  #esys_flutter_share: ^1.0.2\n  #image_picker: ^0.6.0+3\n#vcontrol-end\n```\n\nPeace\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frignaneseleo%2Fflutter-pub-version-pychecker","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frignaneseleo%2Fflutter-pub-version-pychecker","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frignaneseleo%2Fflutter-pub-version-pychecker/lists"}