質問編集履歴
5
誤字の修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -24,7 +24,7 @@
|
|
24
24
|
|
25
25
|
```
|
26
26
|
|
27
|
-
に
|
27
|
+
にするとUTF-8で保存されます。
|
28
28
|
|
29
29
|
|
30
30
|
|
4
追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -39,3 +39,19 @@
|
|
39
39
|
|
40
40
|
|
41
41
|
どうかよろしくお願いいたします。
|
42
|
+
|
43
|
+
|
44
|
+
|
45
|
+
追記
|
46
|
+
|
47
|
+
どうもPythonだけの問題じゃなく、AWS S3周りかもしれません。
|
48
|
+
|
49
|
+
データベースからの結果をS3に保存しています。
|
50
|
+
|
51
|
+
```
|
52
|
+
|
53
|
+
obj = bucket.put_object(Body = instring, Key = path, ContentType = "text/comma-separeted-values;charset=shift-jis", ContentEncoding="shift-js"
|
54
|
+
|
55
|
+
```
|
56
|
+
|
57
|
+
と書いてもUTF-8で保存されます。
|
3
修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -34,7 +34,7 @@
|
|
34
34
|
|
35
35
|
クライアントのOSはWindows10、エクセルは2016です。
|
36
36
|
|
37
|
-
処理をしている環境は、AWS, Lambda, Python, Redshiftです。
|
37
|
+
処理をしている環境は、AWS, Lambda, Python 3.8, Redshiftです。
|
38
38
|
|
39
39
|
|
40
40
|
|
2
追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -32,4 +32,10 @@
|
|
32
32
|
|
33
33
|
|
34
34
|
|
35
|
+
クライアントのOSはWindows10、エクセルは2016です。
|
36
|
+
|
37
|
+
処理をしている環境は、AWS, Lambda, Python, Redshiftです。
|
38
|
+
|
39
|
+
|
40
|
+
|
35
41
|
どうかよろしくお願いいたします。
|
1
追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -18,11 +18,9 @@
|
|
18
18
|
|
19
19
|
|
20
20
|
|
21
|
-
2行目を
|
22
|
-
|
23
21
|
```
|
24
22
|
|
25
|
-
data = result.to_csv(Index=False, encoding="shift-jis")
|
23
|
+
data2 = result.to_csv(Index=False, encoding="shift-jis")
|
26
24
|
|
27
25
|
```
|
28
26
|
|