Plunnnnn / Down

A simple Cracked Game Search Engine

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Down

Down is an open-source Search Engine, it's main goal is to provide acces to cracked version of games, free of viruses, and ad. Even though Down try to provide safe content, user is highly invited to still becareful of the file he is downloading.

Installation

Prerequisites

  • Python 3.6 or higher
  • pip (Python package installer)

Steps

  1. Clone the repository:

    git clone https://github.com/Plunnnnn/Down <your-folder>
    cd <your-folder>
  2. Create a virtual environment:

    python -m venv venv
  3. Activate the virtual environment:

    • On Windows:

      venv\Scripts\activate
    • On macOS and Linux:

      source venv/bin/activate
  4. Install the required packages:

    pip install -r requirements.txt
  5. Set up the Flask application:

    • On Windows, use set instead of export:

      set FLASK_APP=run.py
      set FLASK_ENV=development
    • On macOS and Linux:

      export FLASK_APP=run.py
      export FLASK_ENV=development

Usage

  1. Run the Flask application:

    flask run
  2. Open your web browser and go to http://127.0.0.1:5000.

  3. Use the search bar to search for games. Click on a game to view detailed information.

Project Structure

  • app/: Contains the main application code.
    • __init__.py: Initializes the Flask app.
    • game.py: Contains the Game class and related methods.
    • routes.py: Defines the routes for the Flask app.
    • scrape.py: Contains the scraping logic.
  • static/: Contains static files (e.g., CSS, JavaScript).
  • templates/: Contains HTML templates.
    • game_detail.html: Template for game detail page.
    • index.html: Template for the main search page.
  • run.py: Entry point for running the Flask app.
  • requirements.txt: Lists the Python dependencies.

Preview

2024-07-27.21-38-09.mp4

Contributing

Contributions are welcome! Please open an issue or submit a pull request for any changes.

License

This project is licensed under the MIT License - see the LICENSE file for details.

About

A simple Cracked Game Search Engine

License:MIT License


Languages

Language:HTML 44.6%Language:Python 34.3%Language:CSS 21.1%