--- license: mit task_categories: - text-classification - time-series-forecasting language: - en tags: - github - trending - repositories - software-engineering - popularity - time-series size_categories: - 100K= '2020-01-01'] # Get November 2025 top 10 nov_2025 = df_monthly[df_monthly['month'] == '2025-11'].head(10) print(nov_2025[['rank', 'repository', 'star_count', 'ranking_appearances']]) ``` ### Load Directly from CSV ```python import pandas as pd # Download files from the dataset page, then: df_full = pd.read_csv('github-trending-projects-full.csv') df_monthly = pd.read_csv('github-top-projects-by-month.csv') # Get top trending projects of 2024 df_2024 = df_full[df_full['date'].str.startswith('2024')] top_2024 = df_2024.groupby(['repo_owner', 'name']).size().sort_values(ascending=False).head(10) print(top_2024) ``` ### Time Series Analysis ```python import pandas as pd import matplotlib.pyplot as plt df = pd.read_csv('github-trending-projects-full.csv') df['date'] = pd.to_datetime(df['date']) # Analyze a specific project over time project = 'microsoft/vscode' project_df = df[(df['repo_owner'] == 'microsoft') & (df['name'] == 'vscode')] # Plot trending frequency over time monthly_counts = project_df.groupby(project_df['date'].dt.to_period('M')).size() monthly_counts.plot(title=f'{project} Trending Frequency') plt.ylabel('Days in Trending') plt.show() ``` ### Language Trends (requires additional metadata) ```python # Note: Language data not included in this dataset # Would need to join with GitHub API data or another dataset ``` ## 🔍 Research Applications This dataset enables analysis of: 1. **Trending Dynamics** - What makes a repository go viral? - How long do projects stay trending? - Seasonal patterns in software development 2. **Technology Adoption** - Rise and fall of programming languages - Framework popularity over time - Shift from monolithic to microservices 3. **Open Source Evolution** - Growth of educational repositories - Corporate open source contributions - Regional trending patterns 4. **Predictive Modeling** - Forecasting future trending projects - Identifying early viral indicators - Star growth prediction models 5. **Developer Behavior** - Community interest shifts - Popular project categories - Documentation and tutorial demand ## 📊 Example Insights **Most Consistently Trending (2020-2025):** 1. `jwasham/coding-interview-university` - 1,948 appearances 2. `TheAlgorithms/Python` - 1,891 appearances 3. `donnemartin/system-design-primer` - 1,865 appearances **Trending Patterns:** - Educational repositories dominate long-term trending - AI/ML projects saw massive spike in 2023-2024 - Web frameworks remain consistently popular ## 📜 License **MIT License** This dataset is released under the MIT License. You can: - ✅ Use for commercial purposes - ✅ Modify and distribute - ✅ Use in research (attribution appreciated!) - ✅ Include in proprietary software **Source Data:** Wayback Machine (public archive) **Original Content:** GitHub Trending pages ## 🙏 Acknowledgments - **GitHub** for maintaining the trending page - **Internet Archive** for the Wayback Machine - **Open Source Community** for creating amazing projects ## 📧 Contact & Contributions - **Issues/Questions:** Open an issue on the dataset repository - **Data Errors:** Please report any inconsistencies - **Contributions:** Additional metadata or corrections welcome ## 📖 Citation If you use this dataset in your research, please cite: ```bibtex @dataset{github_trending_2013_2025, title={GitHub Trending Projects Dataset (2013-2025)}, author={Your Name}, year={2025}, publisher={Hugging Face}, url={https://huggingface.co/datasets/YOUR_USERNAME/github-top-projects} } ``` ## 🔗 Related Datasets - GitHub Archive (gharchive.org) - Complete GitHub event stream - GHTorrent - GitHub data for research - Libraries.io - Package manager dependency data ## 📅 Updates - **2025-12:** Initial release (2013-08 to 2025-11) - Future updates planned quarterly ## ⚙️ Technical Details **Scraping Configuration:** - Retry attempts: 15 with exponential backoff - Delay between requests: 4-6 seconds (randomized) - Timeout: 45 seconds per request - User-Agent: Mozilla/5.0 (standard browser) **Data Processing:** - Deduplication: By date + repo + rank - Sorting: Chronological (newest first) - Encoding: UTF-8 - Format: CSV with headers ## 🐛 Known Issues See `DATASET_ISSUES.md` for comprehensive list including: - Missing data gaps - Star count timing issues - Temporal distribution variance - Recommended usage guidelines --- **Last Updated:** December 2025 **Dataset Version:** 1.0 **Status:** ✅ Complete and ready for use