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
|
from typing import Any, Dict, List, Optional
from github.GithubObject import CompletableGithubObject
from github.License import License
from github.Repository import Repository
class ContentFile(CompletableGithubObject):
def __repr__(self) -> str: ...
def _initAttributes(self) -> None: ...
def _useAttributes(self, attributes: Dict[str, Any]) -> None: ...
@property
def content(self) -> Optional[str]: ...
@property
def decoded_content(self) -> bytes: ...
@property
def download_url(self) -> str: ...
@property
def encoding(self) -> str: ...
@property
def git_url(self) -> str: ...
@property
def html_url(self) -> str: ...
@property
def name(self) -> str: ...
@property
def path(self) -> str: ...
@property
def repository(self) -> Repository: ...
@property
def sha(self) -> str: ...
@property
def size(self) -> int: ...
@property
def text_matches(self) -> List[Dict[str, Any]]: ...
@property
def type(self) -> str: ...
@property
def url(self) -> str: ...
@property
def license(self) -> License: ...
|