This python script lists out users , email and status from Informatica. You need to replace your username, password and informatica url. import requests import json import sys import datetime import smtplib, ssl from email.mime.base import MIMEBase from email.mime.text import MIMEText from email.mime.multipart import MIMEMultipart filename="userslist.txt" username = "" password = "" current_timestamp = datetime.datetime.utcnow().strftime('%Y-%m-%d %H:%M:%S') with open(filename, 'w') as f: f.write(current_timestamp+'\n') username = username password = password url = "https://dm-us.informaticacloud.com/saas/public/core/v3/login" payload = json.dumps({ "username": username, "password": password }) headers = { 'Content-Type': 'application/json', 'Accept': 'application/json' } response = requests.request("POST", url, headers=headers, data=payload) login=jso...
Welcome to the Site! Here, you'll find practical tips, helpful commands, and simple solutions to everyday challenges. Whether it's a recurring issue or a quick command you often forget, this site aims to be your go-to resource. As I continue to learn, I’ll be sharing articles that break down each topic clearly—walking you through them one step at a time.