forked from eXaction/007-TheBond
-
-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #44 from sdmrf/master
Version 3 Updated
- Loading branch information
Showing
23 changed files
with
507 additions
and
518 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
File renamed without changes
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,7 @@ | ||
beautifulsoup4==4.9.3 | ||
certifi==2023.7.22 | ||
chardet==4.0.0 | ||
google==3.0.0 | ||
idna==2.10 | ||
phonenumbers==8.12.7 | ||
pyfiglet==0.8.post0 | ||
requests==2.31.0 | ||
six==1.15.0 | ||
soupsieve==2.2 | ||
urllib3==1.26.18 | ||
pyfiglet # for banner of ASCII art | ||
phonenumbers # for phone number | ||
google # for google search | ||
urllib3 # for url | ||
requests # for url | ||
six # for url | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
@echo off | ||
color 0a | ||
|
||
:: Check if venv folder already exists | ||
if not exist venv ( | ||
:: For Windows | ||
python -m venv venv | ||
venv\Scripts\activate | ||
) else ( | ||
:: For Linux and MacOS | ||
python3 -m venv venv | ||
source venv/bin/activate | ||
) | ||
|
||
:: Install requirements | ||
pip install -r requirements.txt | ||
|
||
:: Run the script | ||
cd scripts | ||
python 007-TheBond.py | ||
|
||
:: Pause to keep the command prompt open | ||
pause |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
#!/bin/bash | ||
|
||
# Check if venv folder already exists | ||
if [ ! -d "venv" ]; then | ||
# For Linux and MacOS | ||
python3 -m venv venv | ||
source venv/bin/activate | ||
else | ||
# For Windows | ||
python -m venv venv | ||
venv\Scripts\activate | ||
fi | ||
|
||
# Install requirements | ||
pip install -r requirements.txt | ||
|
||
# Run the script | ||
cd scripts | ||
python3 007-TheBond.py |
Oops, something went wrong.