Comparar commits
No hay commits en común. 'c0627dd4d6b87c197f195e6dd8199ab0be572103' y 'fb3d570332355c3f17a74bd5b01818b0298c9d3b' tienen historias completamente diferentes.
c0627dd4d6
...
fb3d570332
S'han modificat 2 arxius amb 0 adicions i 53 eliminacions
2
test.csv
2
test.csv
|
@ -1,2 +0,0 @@
|
||||||
upload|test
|
|
||||||
testing|1
|
|
|
51
test.py
51
test.py
|
@ -1,51 +0,0 @@
|
||||||
import os
|
|
||||||
from datetime import datetime
|
|
||||||
import base64
|
|
||||||
import requests
|
|
||||||
from requests.models import urlencode
|
|
||||||
import pdb
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
|
||||||
|
|
||||||
filename = 'test.csv'
|
|
||||||
|
|
||||||
with open(filename, 'rb') as input_file:
|
|
||||||
data = input_file.read()
|
|
||||||
file = base64.b64encode(data)
|
|
||||||
|
|
||||||
owner = "spla"
|
|
||||||
repo = "upload"
|
|
||||||
author_email = "spla@mastodont.cat"
|
|
||||||
author_name = "spla"
|
|
||||||
branch = "main"
|
|
||||||
content = file
|
|
||||||
message = f'file {filename} uploaded'
|
|
||||||
|
|
||||||
api_base_url = "https://git.mastodont.cat"
|
|
||||||
|
|
||||||
data = {"author":[{"email":author_email},{"name":author_name}],
|
|
||||||
"branch":branch,
|
|
||||||
"content":content,
|
|
||||||
"message":message
|
|
||||||
}
|
|
||||||
|
|
||||||
params = dict()
|
|
||||||
params['token'] = ''
|
|
||||||
formatted_params = urlencode(params)
|
|
||||||
|
|
||||||
endpoint = api_base_url + '/api/v1/repos/{0}/{1}/contents/{2}?{3}'.format(owner, repo, filename, formatted_params)
|
|
||||||
|
|
||||||
try:
|
|
||||||
|
|
||||||
response = requests.post(endpoint, data)
|
|
||||||
|
|
||||||
except:
|
|
||||||
|
|
||||||
pass
|
|
||||||
|
|
||||||
if response is not None:
|
|
||||||
|
|
||||||
print(f'request status code: {response.status_code},\n\n{response.content}')
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Referencia en una nova incidència