Skip to content

daily tasks automation bot connected with my private azmuth engine proof of concept

Notifications You must be signed in to change notification settings

r4mbhardwaj/DailyGrindBot

Repository files navigation

Logo

App Name

description

Demo

Insert gif or link to demo

Usage/Examples

main.py

import platform

class System_Info(RunnerView):
    template_name = "src/list.html"

    def get_response(**kwargs):
        """
        shows system info
        """
        return {
            "system": platform.system(),
            "node": platform.node(),
            "release": platform.release(),
            "version": platform.version(),
            "machine": platform.machine(),
            "processor": platform.processor(),
            "uptime": psutil.boot_time(),
            "cpu": psutil.cpu_percent(),
            "memory": psutil.virtual_memory(),
            "disk": psutil.disk_usage("/"),
        }

Run Locally

Clone the project

  git clone https://link-to-project

Go to the project directory

  cd my-project

Install dependencies

  pip3 install -r requirements.txt

Start the Excalibur Engine and then change src in auto-generated manifest.json file

Restart Server Again! Boom! working!

Roadmap

  • Updates LoL

Tech Stack

Client: Bootstrap, Javascript, TailwindCSS

Server: Python, Django

Optimizations

What optimizations did you make in your code? E.g. refactors, performance improvements, accessibility

Screenshots

App Screenshot

Lessons Learned

What did you learn while building this project? What challenges did you face and how did you overcome them?

Authors

Used By

This project is used by the following companies:

  • Company 1

Feedback

If you have any feedback, please reach out to us at [email protected]

About

daily tasks automation bot connected with my private azmuth engine proof of concept

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages