mirror of
https://github.com/status-im/PyGithub.git
synced 2026-08-31 19:01:15 +00:00
12 lines
259 B
Python
12 lines
259 B
Python
from GithubObject import *
|
|
|
|
GitBlob = GithubObject(
|
|
"GitBlob",
|
|
BaseUrl( lambda obj: obj._repo._baseUrl() + "/git/blobs/" + obj.sha ),
|
|
InternalSimpleAttributes(
|
|
"sha", "size", "url",
|
|
"content", "encoding",
|
|
"_repo",
|
|
),
|
|
)
|