Last active
September 15, 2020 06:52
-
-
Save gormih/73c82b952637935984fac3eef0bb5b5f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from github import Github | |
account = Github('username', 'password') | |
repo = account.get_repo('username/your_public_repository') | |
repo.create_file("new_file.txt", "init commit", "file_content ------ ") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment