Anime Nerds

Projects

Anime Finder
import requests
def get_anime_info(anime_title):
# Replace spaces with underscores for URL compatibility
anime_title = anime_title.replace(" ", "_")
url = f"https://api.jikan.moe/v3/search/anime?q={anime_title}"
response = requests.get(url)
if response.status_code == 200:
anime_data = response.json()
if anime_data['results']:
anime = anime_data['results'][0]
print(f"Title: {anime['title']}")
print(f"Synopsis: {anime['synopsis']}")
print(f"Episodes: {anime['episodes']}")
print(f"Score: {anime['score']}")
print(f"URL: {anime['url']}")
else:
print("No results found.")
else:
print("Error fetching data.")
# Example usage
anime_title = "Naruto"
get_anime_info(anime_title)
.jpg)
Project Name
This is your Project description. Provide a brief summary to help visitors understand the context and background of your work. Click on "Edit Text" or double click on the text box to start.

Community Finder
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Anime Community Finder</title>
</head>
<body>
<h1>Find Your Anime Community</h1>
<label for="anime">Enter your favorite anime:</label>
<input type="text" id="anime" name="anime" />
<button onclick="findCommunity()">Find Community</button>
<h2>Communities</h2>
<ul id="communityList"></ul>
<script>
async function findCommunity() {
const anime = document.getElementById('anime').value;
