We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e7fb56 commit 083392bCopy full SHA for 083392b
fsspec/implementations/github.py
@@ -16,8 +16,10 @@ class GithubFileSystem(AbstractFileSystem):
16
repository. You may specify a point in the repos history, by SHA, branch
17
or tag (default is current master).
18
19
- Given that code files tend to be small, and that github does not support
20
- retrieving partial content, we always fetch whole files.
+ For files less than 1 MB in size, file content is returned directly in a
+ MemoryFile. For larger files, or for files tracked by git-lfs, file content
21
+ is returned as an HTTPFile wrapping the ``download_url`` provided by the
22
+ GitHub API.
23
24
When using fsspec.open, allows URIs of the form:
25
0 commit comments