10 lines
142 B
Python
10 lines
142 B
Python
from flask import *
|
|
import ssl
|
|
import requests
|
|
from Crypto import RSA
|
|
|
|
|
|
|
|
data = 'Hello World !'
|
|
requests.post('https://localhost:5000',data)
|
|
|