Skip to content
/ Zipitn Public template

Config files for my GitHub profile

Notifications You must be signed in to change notification settings

Zipitn/Zipitn

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 

Repository files navigation

  • 👋 Hi, I’m @Zipitn
  • 👀 I’m interested in ...
  • 🌱 I’m currently learning ...
  • 💞️ I’m looking to collaborate on ...
  • 📫 How to reach me ...
  • 😄 Pronouns: ...
  • ⚡ Fun fact: ...
import marshal

data = {'name': 'John', 'age': 30, 'city': 'Example City'}

Dumping the data to a file

with open('data_file.marshal', 'wb') as file: marshal.dump(data, file)

Loading the data back

with open('data_file.marshal', 'rb') as file: loaded_data = marshal.load(file)

print(loaded_data) import smtplib from email.mime.text import MIMEText from email.mime.multipart import MIMEMultipart import schedule import time

def send_email(): # Your email and password sender_email = '[email protected]' sender_password = 'your_email_password'

# Recipient email [address](https://trk.cp20.com/click/eqk0-2sphra-d38yym-kppqdji5/pmrf65jchirgq5duoa5c6l3zn52xeztjnzqw4y3fmzxxe5lnonswc4tdnaxgg33nf5nxezlmmf4uc5duojptexjvhazdgmtfhbqwkyjsge4donlfmvsgcm3chaytkyzwgbrwcnldgmrcyitsmvwgc6kbor2hexzsei5cezrugnsdkmlemiwteoldmmwtizbygqwwcojqgqwtczldgazdmm3emu4danrcpu%3D%3D%3D%3D%3D%3D)
recipient_email = '[email protected]'

# https://www.rewardit.com/Register?invitation=c4f2baa2-8c1e-4f2a-ba2e-bee6d076cb24&[email protected]&r=97FF7016-DCF9-41D1-8B89-0ECC841139EA&utm_source=email&utm_content=RI_Sealed_LC+0-30&utm_campaign=Daily+Email+Template&utm_medium=8528671Message content
subject = 'Daily Report'
body = 'This is your daily report content.'

# Setting up the MIME
message = MIMEMultipart()
message['From'] = sender_email
message['To'] = recipient_email
message['Subject'] = subject
message.attach(MIMEText(body, 'plain'))

# Connect to the SMTP server
with smtplib.SMTP('smtp.example.com', 587) as server:
    server.starttls()
    # Login to your email account
    server.login(sender_email, sender_password)
    # Send email
    server.sendmail(sender_email, recipient_email, message.as_string())

Schedule the job to run daily at a specific time

schedule.every().day.at("08:00").do(send_email)

Run the scheduled jobs

while True: schedule.run_pending() time.sleep(1) return: orgin

About

Config files for my GitHub profile

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published