INNER CODE UNIT · Python
content
jpush/jpush-react-native · .claude/skills/update-sdk/scripts/changelog_fetcher.py:75
content = fetch_changelog(urls[platform], version)
result[platform] = content
print(content)
cache_path = ".claude/skills/update-sdk/scripts/.changelog_cache.json"
with open(cache_path, "w", encoding="utf-8") as f:
json.dump(result, f, ensure_ascii=False, indent=2)
print(f"\n=== Changelog saved to {cache_path} ===")
if __name__ == "__main__":
main()