Advertisement
maxpigreco

How to hide email password?

Mar 18th, 2025
106
0
29 days
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.46 KB | Help | 0 0
  1. import time
  2. import requests # Will help us to get out url directed
  3. from bs4 import BeautifulSoup # Will help us to scrap us the data
  4.  
  5. import os
  6. import smtplib # this module is used for sending mail
  7. from email.message import EmailMessage
  8.  
  9. email_id = os.environ.get("EMAIL_ADDR")
  10. email_pass = os.environ.get("EMAIL_PASS")
  11.  
  12. def check_price():
  13.     #Copy url of the product that you are looking for
  14.  
  15. [...]
  16.  
  17. while True:
  18.     check_price()
  19.     time.sleep(10)
Tags: python
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement