如何更改boto3中的http方法

时间:2015-11-26 15:07:45

标签: python amazon-s3 boto3

我试图找到一种方法来更改上传到带有boto3 python库的s3存储桶时使用的http方法(POST / PUT),我还没有找到一个这样做的方式,任何帮助将不胜感激。

感谢。

1 个答案:

答案 0 :(得分:0)

要执行此操作,您需要注册event。您可以在botocore中看到这样做的示例。我很好奇你为什么要这样做,因为它只会迫使你形成对请求的编码,就好像它是从HTML表单提交的那样,让你的生活变得更加困难。

复制后代:

import java.util.Scanner;

public class playerinput {

    private static Scanner user_input;

    public static void main(String[] args) {


        user_input = new Scanner (System.in);

        String firstName;
        System.out.print("Enter your name here:");
        firstName = user_input.next();

        String lastName;
        System.out.print("Ok cool, and your last?:");
        lastName = user_input.next();

        String thankYou;

        thankYou = "Alright," + ' ' + firstName + ' ' + lastName + ',' + ' '
         + "that's all we'll need. Have a nice day, and thank you again.";      

        System.out.println(thankYou);   

        System.out.println("Oh, one more question, if you don't mind.");
        String Response = user_input.next();
        if (user_input.equals("Yea?")&("Yes?"))


        if (){

        }
    }
}