summaryrefslogtreecommitdiff
path: root/Scripts
diff options
context:
space:
mode:
Diffstat (limited to 'Scripts')
-rwxr-xr-xScripts/#wiki2P.py#26
-rw-r--r--Scripts/.vscode/launch.json169
-rw-r--r--Scripts/.vscode/settings.json3
-rw-r--r--Scripts/InstallPpaPackage.sh3
-rw-r--r--Scripts/autoStart.sh4
-rwxr-xr-xScripts/pacman35
-rw-r--r--Scripts/setUpeveryThing41
-rwxr-xr-xScripts/spooky.lua79
-rwxr-xr-xScripts/wiki2P.py.save16
9 files changed, 376 insertions, 0 deletions
diff --git a/Scripts/#wiki2P.py# b/Scripts/#wiki2P.py#
new file mode 100755
index 0000000..2fb1a10
--- /dev/null
+++ b/Scripts/#wiki2P.py#
@@ -0,0 +1,26 @@
+import requests, bs4, re
+
+# res = requests.get("https://en.wikipedia.org/wiki/Special:Random")
+res = requests.get("https://en.wikipedia.org/wiki/Linux")
+
+
+soup = bs4.BeautifulSoup(res.text, "html.parser")
+
+
+element = soup.select("#mw-content-text a[title]")
+
+
+pattern = re.compile("^\/.*")
+
+
+for i in element:
+ if "Edit section" not in i["title"] and pattern.match(i["href"]):
+ if "div" not in str(i.parent) and "th" not in str(i.parent) and "td" not in str(i.parent):
+ try:
+ i["class"]
+ except KeyError:
+ print(i)
+ break
+
+print("LOL")
+
diff --git a/Scripts/.vscode/launch.json b/Scripts/.vscode/launch.json
new file mode 100644
index 0000000..fff7d3c
--- /dev/null
+++ b/Scripts/.vscode/launch.json
@@ -0,0 +1,169 @@
+{
+ "version": "0.2.0",
+ "configurations": [
+
+ {
+ "name": "Python",
+ "type": "python",
+ "request": "launch",
+ "stopOnEntry": true,
+ "pythonPath": "${config.python.pythonPath}",
+ "program": "${file}",
+ "cwd": "${workspaceRoot}",
+ "debugOptions": [
+ "WaitOnAbnormalExit",
+ "WaitOnNormalExit",
+ "RedirectOutput"
+ ]
+ },
+ {
+ "name": "PySpark",
+ "type": "python",
+ "request": "launch",
+ "stopOnEntry": true,
+ "osx": {
+ "pythonPath": "${env.SPARK_HOME}/bin/spark-submit"
+ },
+ "windows": {
+ "pythonPath": "${env.SPARK_HOME}/bin/spark-submit.cmd"
+ },
+ "linux": {
+ "pythonPath": "${env.SPARK_HOME}/bin/spark-submit"
+ },
+ "program": "${file}",
+ "cwd": "${workspaceRoot}",
+ "debugOptions": [
+ "WaitOnAbnormalExit",
+ "WaitOnNormalExit",
+ "RedirectOutput"
+ ]
+ },
+ {
+ "name": "Python Module",
+ "type": "python",
+ "request": "launch",
+ "stopOnEntry": true,
+ "pythonPath": "${config.python.pythonPath}",
+ "module": "module.name",
+ "cwd": "${workspaceRoot}",
+ "debugOptions": [
+ "WaitOnAbnormalExit",
+ "WaitOnNormalExit",
+ "RedirectOutput"
+ ]
+ },
+ {
+ "name": "Integrated Terminal/Console",
+ "type": "python",
+ "request": "launch",
+ "stopOnEntry": true,
+ "pythonPath": "${config.python.pythonPath}",
+ "program": "${file}",
+ "cwd": "null",
+ "console": "integratedTerminal",
+ "debugOptions": [
+ "WaitOnAbnormalExit",
+ "WaitOnNormalExit"
+ ]
+ },
+ {
+ "name": "External Terminal/Console",
+ "type": "python",
+ "request": "launch",
+ "stopOnEntry": true,
+ "pythonPath": "${config.python.pythonPath}",
+ "program": "${file}",
+ "cwd": "null",
+ "console": "externalTerminal",
+ "debugOptions": [
+ "WaitOnAbnormalExit",
+ "WaitOnNormalExit"
+ ]
+ },
+ {
+ "name": "Django",
+ "type": "python",
+ "request": "launch",
+ "stopOnEntry": true,
+ "pythonPath": "${config.python.pythonPath}",
+ "program": "${workspaceRoot}/manage.py",
+ "cwd": "${workspaceRoot}",
+ "args": [
+ "runserver",
+ "--noreload"
+ ],
+ "debugOptions": [
+ "WaitOnAbnormalExit",
+ "WaitOnNormalExit",
+ "RedirectOutput",
+ "DjangoDebugging"
+ ]
+ },
+ {
+ "name": "Flask",
+ "type": "python",
+ "request": "launch",
+ "stopOnEntry": false,
+ "pythonPath": "${config.python.pythonPath}",
+ "program": "fully qualified path fo 'flask' executable. Generally located along with python interpreter",
+ "cwd": "${workspaceRoot}",
+ "env": {
+ "FLASK_APP": "${workspaceRoot}/quickstart/app.py"
+ },
+ "args": [
+ "run",
+ "--no-debugger",
+ "--no-reload"
+ ],
+ "debugOptions": [
+ "WaitOnAbnormalExit",
+ "WaitOnNormalExit",
+ "RedirectOutput"
+ ]
+ },
+ {
+ "name": "Flask (old)",
+ "type": "python",
+ "request": "launch",
+ "stopOnEntry": false,
+ "pythonPath": "${config.python.pythonPath}",
+ "program": "${workspaceRoot}/run.py",
+ "cwd": "${workspaceRoot}",
+ "args": [],
+ "debugOptions": [
+ "WaitOnAbnormalExit",
+ "WaitOnNormalExit",
+ "RedirectOutput"
+ ]
+ },
+ {
+ "name": "Watson",
+ "type": "python",
+ "request": "launch",
+ "stopOnEntry": true,
+ "pythonPath": "${config.python.pythonPath}",
+ "program": "${workspaceRoot}/console.py",
+ "cwd": "${workspaceRoot}",
+ "args": [
+ "dev",
+ "runserver",
+ "--noreload=True"
+ ],
+ "debugOptions": [
+ "WaitOnAbnormalExit",
+ "WaitOnNormalExit",
+ "RedirectOutput"
+ ]
+ },
+ {
+ "name": "Attach (Remote Debug)",
+ "type": "python",
+ "request": "attach",
+ "localRoot": "${workspaceRoot}",
+ "remoteRoot": "${workspaceRoot}",
+ "port": 3000,
+ "secret": "my_secret",
+ "host": "localhost"
+ }
+ ]
+} \ No newline at end of file
diff --git a/Scripts/.vscode/settings.json b/Scripts/.vscode/settings.json
new file mode 100644
index 0000000..fe71598
--- /dev/null
+++ b/Scripts/.vscode/settings.json
@@ -0,0 +1,3 @@
+{
+ "python.linting.pylintEnabled": false
+} \ No newline at end of file
diff --git a/Scripts/InstallPpaPackage.sh b/Scripts/InstallPpaPackage.sh
new file mode 100644
index 0000000..e625c4e
--- /dev/null
+++ b/Scripts/InstallPpaPackage.sh
@@ -0,0 +1,3 @@
+sudo add-apt-repository ppa:$1
+sudo apt-get update
+sudo apt-get install $2
diff --git a/Scripts/autoStart.sh b/Scripts/autoStart.sh
new file mode 100644
index 0000000..3c437e3
--- /dev/null
+++ b/Scripts/autoStart.sh
@@ -0,0 +1,4 @@
+xcape -e 'Super_L=Super_L|w' &
+#sh /home/julian/Conky/start.sh &
+albert &
+
diff --git a/Scripts/pacman b/Scripts/pacman
new file mode 100755
index 0000000..b3f4aa0
--- /dev/null
+++ b/Scripts/pacman
@@ -0,0 +1,35 @@
+#!/bin/bash
+
+#Name: pacman.sh
+#This is a pacman script for archlinux users on ubuntu
+#Autor: Stjepan Horvat aka schef
+#Date: 2011-05-13
+
+USAGE="Usage: Arch Linux like pacman."
+
+if [ $# -eq 0 ]; then
+ echo $USAGE
+ exit
+elif [ $# -gt 2 ];then
+ echo $USAGE
+ exit
+
+elif [ $1 = -Ss ]; then
+ apt search $2
+
+elif [ $1 = -S ]; then
+ apt install $2
+
+elif [ $1 = -Sy ]; then
+ apt update
+
+elif [ $1 = -Su ]; then
+ apt upgrade
+
+elif [ $1 = -Syu ]; then
+ apt update && apt upgrade
+
+else
+ echo $USAGE
+ exit
+fi
diff --git a/Scripts/setUpeveryThing b/Scripts/setUpeveryThing
new file mode 100644
index 0000000..73b87e5
--- /dev/null
+++ b/Scripts/setUpeveryThing
@@ -0,0 +1,41 @@
+sudo apt -y update
+sudo apt -y upgrade
+
+sudo apt -y install zsh
+sudo apt -y install cowsay
+sudo apt -y install fortune
+sudo apt -y install htop
+sudo apt -y install python
+sudo apt -y install python-pip
+sudo apt -y install python3
+sudo apt -y install python3-pip
+sudo apt -y install git
+sudo apt -y install playonlinux
+
+sudo apt -y install emacs-nox
+sudo apt -y install vim
+sudo apt -y install nano
+
+sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
+
+
+
+
+
+sudo apt -y install terminator
+
+
+sudo apt -y install conky
+sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys BBEBDCB318AD50EC6865090613B00F1FD2C19886
+echo deb http://repository.spotify.com stable non-free | sudo tee /etc/apt/sources.list.d/spotify.list
+sudo apt update
+
+sudo apt -y install spotify-client
+sudo apt -y install virtualbox
+
+sudo apt -y install texlive
+sudo apt -y install texlive-lang-european
+sudo apt -y install texmaker
+
+
+
diff --git a/Scripts/spooky.lua b/Scripts/spooky.lua
new file mode 100755
index 0000000..3cf65cf
--- /dev/null
+++ b/Scripts/spooky.lua
@@ -0,0 +1,79 @@
+--Definitely not my best work, first script I've done in Lua 5.2
+function draw()
+ nissue = {
+ "\027[0;31m=\027[1;37m-\027[0;31m=\027[1;37m-\027[0;31m=\027[1;37m-\027[0;31m=\027[1;37m-\027[0;31m=\027[1;37m-\027[0;31m=\027[1;37m-\027[0;31m=\027[1;37m-\027[0;31m=\027[1;37m-\027[0;31m=\027[1;37m-\027[0;31m=\027[1;37m-\027[0;31m=\027[1;37m-\027[0;31m=\027[1;37m-\027[0;31m=\027[1;37m-\027[0;31m=\027[1;37m-\027[0;31m=\027[1;37m-\027[0;31m=\027[1;37m-\027[0;31m=\027[1;37m-\027[0;31m=\027[1;37m-\027[0;31m=\027[1;37m-\027[0;31m=\027[1;37m-\027[0;31m=\027[1;37m-\027[0;31m=\027[1;37m-\027[0;31m=\027[1;37m-\027[0;31m=\027[1;37m-\027[0;31m=\027[1;37m-\027[0;31m=\027[1;37m-\027[0;31m=\027[1;37m-\027[0;31m=\027[1;37m-\027[0;31m=\027[1;37m-\027[0;31m=\027[1;37m-\027[0;31m=\027[1;37m-\027[0;31m=\027[1;37m-\027[0;31m=\027[1;37m-\027[0;31m=\027[1;37m-\027[0;31m=\027[1;37m-\027[0;31m=\027[1;37m-\027[0;31m=\027[1;37m-\027[0;31m=\027[1;37m-\027[0;31m=\027[1;37m-\027[0;31m=\027[1;37m-\027[1;33m",
+ ",~~~~~~~~~~~~~, \027[0;31m..:::::::::.. \027[1;33m ,~~~~~~~~~~~~~,\027[1;33m",
+ "\027[1;33m:\027[1;32m .-======-,\027[1;33m : \027[0;31m ..:::\027[1;37maad8888888baa\027[0;31m:::.. \027[1;33m:\027[1;34mExploit-the \027[1;33m :\027[1;32m",
+ "\027[1;33m:\027[1;32m ||\027[0;31mH4CK3R\027[1;32m|# \027[1;33m : \027[0;31m .::::\027[1;37md:?88888888888?::8b\027[0;31m::::. \027[1;33m :\027[0;31m.-------,./|\027[1;33m :\027[1;32m",
+ "\027[1;33m:\027[1;32m ||______|| \027[1;33m :\027[1;34m&&&& \027[0;31m.:::\027[1;37md8888:?88888888??a888888b\027[0;31m:::. \027[1;34m &&&&\027[1;33m:\027[0;31m{ \027[1;33m VIRUS \027[0;31m /\027[1;33m :\027[1;33m",
+ "\027[1;33m:\027[1;32m | ___ | \027[1;33m : \027[1;34m + \027[0;31m.:::\027[1;37md8888888a8888888aa8888888888b\027[0;31m:::. \027[1;34m + \027[1;33m :\027[0;31m \\\027[1;33m DROPPER\027[0;31m 7\027[1;33m :\027[1;33m",
+ "\027[1;33m:\027[1;32m | |\027[1;35m[]\027[1;32m | | \027[1;33m : \027[1;34m &\027[0;31m::::\027[1;37mdP\027[0;31m\023\022\021\020\019\018\017\016\027[1;37m88888888888\027[0;31m\023\022\021\020\019\018\017\016\027[1;37mYb\027[0;31m::::\027[1;34m&&\027[1;33m :\027[0;31m ~. ,--.( \027[1;33m :\027[1;33m",
+ "\027[1;33m:\027[1;32m `-------' \027[1;33m : \027[0;31m::::\027[1;37mdP\027[0;31m\024:::::::\015\027[1;37mY888888888P\027[0;31m\024:::::::\015\027[1;37mYb\027[0;31m::::\027[1;33m : \027[0;31m '~ `;\027[1;33m :\027[1;33m",
+ "\027[1;33m:\027[0;31mReverse- \027[1;33m : \027[0;31m::::\027[1;37md8\027[0;31m\001:::::::::\014\027[1;37mY8888888P\027[0;31m\001:::::::::\014\027[1;37m8b\027[0;31m::::\027[1;33m :\027[1;34mNation's-\027[0;31mData\027[1;33m:\027[1;33m",
+ "\027[1;33m:\027[0;31mEngineering \027[1;33m: \027[0;31m.::::\027[1;37m88\027[0;31m\002\003\004\005\006\007\008\009\010\011\012\013\027[1;37mY88888P\027[0;31m\002\003\004\005\006\007\008\009\010\011\012\013\027[1;37m88\027[0;31m::::.\027[1;33m `~~~~~~~~~~~~'\027[1;33m",
+ "\027[1;33m `~~~~~~~~~~~~' \027[0;31m:::::\027[1;37mY8baaaaaaaaaa88P\027[0;31m:\027[1;37mT\027[0;31m:\027[1;37mY88aaaaaaaaaad8P\027[0;31m::::: \027[0;31m",
+ "\027[0;31m :::::::\027[1;37mY88888888888P\027[0;31m::\027[1;37m|\027[0;31m::\027[1;37mY88888888888P\027[0;31m::::::: \027[0;31m",
+ "\027[1;33m,~~~~~~~~~~~~~, \027[0;31m::::::::::::::::\027[1;37m888\027[0;31m:::\027[1;37m|\027[0;31m:::\027[1;37m888\027[0;31m::::::::::::::::\027[1;33m ,~~~~~~~~~~~~~,\027[1;33m",
+ "\027[1;33m:\027[1;34m R00T-KITS \027[1;33m : \027[0;31m`:::::::::::::::\027[1;37m8888888888888b\027[0;31m::::::::::::::' \027[1;33m :\027[0;31mHoM3-$w33t\027[1;33m :\027[1;37m",
+ "\027[1;33m:\027[0;31m ____ \027[1;37m __ \027[1;33m : \027[0;31m:::::::::::::::\027[1;37m88888888888888\027[0;31m:::::::::::::: \027[1;33m :\027[1;34m (I\027[1;33m :\027[1;33m",
+ "\027[1;33m: \027[0;31m| |\027[1;37m |\027[0;31m-_\027[1;37m| \027[1;33m:\027[0;31m :::::::::::::\027[1;37md88888888888888\027[0;31m::::::::::::: \027[1;33m :\027[1;36m^^^\027[1;34m |\027[1;36m ^^^\027[1;33m:\027[1;33m",
+ "\027[1;33m:\027[0;31m |____|\027[1;33m_\027[1;37m|\027[0;31m=_\027[1;37m|\027[1;33m :\027[0;31m ::::::::::::\027[1;37m88\027[0;31m::\027[1;37m88\027[0;31m::\027[1;37m88\027[0;31m:::\027[1;37m88\027[0;31m::::::::::::\027[1;33m :\027[1;34m|u|_\027[1;36m^^^^^\027[1;34m_|u|\027[1;33m:\027[1;33m",
+ "\027[1;33m:\027[1;37m ____\027[1;33m)\027[1;37m_\027[1;37m.\027[1;37m___\027[1;33m : \027[0;31m`::::::::::\027[1;37m88\027[0;31m::\027[1;37m88\027[0;31m::\027[1;37m88\027[0;31m:::\027[1;37m88\027[0;31m::::::::::' \027[1;33m :\027[1;34m|_ u _ u _|\027[1;33m:\027[1;33m",
+ "\027[1;33m: \027[1;37m/\027[1;34m:::::;\027[1;37m|\027[1;34m _\027[1;37m)\027[1;33m:\027[1;34m &\027[0;31m`:::::::::\027[1;37m88\027[0;31m::\027[1;37m88\027[0;31m::\027[1;37mP\027[0;31m::::\027[1;37m88\027[0;31m:::::::::'\027[1;34m& \027[1;33m:\027[1;34m |__|\027[1;37m;\027[1;34m|__| \027[1;33m :\027[1;33m",
+ "\027[1;33m:\027[1;37m `======'\027[1;34m |_|\027[1;33m: \027[1;34m+ \027[0;31m `:::::::\027[1;37m88\027[0;31m::\027[1;37m88\027[0;31m:::::::\027[1;37m88\027[0;31m:::::::' \027[1;34m + \027[1;33m :\027[1;34m /_/ \027[1;33m :\027[1;33m",
+ "\027[1;33m:\027[1;34mUr-Computer-\027[1;33m :\027[1;34m&&&&&&& \027[0;31m ``:::::::::::::::::::::::''\027[1;34m &&&&&&&\027[1;33m:\027[0;31mH4x0r-HoM3- \027[1;33m :\027[1;33m",
+ "\027[1;33m:\027[1;34mis-MY-\027[0;31mSlave \027[1;33m : \027[0;31m ``::::::::::::::''\027[1;33m :\027[0;31m *\027[1;37m127\027[0;31m.\027[1;37m0\027[0;31m.\027[1;37m0\027[0;31m.\027[1;37m1\027[0;31m* \027[1;33m:\027[1;33m",
+ "\027[1;33m `~~~~~~~~~~~~' `~~~~~~~~~~~~'\027[1;33m",
+ "\027[0;31m=\027[1;37m-\027[0;31m=\027[1;37m-\027[0;31m=\027[1;37m\027[1;37m-\027[0;31m=\027[1;37m-\027[0;31m=\027[1;37m-\027[0;31m=\027[1;37m-\027[0;31m=\027[1;37m-\027[0;31m=\027[1;37m-\027[0;31m=\027[1;37m-\027[0;31m=\027[1;37m-\027[0;31m=\027[1;37m-\027[0;31m=\027[1;37m-\027[0;31m=\027[1;37m-\027[0;31m=\027[1;37m-\027[0;31m=\027[1;37m-\027[0;31m=\027[1;37m-\027[0;31m=\027[1;37m-\027[0;31m=\027[1;37m-\027[0;31m=\027[1;37m-\027[0;31m=\027[1;37m-\027[0;31m=\027[1;37m-\027[0;31m=\027[1;37m-\027[0;31m=\027[1;37m-\027[0;31m=\027[1;37m-\027[0;31m=\027[1;37m-\027[0;31m=\027[1;37m-\027[0;31m=\027[1;37m-\027[0;31m=\027[1;37m-\027[0;31m=\027[1;37m\027[1;37m-\027[0;31m=\027[1;37m-\027[0;31m=\027[1;37m-\027[0;31m=\027[1;37m-\027[0;31m=\027[1;37m-\027[0;31m=\027[1;37m-\027[0;31m=\027[1;37m-\027[0;31m=\027[1;37m-\027[0;31m=\027[1;37m-\027[0;31m=\027[1;37m-\027[0;31m=\027[1;37m-\027[0;31m=\027[1;37m-\027[1;37m",
+ "\027[0;31m -======- \027[1;37m +\027[0;31mWARNING\027[1;37m+\027[1;33m\"\027[0;31mIllegal\027[1;37m_\027[0;31mNetwork\027[1;37m_\027[0;31mConnections\027[1;37m_\027[0;31mBeyond\027[1;37m_\027[0;31mLogin\027[1;33m\" \027[0;31m -======-\027[0;31m",
+ "\027[0;31m |\027[1;32mH\027[1;34m4\027[1;33mC\027[1;35mK\027[1;36m3\027[1;37mR\027[0;31m| \027[1;34m -== \027[1;37m You are at the point of \027[0;31mNO RETURN \027[1;34m ==- \027[0;31m |\027[1;32mH\027[1;34m4\027[1;33mC\027[1;35mK\027[1;36m3\027[1;37mR\027[0;31m|\027[0;31m",
+ "\027[0;31m |______|\027[0;31mYour Activities\027[1;37m:\027[1;33mWill\027[1;37m_\027[1;33mbe\027[1;37m_\027[1;33mKeylogged\027[1;37m_\027[1;33mand\027[1;37m_\027[1;33mTimestamped \027[1;34m\"\027[0;31mUSER_BEWARE\027[1;34m\"\027[0;31m|______|\027[0;31m",
+ "\027[0;31mHacking Sites\027[1;37m:\027[0;31m https\027[1;37m:\027[1;33m//\027[0;31msites\027[1;37m.\027[0;31mgoogle\027[1;37m.\027[0;31mcom\027[1;33m/\027[0;31msite\027[1;33m/\027[0;31mlazyboxx \027[1;35m*\027[0;31m http\027[1;37m:\027[1;33m//\027[0;31mwww\027[1;37m.\027[0;31mfreebsd\027[1;37m.\027[0;31morg \027[1;33m"
+ }
+ io.write("\027[1;1H") --reset cursor
+ for a = 7,11 do
+ for b = 1,24 do
+ if b == position then
+ nissue[a] = string.gsub(nissue[a],string.char(b),"\027[1;31m@\027[0;31m")
+ else
+ nissue[a] = string.gsub(nissue[a],string.char(b),":")
+ end
+ end
+ end
+ for a = 5,21 do
+ if bool then
+ nissue[a] = string.gsub(nissue[a],"&","\027[31;1m=\027[37;1m")
+ nissue[a] = string.gsub(nissue[a],"+","\027[31;1m|\027[37;1m")
+ else
+ nissue[a] = string.gsub(nissue[a],"&","=")
+ nissue[a] = string.gsub(nissue[a],"+","|")
+ end
+ end
+ for i = 1,28 do
+ print(nissue[i])
+ end
+ bool = not bool
+end
+function changepos(num)
+ if position == 24 and num == 1 then
+ position = 1
+ elseif position == 1 and num == -1 then
+ position = 24
+ else
+ position = position + num
+ end
+end
+position = 14
+bool = true
+dirs = {1,-1}
+draw()
+while true do
+ move = math.random(1,6)
+ dir = dirs[math.random(1,2)]
+ draw()
+ for m = 1,move do
+ changepos(dir)
+ draw()
+ os.execute("sleep 0.1") --Replace it with some other way to wait one tenth of a second if you're using Windows or don't have "sleep"
+ end --On the subject of Windows compatibility, Ansicon is a perfect way to make the Ansi escape codes work.
+end
diff --git a/Scripts/wiki2P.py.save b/Scripts/wiki2P.py.save
new file mode 100755
index 0000000..d9677e7
--- /dev/null
+++ b/Scripts/wiki2P.py.save
@@ -0,0 +1,16 @@
+import requests, bs4
+
+#res = requests.get("https://en.wikipedia.org/wiki/Special:Random")
+res = requests.get("https://en.wikipedia.org/wiki/Study")
+
+
+soup = bs4.BeautifulSoup(res.text)
+
+
+element = soup.select("#mw-content-text a[title]")
+
+print(element)
+
+
+for i in element:
+ if(i[title])