Forum SettingsEpisode Information
Forums
Attack on Titan
Available on Manga Store
New
Pages (4) « 1 [2] 3 4 »
May 3, 5:55 AM

Online
Jul 2023
4972
@vivi_kia It’s fine now. I mentioned the spoiler name because MAL uses her real name instead.



๐“•๐“ธ๐“ป๐”€๐“ช๐“ป๐“ญ ๐“ฒ๐“ผ
๐“ฝ๐“ฑ๐“ฎ ๐”€๐“ช๐”‚.....

May 3, 6:13 AM
Offline
Jan 2022
960
Snowikin said:


Are you edited it ??

I've just seen Mikasa there...!

Manslave is indecisive about his decision.
May 3, 6:21 AM

Online
Jul 2023
4972

Levi is nominated by Zarutaku. You can nominate another character.



๐“•๐“ธ๐“ป๐”€๐“ช๐“ป๐“ญ ๐“ฒ๐“ผ
๐“ฝ๐“ฑ๐“ฎ ๐”€๐“ช๐”‚.....

May 3, 6:43 AM

Online
Jul 2023
4972

Eren is already nominated by ZXEAN. You can nominate another character.



๐“•๐“ธ๐“ป๐”€๐“ช๐“ป๐“ญ ๐“ฒ๐“ผ
๐“ฝ๐“ฑ๐“ฎ ๐”€๐“ช๐”‚.....

May 3, 6:51 AM
Offline
Jun 2022
265
I nominate Levi Ackerman
May 3, 6:53 AM

Online
Jul 2023
4972
Reply to Gonryo_Spectrum
I nominate Levi Ackerman
@Gonryo_Spectrum You can nominate another character since Levi is already nominated by Zarutaku.



๐“•๐“ธ๐“ป๐”€๐“ช๐“ป๐“ญ ๐“ฒ๐“ผ
๐“ฝ๐“ฑ๐“ฎ ๐”€๐“ช๐”‚.....

May 3, 8:02 AM

