Python Forum
Convert Python script to Php
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Convert Python script to Php
#1
Hello,
I would like to convert this python code to php

 payloadNotes = "data={\"token\": \"" + token + "\"}"
    headersNotes = {'content-type': 'application/x-www-form-urlencoded'}

    r = requests.post("https://vmws17.ecoledirecte.com/v3/eleves/" + str(eleve_id) + "/notes.awp?verbe=get&",
                      data=payloadNotes, headers=headersNotes, proxies=proxies, verify=False)
$token= $data["token"];
$postt= "data=token: $token";
$url2 = "https://vmws17.ecoledirecte.com/v3/eleves/$id/notes.awp?verbe=post&$postt";
$ch2 = curl_init($url2);


curl_setopt($ch2, CURLOPT_RETURNTRANSFER, 1);
$res2 = curl_exec($ch2);
$data2 = json_decode($res2, true);
curl_close($ch2);
echo "<pre>";
var_dump($data2);
echo "</pre>";
But there are no data.

Can you help me please ?
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Is there a *.bat DOS batch script to *.py Python Script converter? pstein 3 3,850 Jun-29-2023, 11:57 AM
Last Post: gologica
  Python Script to convert Json to CSV file chvsnarayana 8 2,834 Apr-26-2023, 10:31 PM
Last Post: DeaD_EyE
Question convert autohotkey script to python / macro - press key when pixel get colour willson94d 1 3,839 Jan-01-2022, 08:13 PM
Last Post: Yoriz
  Convert .py script to dll file and .exe srikanthpython 0 3,236 Aug-20-2020, 06:01 PM
Last Post: srikanthpython
  How to kill a bash script running as root from a python script? jc_lafleur 4 6,233 Jun-26-2020, 10:50 PM
Last Post: jc_lafleur
  crontab on RHEL7 not calling python script wrapped in shell script benthomson 1 2,435 May-28-2020, 05:27 PM
Last Post: micseydel
  convert sh script to python script Reims 0 2,296 Oct-01-2019, 12:10 PM
Last Post: Reims
  Is there any way to convert a python script (with Tkinter module), to a .exe (Windows moste 3 4,183 May-12-2019, 12:02 PM
Last Post: snippsat
  Package python script which has different libraries as a single executable or script tej7gandhi 1 2,739 May-11-2019, 08:12 PM
Last Post: keames
  Issue with a script to convert xls to json Will86 2 3,937 Dec-19-2018, 08:23 AM
Last Post: Will86

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020