Hi, I am new to gitea. I created a user as part of a task to automate some things. I want to know how to delete the user I created using a Python script. I have tried writing a script to delete but I am getting
No connection could be made because the target machine actively refused it. code for deleting a user is as follows:
import giteapy
from giteapy.rest import ApiException
import pprint
configuration = giteapy.Configuration() configuration.api_key['access_token'] = 'token'
configuration.api_key['Authorization'] = 'token'
api_instance = giteapy.AdminApi(giteapy.ApiClient(configuration=configuration))
try:
api_response = api_instance.admin_delete_user('exam.ple@something.com')
pprint(api_response)
except ApiException as e:
pirnt(e)
How do I solve this? Is there any other way to delete the user I created.