Skip to content

Instantly share code, notes, and snippets.

View neybapps's full-sized avatar

NeybApps neybapps

View GitHub Profile
@neybapps
neybapps / E-Commerce price Comparison using python with gui.py
Created November 8, 2023 01:43 — forked from programingcorner/E-Commerce price Comparison using python with gui.py
Monitoring price comparison for a particular product on different e-commerce websites using Python. Particular we use beautiful Soup for scraping data from different website like amazon, flipkart ,ebay, olx etc. and with that we provide direct link to different website of our same search product . program description . we are using python tkint…
from tkinter import *
from tkinter import Scrollbar
from bs4 import BeautifulSoup
import requests
import webbrowser
headers = {'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.3'}
# import manan as m
flipkart=''
ebay=''
@neybapps
neybapps / Airflow.Dockerfile
Last active June 4, 2020 20:44
Minimalist Airflow Dockerfile
FROM python
ARG AIRFLOW_USER_HOME=/usr/local/airflow
ARG CLOUD_SDK_VERSION=295.0.0
ENV AIRFLOW_HOME=${AIRFLOW_USER_HOME}
ENV CLOUD_SDK_VERSION=$CLOUD_SDK_VERSION
# Airflow
ARG AIRFLOW_VERSION=1.10.10
ARG SQLAlchemy_VERSION=1.10.10