Playbooks

Python Script to Query SQL Database

Here is a basic Python script to query a SQL database using the “sqlite3” library. Very useful for data mining.

import sqlite3

conn = sqlite3.connect('database.db')
cursor = conn.cursor()

query = "SELECT * FROM table_name"
result = cursor.execute(query).fetchall()

for row in result:
    print(row)

conn.close()

Replace “database.db” with the name of your SQLite database file, and “table_name” with the name of the table you want to query. You can modify the SELECT statement to retrieve specific columns or filter the data as desired.

PyJoy

Recent Posts

Python Script to Monitor Network Traffic

Here is a simple Python script to monitor network traffic. import psutil def monitor_network(): #…

2 years ago

Python Script for Web Scraping

Here's a basic example of web scraping in Python using the requests and BeautifulSoup libraries:…

2 years ago

Python Script to SSH and Run Commands

Here's an example of how you can use Python to SSH into a remote server…

2 years ago

Python Code Example with Classes

Here's an example of a Python class that represents a rectangle: class Rectangle: def __init__(self,…

2 years ago

Python Script Example with Main Method in Active Directory

Here is a simple Python script that interacts with Active Directory (AD) using the pyad…

2 years ago

Python Script Example for System Administrators

Here's a Python script to monitor disk usage on a system and send an email…

2 years ago