Offline
Jun 2019
7477
This one I'll sit out since I haven't followed the series closely enough to feel justified in putting forward my opinion (watched the first season and part of the second, but didn't continue with it thereafter), but as always, I thank you for the username mention inclusion regardless and express desire of the wish to remain on the active notification shortlist.
May 3, 8:14 AM
Offline
Jul 2023
4
nirererin said:
Cyclops17_07_09 said:
I nominate Reiner Braun, I think his psychological problems are one of the best written in anime @nirererin

provide the Character's MAL link

https://myanimelist.net/character/46484/Reiner_Braun
May 3, 8:45 AM
Offline
Jan 2024
1
I nominate Eren Yeager
May 3, 9:13 AM
May 3, 9:17 AM
Offline
Nov 2022
953
No historia?



NOOOO
May 3, 9:25 AM

Online
Jul 2023
4972
acidic_water said:
I nominate Eren Yeager

eren yeager is already nominated, you can nominate another character



๐“•๐“ธ๐“ป๐”€๐“ช๐“ป๐“ญ ๐“ฒ๐“ผ
๐“ฝ๐“ฑ๐“ฎ ๐”€๐“ช๐”‚.....

May 3, 9:27 AM
Offline
Dec 2021
56
Levi Ackerman

Now, let's move to the next important topic in the Python Learning Series

*Web Scraping using BeautifulSoup*

*What is Web Scraping?*

Web Scraping is the process of automatically extracting data from websites.

For example, if you want to collect all product names and prices from an e-commerce site — instead of copying them manually, you can write a Python script to do it for you.

*BeautifulSoup*: BeautifulSoup is a Python library used to extract data from websites. It works by parsing HTML or XML code and lets you find the exact parts of a webpage you want.

*requests*: Helps fetch the webpage’s HTML code.

*Step-by-Step Tutorial*

*Step 1: Install Required Libraries*

pip install requests
pip install beautifulsoup4


*Step 2: Fetch a Web Page*

import requests

url = "https://quotes.toscrape.com"
response = requests.get(url)

print(response.text) # prints the HTML content



*Step 3: Parse the HTML with BeautifulSoup*

from bs4 import BeautifulSoup

soup = BeautifulSoup(response.text, 'html.parser')


*Step 4: Extract Specific Data (e.g., Quotes & Authors)*

Each quote is inside a <div class="quote">, so:

quotes = soup.find_all('div', class_='quote')

for quote in quotes:
text = quote.find('span', class_='text').text
author = quote.find('small', class_='author').text
print(f"{text} — {author}")



*Step 5: Save to CSV* (Optional)

import csv

with open('quotes.csv', 'w', newline='', encoding='utf-8') as file:
writer = csv.writer(file)
writer.writerow(['Quote', 'Author'])

for quote in quotes:
text = quote.find('span', class_='text').text
author = quote.find('small', class_='author').text
writer.writerow([text, author])

*Useful Methods in BeautifulSoup*

- soup.find("tag"): Finds the first matching tag.

- soup.find_all("tag"): Finds all tags of that type.

- soup.select("css-selector"): Finds elements using CSS style (like .class or #id).

- .text: Extracts just the text inside the HTML tag.

- .attrs: Accesses tag attributes like href, src, etc.

*Always check a website’s robots.txt file or terms of service before scraping.*
*Avoid scraping sites that prohibit it or overload servers with frequent requests.*


*React with โค๏ธ once you're ready for the next quiz on web scrapping*

Web Scrapping Project: https://whatsapp.com/channel/0029Vau5fZECsU9HJFLacm2a/205

Python Learning Series: https://whatsapp.com/channel/0029VaiM08SDuMRaGKd9Wv0L/1527
May 3, 9:28 AM
Offline
May 2020
68
On god I nominate Gabi. One of the best written characters in all of AoT that gave a realistic depiction of radicalization.

https://myanimelist.net/character/149205/Gabi_Braun
May 3, 9:31 AM

Offline
Jan 2025
358
kush_void said:


Now, let's move to the next important topic in the Python Learning Series

*Web Scraping using BeautifulSoup*

*What is Web Scraping?*

Web Scraping is the process of automatically extracting data from websites.

For example, if you want to collect all product names and prices from an e-commerce site — instead of copying them manually, you can write a Python script to do it for you.

*BeautifulSoup*: BeautifulSoup is a Python library used to extract data from websites. It works by parsing HTML or XML code and lets you find the exact parts of a webpage you want.

*requests*: Helps fetch the webpage’s HTML code.

*Step-by-Step Tutorial*

*Step 1: Install Required Libraries*

pip install requests
pip install beautifulsoup4


*Step 2: Fetch a Web Page*

import requests

url = "[url=https://quotes.toscrape.com"/]https://quotes.toscrape.com"[/url]
response = requests.get(url)

print(response.text) # prints the HTML content



*Step 3: Parse the HTML with BeautifulSoup*

from bs4 import BeautifulSoup

soup = BeautifulSoup(response.text, 'html.parser')


*Step 4: Extract Specific Data (e.g., Quotes & Authors)*

Each quote is inside a <div class="quote">, so:

quotes = soup.find_all('div', class_='quote')

for quote in quotes:
text = quote.find('span', class_='text').text
author = quote.find('small', class_='author').text
print(f"{text} — {author}")



*Step 5: Save to CSV* (Optional)

import csv

with open('quotes.csv', 'w', newline='', encoding='utf-8') as file:
writer = csv.writer(file)
writer.writerow(['Quote', 'Author'])

for quote in quotes:
text = quote.find('span', class_='text').text
author = quote.find('small', class_='author').text
writer.writerow([text, author])

*Useful Methods in BeautifulSoup*

- soup.find("tag"): Finds the first matching tag.

- soup.find_all("tag"): Finds all tags of that type.

- soup.select("css-selector"): Finds elements using CSS style (like .class or #id).

- .text: Extracts just the text inside the HTML tag.

- .attrs: Accesses tag attributes like href, src, etc.

*Always check a website’s robots.txt file or terms of service before scraping.*
*Avoid scraping sites that prohibit it or overload servers with frequent requests.*


*React with โค๏ธ once you're ready for the next quiz on web scrapping*

Web Scrapping Project: https://whatsapp.com/channel/0029Vau5fZECsU9HJFLacm2a/205

Python Learning Series: https://whatsapp.com/channel/0029VaiM08SDuMRaGKd9Wv0L/1527


Wth are doing in this disscussion ?









































































center][/center]
May 3, 9:37 AM

Offline
Sep 2020
5665
Everyone wants to nominate Eren and Levi. There are soo many important characters left choose them lol.
May 3, 9:38 AM
Offline
Mar 2025
29
since erwins taken ill pick zeke
May 3, 9:38 AM

Online
Jul 2023
4972
kush_void said:
Levi Ackerman

Now, let's move to the next important topic in the Python Learning Series

*Web Scraping using BeautifulSoup*

*What is Web Scraping?*

Web Scraping is the process of automatically extracting data from websites.

For example, if you want to collect all product names and prices from an e-commerce site — instead of copying them manually, you can write a Python script to do it for you.

*BeautifulSoup*: BeautifulSoup is a Python library used to extract data from websites. It works by parsing HTML or XML code and lets you find the exact parts of a webpage you want.

*requests*: Helps fetch the webpage’s HTML code.

*Step-by-Step Tutorial*

*Step 1: Install Required Libraries*

pip install requests
pip install beautifulsoup4


*Step 2: Fetch a Web Page*

import requests

url = "https://quotes.toscrape.com"
response = requests.get(url)

print(response.text) # prints the HTML content



*Step 3: Parse the HTML with BeautifulSoup*

from bs4 import BeautifulSoup

soup = BeautifulSoup(response.text, 'html.parser')


*Step 4: Extract Specific Data (e.g., Quotes & Authors)*

Each quote is inside a <div class="quote">, so:

quotes = soup.find_all('div', class_='quote')

for quote in quotes:
text = quote.find('span', class_='text').text
author = quote.find('small', class_='author').text
print(f"{text} — {author}")



*Step 5: Save to CSV* (Optional)

import csv

with open('quotes.csv', 'w', newline='', encoding='utf-8') as file:
writer = csv.writer(file)
writer.writerow(['Quote', 'Author'])

for quote in quotes:
text = quote.find('span', class_='text').text
author = quote.find('small', class_='author').text
writer.writerow([text, author])

*Useful Methods in BeautifulSoup*

- soup.find("tag"): Finds the first matching tag.

- soup.find_all("tag"): Finds all tags of that type.

- soup.select("css-selector"): Finds elements using CSS style (like .class or #id).

- .text: Extracts just the text inside the HTML tag.

- .attrs: Accesses tag attributes like href, src, etc.

*Always check a website’s robots.txt file or terms of service before scraping.*
*Avoid scraping sites that prohibit it or overload servers with frequent requests.*


*React with โค๏ธ once you're ready for the next quiz on web scrapping*

Web Scrapping Project: https://whatsapp.com/channel/0029Vau5fZECsU9HJFLacm2a/205

Python Learning Series: https://whatsapp.com/channel/0029VaiM08SDuMRaGKd9Wv0L/1527

Levi’s already been nominated.

Now moving on, that was a spectacular display of foolishness… Honestly, what are you doing? Did you accidentally snack on pet food instead of actual brain fuel.



๐“•๐“ธ๐“ป๐”€๐“ช๐“ป๐“ญ ๐“ฒ๐“ผ
๐“ฝ๐“ฑ๐“ฎ ๐”€๐“ช๐”‚.....

May 3, 9:40 AM

Online
Jul 2023
4972
Donquixotefan said:
since erwins taken ill pick zeke

zeke is also nominated by nght_walkr. You can nominate another character.



๐“•๐“ธ๐“ป๐”€๐“ช๐“ป๐“ญ ๐“ฒ๐“ผ
๐“ฝ๐“ฑ๐“ฎ ๐”€๐“ช๐”‚.....

May 3, 9:54 AM

Offline
May 2024
98
Nooo why is Hange alread taken ๐Ÿ˜ญ๐Ÿ˜ญ๐Ÿ˜ญ I shouldn't have gone to sleep ๐Ÿ˜ฃ๐Ÿ˜ช
Well, who should I nominate.. Krista, Annie and Ymir are good characters, guess I'll go with Annie Leonhart and if she is taken with Krista Lenz..

Edit: Oops I just now saw that Krista has already been nominated ๐Ÿ˜ญ
Auti_May 3, 9:58 AM
May 3, 9:59 AM
Offline
Oct 2022
1
i nominate Annie Leonhart
May 3, 10:01 AM

Online
Jul 2023
4972
Reply to Auti_
Nooo why is Hange alread taken ๐Ÿ˜ญ๐Ÿ˜ญ๐Ÿ˜ญ I shouldn't have gone to sleep ๐Ÿ˜ฃ๐Ÿ˜ช
Well, who should I nominate.. Krista, Annie and Ymir are good characters, guess I'll go with Annie Leonhart and if she is taken with Krista Lenz..

Edit: Oops I just now saw that Krista has already been nominated ๐Ÿ˜ญ
@Auti_ I have already registered annie as your nominee. Is it okay or you like to change?



๐“•๐“ธ๐“ป๐”€๐“ช๐“ป๐“ญ ๐“ฒ๐“ผ
๐“ฝ๐“ฑ๐“ฎ ๐”€๐“ช๐”‚.....

May 3, 10:05 AM

Offline
May 2024
98
Reply to nirererin
@Auti_ I have already registered annie as your nominee. Is it okay or you like to change?
@nirererin Yeah thanks!!
May 3, 10:07 AM

Online
Jul 2023
4972
Reetesh-singh said:
i nominate Annie Leonhart

Annie is already nominated by Auti_. You can nominate another character.



๐“•๐“ธ๐“ป๐”€๐“ช๐“ป๐“ญ ๐“ฒ๐“ผ
๐“ฝ๐“ฑ๐“ฎ ๐”€๐“ช๐”‚.....

May 3, 10:28 AM
Offline
Nov 2020
9
I nominate Hannes
May 3, 10:36 AM
Offline
Aug 2023
121
I nominate Marcel Reiss
May 3, 10:48 AM
Offline
Oct 2023
83
@nirererin

Let’s goooooo arigato!
May 3, 11:00 AM

Online
Jul 2023
4972
@Realicle @SUGAAAAAAA provide the Character's mal link



๐“•๐“ธ๐“ป๐”€๐“ช๐“ป๐“ญ ๐“ฒ๐“ผ
๐“ฝ๐“ฑ๐“ฎ ๐”€๐“ช๐”‚.....

May 3, 11:46 AM
May 3, 11:56 AM
Offline
Oct 2023
18
Iam always for mikasa
May 3, 12:00 PM
Offline
Jul 2021
999
I’ll nominate Armin Arlert
May 3, 12:17 PM

Offline
Jan 2008
3321
lets go with this guy if he's not taken before I post it here

https://myanimelist.net/character/89387/Moblit_Berner
May 3, 12:32 PM
Offline
Aug 2024
263
I nominate Eren Yeager
May 3, 1:03 PM

Offline
Jan 2021
142
Thanks for the invite, I'll have to pass on this one (probably can guess why), but please keep me in the loop for future contests.
May 3, 2:13 PM
Offline
Feb 2022
2
i will nominate Eren yeager. I love his character.
May 3, 2:46 PM
Offline
Jan 2024
8
I nominate Bertholdt Hoover
May 3, 2:48 PM
Offline
Jan 2024
8
I nominate Floch Foster
May 3, 2:49 PM
Offline
Jan 2024
8
I nominate Falco Grice
May 3, 2:59 PM

Offline
Jun 2011
14343
May 3, 3:04 PM
Offline
Oct 2024
2
i nominee Levi (best character in whole series)
May 3, 3:39 PM
Offline
Nov 2018
107
I nominate Hange Zoe
May 3, 4:11 PM
John Titor

Offline
Jul 2017
1586
Nice, my favorite is not yet nominated, because he' sooooo secondary that he even is tertiary ;_; .

Therefore, I nominate my all-time favorite character from AoT who's absolutely NOT gonna win T_T: Dot Pixis

https://myanimelist.net/character/62485/Dot_Pixis
Mi música chiptune (auténtica, no fakebit) / My chiptune music (real, no fakebit)
YouTube
Battle of the Bits
SoundCloud
May 3, 4:12 PM
May 3, 5:48 PM
Offline
Aug 2024
56
I nominate Petra Ral
May 3, 7:31 PM
Offline
May 2024
1
I nominate ErenYeager
May 3, 8:43 PM

Online
Jul 2023
4972
@Cochino @Kelly32723 @YamiLoon @Ma0709 @Luizitooooo @frank1974 @TEAM_RUSH_2009
Your respective nominations are already nominated by other users. You guys can nominate another character who isn't nominated yet.



๐“•๐“ธ๐“ป๐”€๐“ช๐“ป๐“ญ ๐“ฒ๐“ผ
๐“ฝ๐“ฑ๐“ฎ ๐”€๐“ช๐”‚.....

Pages (4) « 1 [2] 3 4 »

More topics from this board

Poll: » Shingeki no Kyojin Episode 12 Discussion ( 1 2 3 4 5 ... Last Page )

Stark700 - Jun 22, 2013

521 by stiglar »»
Jun 8, 1:27 AM

Poll: » Shingeki no Kyojin Episode 11 Discussion ( 1 2 3 4 5 ... Last Page )

Stark700 - Jun 15, 2013

944 by stiglar »»
Jun 7, 1:45 PM

Poll: » Shingeki no Kyojin Episode 10 Discussion ( 1 2 3 4 5 ... Last Page )

Stark700 - Jun 8, 2013

647 by stiglar »»
Jun 7, 9:05 AM

Poll: » Shingeki no Kyojin Episode 9 Discussion ( 1 2 3 4 5 ... Last Page )

MermaidGalaxies - Jun 1, 2013

1117 by stiglar »»
Jun 7, 8:44 AM

Poll: » Shingeki no Kyojin Episode 7 Discussion ( 1 2 3 4 5 ... Last Page )

Stark700 - May 18, 2013

963 by stiglar »»
Jun 7, 8:01 AM
Itโ€™s time to ditch the text file.
Keep track of your anime easily by creating your own list.
Sign Up Login