Update Scotch.py
Browse files
Scotch.py
CHANGED
|
@@ -52,7 +52,7 @@ _LICENSE = "The MIT License"
|
|
| 52 |
# This can be an arbitrary nested dict/list of URLs (see below in `_split_generators` method)
|
| 53 |
languages=['python','javascript','java','go']
|
| 54 |
language_map={'python':'py','javascript':'js','go':'go','java':'java'}
|
| 55 |
-
_URLs = {lang:f'https://scotchdata.s3.amazonaws.com/{
|
| 56 |
_URLs['all']=_URLs.copy()
|
| 57 |
|
| 58 |
|
|
|
|
| 52 |
# This can be an arbitrary nested dict/list of URLs (see below in `_split_generators` method)
|
| 53 |
languages=['python','javascript','java','go']
|
| 54 |
language_map={'python':'py','javascript':'js','go':'go','java':'java'}
|
| 55 |
+
_URLs = {lang:f'https://scotchdata.s3.amazonaws.com/{lang}.tar.gz' for lang in languages}
|
| 56 |
_URLs['all']=_URLs.copy()
|
| 57 |
|
| 58 |
|