top of page
_41d5fb36-53f4-4932-a6da-b3436df0fb92.jpeg

Projects

OIP (3).jpg

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)

 

OIP (2).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.

OIP (2).jpg
6bcf7069-186d-445f-a572-bc4f80f5196f.png

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;

 

1663575084_613943_1663576103_portada_normal.jpg
bottom of page