ファイルからデータを投稿しようとすると
headers = {'content-type': 'text/plain'}
files = {'Content': open(os.getcwd()+'\\1.txt', 'rb')}
contentR = requests.post("http://" + domain +"index.php", params=payload, data=files, headers=headers)
urlencoded 文字列のようなものを取得します
Content=%3C%3Fphp+echo%28%22Hello+world%22+%29%3B+%3F%3E
それ以外の
<?php echo("Hello world" ); ?>
データをテキストファイルのまま投稿するには?