-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
350b1ed
commit 599928d
Showing
2 changed files
with
31 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
from kaggle.api.kaggle_api_extended import KaggleApi | ||
import os | ||
|
||
api = KaggleApi() | ||
|
||
|
||
def _authenticate(): | ||
api.authenticate() | ||
|
||
|
||
def _download_data(dataset: str, path: str = 'data'): | ||
api.dataset_download_files(dataset, path=path, unzip=True) | ||
|
||
|
||
def loadData(): | ||
if os.path.exists('data'): | ||
print('Data already downloaded. Skipping download.') | ||
return | ||
|
||
_authenticate() | ||
_download_data('lexset/synthetic-asl-alphabet') | ||
print('Data downloaded successfully.') |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
from load_data import loadData | ||
|
||
|
||
def main(): | ||
loadData() | ||
|
||
|
||
if __name__ == "__main__": | ||
main() |