Here is a basic Python script to query a PostgreSQL database using the “psycopg2” library. Very useful for data mining.
import psycopg2
conn = psycopg2.connect(
host="hostname",
database="database_name",
user="username",
password="password"
)
cursor = conn.cursor()
query = "SELECT * FROM table_name"
cursor.execute(query)
result = cursor.fetchall()
for row in result:
print(row)
conn.close()
Replace the placeholders with the appropriate values for your database:
You can modify the SELECT statement to retrieve specific columns or filter the data as desired.
Here is a simple Python script to monitor network traffic. import psutil def monitor_network(): #…
Here's a basic example of web scraping in Python using the requests and BeautifulSoup libraries:…
Here's an example of how you can use Python to SSH into a remote server…
Here's an example of a Python class that represents a rectangle: class Rectangle: def __init__(self,…
Here is a simple Python script that interacts with Active Directory (AD) using the pyad…
Here's a Python script to monitor disk usage on a system and send an email…