Writing data to bucket with python script not working

Hello,
I am trying to write data from line protocol to bucket with python script. Script does not return any error but I cannot see any data in my bucket. What am I doing wrong?

from influxdb_client import InfluxDBClient

token=“my_token”
org=“myorg”

client = InfluxDBClient(url=“http://localhost:8086”, token=token, org=org)
write_api = client.write_api()
write_api.write(“bucket”, “myorg”, “[h2o_feet,location=coyote_creek water_level=1 1615136098]”)

Any help is appreciated.
Regards
Aleksandra

The square brackets and quotation marks [" are reversed in your write parameter.
Please take another close look at the examples in the documentation.
You can also enable the debug option in the python client.

client = InfluxDBClient(url="http://localhost:8086", token=token, org=org, debug=True)

Thank you @Franky1 for your answer I changed my script according to your suggestions
and I also had to change timestamp for nanseconds. Now it works, thank you again.