FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
python-github-backup/bin/github-backup at master · dumpmemory/python-github-backup · GitHub
dumpmemory
/
python-github-backup
Public
forked from
josegonzalez/python-github-backup
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
python-github-backup
/
bin
/
github-backup
Copy path
More file actions
More file actions
Latest commit
History
History
History
executable file
·
22 lines (17 loc) · 533 Bytes
Breadcrumbs
python-github-backup
/
bin
/
github-backup
Copy path
File metadata and controls
executable file
·
22 lines (17 loc) · 533 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/env python
"""
Backwards-compatible wrapper script.
The recommended way to run github-backup is via the installed command
(pip install github-backup) or python -m github_backup.
This script is kept for backwards compatibility with existing installations
that may reference this path directly.
"""
import
sys
from
github_backup
.
cli
import
main
from
github_backup
.
github_backup
import
logger
if
__name__
==
"__main__"
:
try
:
main
()
except
Exception
as
e
:
logger
.
error
(
str
(
e
))
sys
.
exit
(
1
)
Back
|
FazBrowse Home
|
New Git URL