17 lines
278 B
Python
17 lines
278 B
Python
![]() |
#!/usr/bin/python3
|
||
|
|
||
|
import cgi
|
||
|
import cgitb
|
||
|
from pathlib import Path
|
||
|
cgitb.enable()
|
||
|
|
||
|
form = cgi.FieldStorage()
|
||
|
|
||
|
print('Content-Type: text/plain\n')
|
||
|
|
||
|
content = form.getfirst('content')
|
||
|
|
||
|
with open(Path('..') / 'data' / 'markers.json', 'w') as f:
|
||
|
f.write(content)
|
||
|
|
||
|
print(content)
|