Skip to content
Advertisement

How can I make a command in discord.py that can print the graph of a linear equation?

JavaScript

This is the code of my cog so far. The function “plotlineareq()” first makes a graph with 4 quadrants. Then it takes in the variables “a” (which is the gradient) and the variable “b” (which is the y-intercept). It creates a graph from these variables and saves it as foo.png. This part works separately. The other function is supposed to wait for a message that starts with my prefix “*” and “linear”. A sample message template would be “*linear y=3x+2”. When a message is sent it takes the values a and b from the message (in this case a=3 and b=2. This part also worked correctly alone It then runs the function “plotlineareq()” with these variables and then takes the image “foo” it creates and sends it as an embed. There is no error message that appears as an output. It just doesn’t seem to be triggering the function “linear”. What have I done wrong?

edit: After taking the suggestions of

JavaScript

it still is not working. Again there is no error message. It just is not triggering the function.

Advertisement

Answer

The message argument you first passed in the command would be the Context, you also need to pass the equation argument

JavaScript

More things wrong in your code

  1. The plotlineareq should also take the self as the first argument
  2. When calling the plotlineareq function, you don’t call it like so Equation.plotlineareq, you call it like this: self.plotlineareq

Your whole code fixed:

JavaScript
Advertisement