'module' object not callable when trying to log into webpage using requests().post()

前端 未结 1 491
盖世英雄少女心
盖世英雄少女心 2021-01-29 12:59

I am trying to script a log-in into this website: https://www.trademap.org/Index.aspx

You will require log-in details but just indicate that you are from a developing co

1条回答
  •  执笔经年
    2021-01-29 13:26

    It's not:

    requests().post(url, data)
    

    but instead:

    requests.post(url, data)
    

    0 讨论(0)
提交回复
热议问题