-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconstants.py
More file actions
77 lines (77 loc) · 4.61 KB
/
Copy pathconstants.py
File metadata and controls
77 lines (77 loc) · 4.61 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
REPO_JSON = {
"id": 1,
"node_id": "test",
"name": "gardenlinux",
"full_name": "gardenlinux/gardenlinux",
"owner": {},
"private": False,
"html_url": "https://github.com/gardenlinux/gardenlinux",
"description": "Happily copied from REST API endpoints for repositories @ github.com",
"fork": False,
"url": "https://api.github.com/repos/gardenlinux/gardenlinux",
"archive_url": "https://api.github.com/repos/gardenlinux/gardenlinux/{archive_format}{/ref}",
"assignees_url": "https://api.github.com/repos/gardenlinux/gardenlinux/assignees{/user}",
"blobs_url": "https://api.github.com/repos/gardenlinux/gardenlinux/git/blobs{/sha}",
"branches_url": "https://api.github.com/repos/gardenlinux/gardenlinux/branches{/branch}",
"collaborators_url": "https://api.github.com/repos/gardenlinux/gardenlinux/collaborators{/collaborator}",
"comments_url": "https://api.github.com/repos/gardenlinux/gardenlinux/comments{/number}",
"commits_url": "https://api.github.com/repos/gardenlinux/gardenlinux/commits{/sha}",
"compare_url": "https://api.github.com/repos/gardenlinux/gardenlinux/compare/{base}...{head}",
"contents_url": "https://api.github.com/repos/gardenlinux/gardenlinux/contents/{+path}",
"contributors_url": "https://api.github.com/repos/gardenlinux/gardenlinux/contributors",
"deployments_url": "https://api.github.com/repos/gardenlinux/gardenlinux/deployments",
"downloads_url": "https://api.github.com/repos/gardenlinux/gardenlinux/downloads",
"events_url": "https://api.github.com/repos/gardenlinux/gardenlinux/events",
"forks_url": "https://api.github.com/repos/gardenlinux/gardenlinux/forks",
"git_commits_url": "https://api.github.com/repos/gardenlinux/gardenlinux/git/commits{/sha}",
"git_refs_url": "https://api.github.com/repos/gardenlinux/gardenlinux/git/refs{/sha}",
"git_tags_url": "https://api.github.com/repos/gardenlinux/gardenlinux/git/tags{/sha}",
"git_url": "git:github.com/gardenlinux/gardenlinux.git",
"issue_comment_url": "https://api.github.com/repos/gardenlinux/gardenlinux/issues/comments{/number}",
"issue_events_url": "https://api.github.com/repos/gardenlinux/gardenlinux/issues/events{/number}",
"issues_url": "https://api.github.com/repos/gardenlinux/gardenlinux/issues{/number}",
"keys_url": "https://api.github.com/repos/gardenlinux/gardenlinux/keys{/key_id}",
"labels_url": "https://api.github.com/repos/gardenlinux/gardenlinux/labels{/name}",
"languages_url": "https://api.github.com/repos/gardenlinux/gardenlinux/languages",
"merges_url": "https://api.github.com/repos/gardenlinux/gardenlinux/merges",
"milestones_url": "https://api.github.com/repos/gardenlinux/gardenlinux/milestones{/number}",
"notifications_url": "https://api.github.com/repos/gardenlinux/gardenlinux/notifications{?since,all,participating}",
"pulls_url": "https://api.github.com/repos/gardenlinux/gardenlinux/pulls{/number}",
"releases_url": "https://api.github.com/repos/gardenlinux/gardenlinux/releases{/id}",
"ssh_url": "git@github.com:gardenlinux/gardenlinux.git",
"stargazers_url": "https://api.github.com/repos/gardenlinux/gardenlinux/stargazers",
"statuses_url": "https://api.github.com/repos/gardenlinux/gardenlinux/statuses/{sha}",
"subscribers_url": "https://api.github.com/repos/gardenlinux/gardenlinux/subscribers",
"subscription_url": "https://api.github.com/repos/gardenlinux/gardenlinux/subscription",
"tags_url": "https://api.github.com/repos/gardenlinux/gardenlinux/tags",
"teams_url": "https://api.github.com/repos/gardenlinux/gardenlinux/teams",
"trees_url": "https://api.github.com/repos/gardenlinux/gardenlinux/git/trees{/sha}",
"clone_url": "https://github.com/gardenlinux/gardenlinux.git",
"mirror_url": "git:git.example.com/gardenlinux/gardenlinux",
"hooks_url": "https://api.github.com/repos/gardenlinux/gardenlinux/hooks",
"svn_url": "https://svn.github.com/gardenlinux/gardenlinux",
"homepage": "https://gardenlinux.io",
"language": None,
"forks_count": 0,
"stargazers_count": 0,
"watchers_count": 0,
"size": 1,
"default_branch": "main",
"open_issues_count": 0,
"is_template": False,
"topics": [],
"has_issues": True,
"has_projects": True,
"has_wiki": True,
"has_pages": True,
"has_downloads": True,
"has_discussions": True,
"archived": False,
"disabled": False,
"visibility": "public",
"pushed_at": "2011-01-26T19:06:43Z",
"created_at": "2011-01-26T19:01:12Z",
"updated_at": "2011-01-26T19:14:43Z",
"permissions": {"admin": False, "push": False, "pull": True},
"security_and_analysis": {},
}