senal88 commited on
Commit
e678e4f
Β·
verified Β·
1 Parent(s): 826a478

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +96 -0
README.md ADDED
@@ -0,0 +1,96 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ task_categories:
4
+ - other
5
+ tags:
6
+ - github
7
+ - repositories
8
+ - backup
9
+ - metadata
10
+ language:
11
+ - en
12
+ - pt
13
+ size_categories:
14
+ - n<1K
15
+ pretty_name: GitHub Repositories Backup - senal88
16
+ ---
17
+
18
+ # GitHub Repositories Backup - senal88
19
+
20
+ > **Last Updated:** 2026-01-05 08:45:08
21
+
22
+ ## πŸ“Š Dataset Overview
23
+
24
+ This dataset contains metadata about all GitHub repositories owned by [@senal88](https://github.com/senal88).
25
+
26
+ ### Statistics
27
+
28
+ - **Total Repositories:** 682
29
+ - **Private Repositories:** 208
30
+ - **Public Repositories:** 474
31
+ - **Forks:** 448
32
+ - **Total Stars:** 91
33
+ - **Total Size:** ~48.91 GB
34
+
35
+ ## πŸ“ Files
36
+
37
+ ### `repos.csv`
38
+ Tabular format with all repository metadata:
39
+ - Name, URL, Type (Private/Public)
40
+ - Creation date, Last update, Last push
41
+ - Size, Stars, Forks
42
+ - Primary language, Description
43
+
44
+ ### `repos_organized.json`
45
+ Structured JSON with:
46
+ - Metadata and statistics
47
+ - Repositories grouped by update date
48
+ - Repositories grouped by creation date
49
+
50
+ ### `repos.md`
51
+ Markdown table for easy viewing
52
+
53
+ ## πŸ”„ Update Frequency
54
+
55
+ This dataset is updated daily via automated backup.
56
+
57
+ ## πŸ“ Schema
58
+
59
+ ```json
60
+ {
61
+ "name": "string",
62
+ "url": "string",
63
+ "type": "private|public",
64
+ "is_fork": "boolean",
65
+ "created_at": "date",
66
+ "updated_at": "date",
67
+ "pushed_at": "date",
68
+ "size_kb": "integer",
69
+ "stars": "integer",
70
+ "forks": "integer",
71
+ "language": "string",
72
+ "description": "string"
73
+ }
74
+ ```
75
+
76
+ ## πŸ“š Usage
77
+
78
+ ```python
79
+ from datasets import load_dataset
80
+
81
+ # Load dataset
82
+ ds = load_dataset("senal88/github-repos-backup")
83
+
84
+ # Load as pandas
85
+ import pandas as pd
86
+ df = pd.read_csv("hf://datasets/senal88/github-repos-backup/repos.csv")
87
+ ```
88
+
89
+ ## πŸ”— Links
90
+
91
+ - [GitHub Profile](https://github.com/senal88)
92
+ - [Backup System Documentation](https://github.com/senal88/prompts-ssot)
93
+
94
+ ## πŸ“„ License
95
+
96
+ MIT License - This dataset contains public repository metadata.