github-reserved-names 2024.10.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
Metadata-Version: 2.3
|
|
2
|
+
Name: github_reserved_names
|
|
3
|
+
Version: 2024.10.1
|
|
4
|
+
Summary: A list of paths that GitHub uses which aren't real users
|
|
5
|
+
Project-URL: Homepage, https://github.com/Julian/github-reserved-names
|
|
6
|
+
Project-URL: Issues, https://github.com/Julian/github-reserved-names/issues/
|
|
7
|
+
Project-URL: Source, https://github.com/Julian/github-reserved-names
|
|
8
|
+
Author-email: Julian Berman <Julian+gh-reserved-names@GrayVines.com>
|
|
9
|
+
License-File: COPYING
|
|
10
|
+
Keywords: github,github api
|
|
11
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
12
|
+
Classifier: Intended Audience :: Developers
|
|
13
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
14
|
+
Classifier: Operating System :: OS Independent
|
|
15
|
+
Classifier: Programming Language :: Python
|
|
16
|
+
Classifier: Programming Language :: Python :: 3
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
20
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
21
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
22
|
+
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
23
|
+
Classifier: Programming Language :: Python :: Implementation :: PyPy
|
|
24
|
+
Classifier: Typing :: Typed
|
|
25
|
+
Requires-Python: >=3.9
|
|
26
|
+
Description-Content-Type: text/x-rst
|
|
27
|
+
|
|
28
|
+
=========================
|
|
29
|
+
``github-reserved-names``
|
|
30
|
+
=========================
|
|
31
|
+
|
|
32
|
+
|PyPI| |Pythons| |CI|
|
|
33
|
+
|
|
34
|
+
.. |PyPI| image:: https://img.shields.io/pypi/v/github-reserved-names.svg
|
|
35
|
+
:alt: PyPI version
|
|
36
|
+
:target: https://pypi.org/project/github-reserved-names/
|
|
37
|
+
|
|
38
|
+
.. |Pythons| image:: https://img.shields.io/pypi/pyversions/github-reserved-names.svg
|
|
39
|
+
:alt: Supported Python versions
|
|
40
|
+
:target: https://pypi.org/project/github-reserved-names/
|
|
41
|
+
|
|
42
|
+
.. |CI| image:: https://github.com/Julian/github-reserved-names/workflows/CI/badge.svg
|
|
43
|
+
:alt: Build status
|
|
44
|
+
:target: https://github.com/Julian/github-reserved-names/actions?query=workflow%3ACI
|
|
45
|
+
|
|
46
|
+
Usage
|
|
47
|
+
-----
|
|
48
|
+
|
|
49
|
+
A single ``set`` is exposed, containing the reserved names:
|
|
50
|
+
|
|
51
|
+
.. code:: python
|
|
52
|
+
|
|
53
|
+
>>> import github_reserved_names
|
|
54
|
+
>>> "sponsors" in github_reserved_names.ALL
|
|
55
|
+
True
|
|
56
|
+
|
|
57
|
+
|
|
58
|
+
Source
|
|
59
|
+
------
|
|
60
|
+
|
|
61
|
+
The source of this data is the `npm github-reserved-names project <https://npm.im/github-reserved-names>`_
|
|
62
|
+
|
|
63
|
+
This module attempts to provide a mirror of that project as a Python module.
|
|
64
|
+
|
|
65
|
+
If you feel a path is missing, please file a pull request upstream and it will be pulled in here.
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
github_reserved_names.py,sha256=zmZKu1TS-EfgclA9rcfj2ClhTAQN_uY3C5ZPVn3uRw4,4295
|
|
2
|
+
github_reserved_names-2024.10.1.dist-info/METADATA,sha256=eJOHkfxitTVXBfEU1Kzf-6qzdKCtOWJsfNGBIYGMQVw,2364
|
|
3
|
+
github_reserved_names-2024.10.1.dist-info/WHEEL,sha256=1yFddiXMmvYK7QYTqtRNtX66WJ0Mz8PYEiEUoOUUxRY,87
|
|
4
|
+
github_reserved_names-2024.10.1.dist-info/licenses/COPYING,sha256=3n0m_JxeDoZwMZ543gYjG3zGXiwBeyEnGVQSY3WsIDo,3363
|
|
5
|
+
github_reserved_names-2024.10.1.dist-info/RECORD,,
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
Copyright (c) 2023 Julian Berman
|
|
2
|
+
|
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
4
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
5
|
+
in the Software without restriction, including without limitation the rights
|
|
6
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
7
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
8
|
+
furnished to do so, subject to the following conditions:
|
|
9
|
+
|
|
10
|
+
The above copyright notice and this permission notice shall be included in
|
|
11
|
+
all copies or substantial portions of the Software.
|
|
12
|
+
|
|
13
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
14
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
15
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
16
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
17
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
18
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
19
|
+
THE SOFTWARE.
|
|
20
|
+
|
|
21
|
+
--
|
|
22
|
+
|
|
23
|
+
Original license from the npm source package reproduced below:
|
|
24
|
+
|
|
25
|
+
The MIT License (MIT)
|
|
26
|
+
|
|
27
|
+
Copyright (c) Rob Garrison <wowmotty@gmail.com>
|
|
28
|
+
|
|
29
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
30
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
31
|
+
in the Software without restriction, including without limitation the rights
|
|
32
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
33
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
34
|
+
furnished to do so, subject to the following conditions:
|
|
35
|
+
|
|
36
|
+
The above copyright notice and this permission notice shall be included in
|
|
37
|
+
all copies or substantial portions of the Software.
|
|
38
|
+
|
|
39
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
40
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
41
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
42
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
43
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
44
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
45
|
+
THE SOFTWARE.
|
|
46
|
+
|
|
47
|
+
--
|
|
48
|
+
|
|
49
|
+
Some files in the bin/ directory use the below license:
|
|
50
|
+
|
|
51
|
+
The MIT License (MIT)
|
|
52
|
+
|
|
53
|
+
Copyright (c) 2016 Dustin Ingram
|
|
54
|
+
|
|
55
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
56
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
57
|
+
in the Software without restriction, including without limitation the rights
|
|
58
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
59
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
60
|
+
furnished to do so, subject to the following conditions:
|
|
61
|
+
|
|
62
|
+
The above copyright notice and this permission notice shall be included in all
|
|
63
|
+
copies or substantial portions of the Software.
|
|
64
|
+
|
|
65
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
66
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
67
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
68
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
69
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
70
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
71
|
+
SOFTWARE.
|
github_reserved_names.py
ADDED
|
@@ -0,0 +1,293 @@
|
|
|
1
|
+
"""
|
|
2
|
+
A collection of reserved names used by GitHub which are not real users.
|
|
3
|
+
|
|
4
|
+
The source of this data is the npm github-reserved-names project which lives
|
|
5
|
+
at https://npm.im/github-reserved-names.
|
|
6
|
+
"""
|
|
7
|
+
|
|
8
|
+
ALL: set[str] = {
|
|
9
|
+
"300",
|
|
10
|
+
"302",
|
|
11
|
+
"400",
|
|
12
|
+
"401",
|
|
13
|
+
"402",
|
|
14
|
+
"403",
|
|
15
|
+
"404",
|
|
16
|
+
"405",
|
|
17
|
+
"406",
|
|
18
|
+
"407",
|
|
19
|
+
"408",
|
|
20
|
+
"409",
|
|
21
|
+
"410",
|
|
22
|
+
"411",
|
|
23
|
+
"412",
|
|
24
|
+
"413",
|
|
25
|
+
"414",
|
|
26
|
+
"415",
|
|
27
|
+
"416",
|
|
28
|
+
"417",
|
|
29
|
+
"418",
|
|
30
|
+
"419",
|
|
31
|
+
"420",
|
|
32
|
+
"421",
|
|
33
|
+
"422",
|
|
34
|
+
"423",
|
|
35
|
+
"424",
|
|
36
|
+
"425",
|
|
37
|
+
"426",
|
|
38
|
+
"427",
|
|
39
|
+
"428",
|
|
40
|
+
"429",
|
|
41
|
+
"430",
|
|
42
|
+
"431",
|
|
43
|
+
"500",
|
|
44
|
+
"501",
|
|
45
|
+
"502",
|
|
46
|
+
"503",
|
|
47
|
+
"504",
|
|
48
|
+
"505",
|
|
49
|
+
"506",
|
|
50
|
+
"507",
|
|
51
|
+
"508",
|
|
52
|
+
"509",
|
|
53
|
+
"510",
|
|
54
|
+
"511",
|
|
55
|
+
"693",
|
|
56
|
+
"694",
|
|
57
|
+
"695",
|
|
58
|
+
"900",
|
|
59
|
+
"about",
|
|
60
|
+
"access",
|
|
61
|
+
"account",
|
|
62
|
+
"admin",
|
|
63
|
+
"advisories",
|
|
64
|
+
"anonymous",
|
|
65
|
+
"any",
|
|
66
|
+
"api",
|
|
67
|
+
"apps",
|
|
68
|
+
"attributes",
|
|
69
|
+
"auth",
|
|
70
|
+
"billing",
|
|
71
|
+
"blob",
|
|
72
|
+
"blog",
|
|
73
|
+
"bounty",
|
|
74
|
+
"branches",
|
|
75
|
+
"business",
|
|
76
|
+
"businesses",
|
|
77
|
+
"c",
|
|
78
|
+
"cache",
|
|
79
|
+
"case-studies",
|
|
80
|
+
"categories",
|
|
81
|
+
"central",
|
|
82
|
+
"certification",
|
|
83
|
+
"changelog",
|
|
84
|
+
"chat",
|
|
85
|
+
"cla",
|
|
86
|
+
"cloud",
|
|
87
|
+
"codereview",
|
|
88
|
+
"collection",
|
|
89
|
+
"collections",
|
|
90
|
+
"comments",
|
|
91
|
+
"commit",
|
|
92
|
+
"commits",
|
|
93
|
+
"community",
|
|
94
|
+
"companies",
|
|
95
|
+
"compare",
|
|
96
|
+
"contact",
|
|
97
|
+
"contributing",
|
|
98
|
+
"cookbook",
|
|
99
|
+
"coupons",
|
|
100
|
+
"customer-stories",
|
|
101
|
+
"customer",
|
|
102
|
+
"customers",
|
|
103
|
+
"dashboard-feed",
|
|
104
|
+
"dashboard",
|
|
105
|
+
"dashboards",
|
|
106
|
+
"design",
|
|
107
|
+
"develop",
|
|
108
|
+
"developer",
|
|
109
|
+
"diff",
|
|
110
|
+
"discover",
|
|
111
|
+
"discussions",
|
|
112
|
+
"docs",
|
|
113
|
+
"downloads",
|
|
114
|
+
"downtime",
|
|
115
|
+
"editor",
|
|
116
|
+
"editors",
|
|
117
|
+
"edu",
|
|
118
|
+
"enterprise",
|
|
119
|
+
"events",
|
|
120
|
+
"explore",
|
|
121
|
+
"featured",
|
|
122
|
+
"features",
|
|
123
|
+
"files",
|
|
124
|
+
"fixtures",
|
|
125
|
+
"forked",
|
|
126
|
+
"garage",
|
|
127
|
+
"ghost",
|
|
128
|
+
"gist",
|
|
129
|
+
"gists",
|
|
130
|
+
"graphs",
|
|
131
|
+
"guide",
|
|
132
|
+
"guides",
|
|
133
|
+
"help",
|
|
134
|
+
"help-wanted",
|
|
135
|
+
"home",
|
|
136
|
+
"hooks",
|
|
137
|
+
"hosting",
|
|
138
|
+
"hovercards",
|
|
139
|
+
"identity",
|
|
140
|
+
"images",
|
|
141
|
+
"inbox",
|
|
142
|
+
"individual",
|
|
143
|
+
"info",
|
|
144
|
+
"integration",
|
|
145
|
+
"interfaces",
|
|
146
|
+
"introduction",
|
|
147
|
+
"invalid-email-address",
|
|
148
|
+
"investors",
|
|
149
|
+
"issues",
|
|
150
|
+
"jobs",
|
|
151
|
+
"join",
|
|
152
|
+
"journal",
|
|
153
|
+
"journals",
|
|
154
|
+
"lab",
|
|
155
|
+
"labs",
|
|
156
|
+
"languages",
|
|
157
|
+
"launch",
|
|
158
|
+
"layouts",
|
|
159
|
+
"learn",
|
|
160
|
+
"legal",
|
|
161
|
+
"library",
|
|
162
|
+
"linux",
|
|
163
|
+
"listings",
|
|
164
|
+
"lists",
|
|
165
|
+
"login",
|
|
166
|
+
"logos",
|
|
167
|
+
"logout",
|
|
168
|
+
"mac",
|
|
169
|
+
"maintenance",
|
|
170
|
+
"malware",
|
|
171
|
+
"man",
|
|
172
|
+
"marketplace",
|
|
173
|
+
"mention",
|
|
174
|
+
"mentioned",
|
|
175
|
+
"mentioning",
|
|
176
|
+
"mentions",
|
|
177
|
+
"migrating",
|
|
178
|
+
"milestones",
|
|
179
|
+
"mine",
|
|
180
|
+
"mirrors",
|
|
181
|
+
"mobile",
|
|
182
|
+
"navigation",
|
|
183
|
+
"network",
|
|
184
|
+
"new",
|
|
185
|
+
"news",
|
|
186
|
+
"none",
|
|
187
|
+
"nonprofit",
|
|
188
|
+
"nonprofits",
|
|
189
|
+
"notices",
|
|
190
|
+
"notifications",
|
|
191
|
+
"oauth",
|
|
192
|
+
"offer",
|
|
193
|
+
"open-source",
|
|
194
|
+
"organisations",
|
|
195
|
+
"organizations",
|
|
196
|
+
"orgs",
|
|
197
|
+
"pages",
|
|
198
|
+
"partners",
|
|
199
|
+
"payments",
|
|
200
|
+
"personal",
|
|
201
|
+
"plans",
|
|
202
|
+
"plugins",
|
|
203
|
+
"popular",
|
|
204
|
+
"popularity",
|
|
205
|
+
"posts",
|
|
206
|
+
"press",
|
|
207
|
+
"pricing",
|
|
208
|
+
"professional",
|
|
209
|
+
"projects",
|
|
210
|
+
"pulls",
|
|
211
|
+
"raw",
|
|
212
|
+
"readme",
|
|
213
|
+
"recommendations",
|
|
214
|
+
"redeem",
|
|
215
|
+
"releases",
|
|
216
|
+
"render",
|
|
217
|
+
"reply",
|
|
218
|
+
"repositories",
|
|
219
|
+
"resources",
|
|
220
|
+
"restore",
|
|
221
|
+
"revert",
|
|
222
|
+
"save-net-neutrality",
|
|
223
|
+
"saved",
|
|
224
|
+
"scraping",
|
|
225
|
+
"search",
|
|
226
|
+
"security",
|
|
227
|
+
"services",
|
|
228
|
+
"sessions",
|
|
229
|
+
"settings",
|
|
230
|
+
"shareholders",
|
|
231
|
+
"shop",
|
|
232
|
+
"showcases",
|
|
233
|
+
"signin",
|
|
234
|
+
"signup",
|
|
235
|
+
"site",
|
|
236
|
+
"spam",
|
|
237
|
+
"sponsors",
|
|
238
|
+
"ssh",
|
|
239
|
+
"staff",
|
|
240
|
+
"starred",
|
|
241
|
+
"stars",
|
|
242
|
+
"static",
|
|
243
|
+
"status",
|
|
244
|
+
"statuses",
|
|
245
|
+
"storage",
|
|
246
|
+
"store",
|
|
247
|
+
"stories",
|
|
248
|
+
"styleguide",
|
|
249
|
+
"subscriptions",
|
|
250
|
+
"suggest",
|
|
251
|
+
"suggestion",
|
|
252
|
+
"suggestions",
|
|
253
|
+
"support",
|
|
254
|
+
"suspended",
|
|
255
|
+
"talks",
|
|
256
|
+
"teach",
|
|
257
|
+
"teacher",
|
|
258
|
+
"teachers",
|
|
259
|
+
"teaching",
|
|
260
|
+
"team",
|
|
261
|
+
"teams",
|
|
262
|
+
"ten",
|
|
263
|
+
"terms",
|
|
264
|
+
"timeline",
|
|
265
|
+
"topic",
|
|
266
|
+
"topics",
|
|
267
|
+
"tos",
|
|
268
|
+
"tour",
|
|
269
|
+
"train",
|
|
270
|
+
"training",
|
|
271
|
+
"translations",
|
|
272
|
+
"tree",
|
|
273
|
+
"trending",
|
|
274
|
+
"updates",
|
|
275
|
+
"username",
|
|
276
|
+
"users",
|
|
277
|
+
"visualization",
|
|
278
|
+
"w",
|
|
279
|
+
"watching",
|
|
280
|
+
"wiki",
|
|
281
|
+
"windows",
|
|
282
|
+
"works-with",
|
|
283
|
+
"www0",
|
|
284
|
+
"www1",
|
|
285
|
+
"www2",
|
|
286
|
+
"www3",
|
|
287
|
+
"www4",
|
|
288
|
+
"www5",
|
|
289
|
+
"www6",
|
|
290
|
+
"www7",
|
|
291
|
+
"www8",
|
|
292
|
+
"www9",
|
|
293
|
+
}
|