質問編集履歴

1

説明不足

2020/07/28 15:17

投稿

sou10
sou10

スコア4

test CHANGED
File without changes
test CHANGED
@@ -31,3 +31,51 @@
31
31
 
32
32
 
33
33
  にしたい形です。初歩的な質問で恐縮なのですが、よろしくお願いします。
34
+
35
+
36
+
37
+
38
+
39
+ 追記
40
+
41
+
42
+
43
+ 質問の仕方が悪く、申し訳ないです。
44
+
45
+
46
+
47
+ コードは以下のように書いてます。
48
+
49
+
50
+
51
+
52
+
53
+ monorate_urls=['https://AAA.link/publish/data/1500/2020-06-24.zip?token=ppp',
54
+
55
+ 'https://FFF.link/publish/data/1500/2020-06-25.zip?token=bbb',
56
+
57
+ 'https://XXX.link/publish/data/1500/2020-06-26.zip?token=sss']
58
+
59
+
60
+
61
+ for url in monorate_urls:
62
+
63
+ tittle= [今回分からない処理]
64
+
65
+ dst_dir ='/content/drive/My Drive/exsample/data/{}'.format(tittle)
66
+
67
+ download_file_to_dir(url, dst_dir)
68
+
69
+
70
+
71
+ 出したい出力としては、
72
+
73
+ /content/drive/My Drive/exsample/data/2020-06-24
74
+
75
+ /content/drive/My Drive/exsample/data/2020-06-25
76
+
77
+ /content/drive/My Drive/exsample/data/2020-06-26
78
+
79
+
80
+
81
+ のようにdst_dirに値を渡したい形になります。