Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/Faouzizi/Insta_logo_finder
https://github.com/Faouzizi/Insta_logo_finder
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/Faouzizi/Insta_logo_finder
- Owner: Faouzizi
- License: mit
- Created: 2022-02-13T13:11:26.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-02-13T14:37:59.000Z (over 2 years ago)
- Last Synced: 2024-06-27T13:34:00.127Z (5 months ago)
- Language: Python
- Size: 29.3 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Instagram Logo Finder
The goal of this project is to find the logo for any brand selected.
The principle is simple, we will scrap the logo url from Instagram using Selenium.- We connect to our account
- Go to the search bar
- Enter the brand name
- Get the logo urlFor that, follow the next steps:
- Clone the current repository using: git clone https://github.com/Faouzizi/Insta_logo_finder.git
- Go to the project directory and create a new vertual environnement using: python3 -m venv/venv
- Activate this new venv using: source venv/bin/activate
- Install all requirements: pip install -r requirements.txt
- Export your instagram credential to you venv using:
- export EMAIL='[email protected]'
- export PASSWORD='jonsnowpassword'
Finally, you need to run the main script: python3 web_app/web_app.py
Then you can use it.
Enjoy :)
# Launch via Docker
- create the docker image
sudo docker build -t logo_finder . --build-arg EMAIL=${EMAIL} --build-arg PASSWORD=${PASSWORD}
- Run the image created
sudo docker run -e PASSWORD='password' -e EMAIL='email' -p 5000:5000 logo_finder:latest