Compare commits

...

2 Commits

Author SHA1 Message Date
Hemna 1c2d0a4006 remove trace 2022-12-02 13:50:41 -05:00
Hemna fd5f92d22a Updated README 2021-11-09 14:47:22 -05:00
3 changed files with 12 additions and 9 deletions

View File

@ -1,6 +1,16 @@
CHANGES
=======
v0.1.2
------
* Updated README
v0.1.1
------
* Working plugin pulled from aprsd itself
v0.1.0
------

View File

@ -36,13 +36,7 @@ APRSD Yahoo Finance Stock Quotes
Features
--------
* TODO
Requirements
------------
* TODO
* APRSD Plugin that gets a stock quote from Yahoo Finance python API and returns that.
Installation

View File

@ -2,7 +2,7 @@ import logging
import re
import yfinance as yf
from aprsd import plugin, trace
from aprsd import plugin
import aprsd_stock_plugin
@ -26,7 +26,6 @@ class YahooStockQuote(plugin.APRSDRegexCommandPluginBase):
# Do some checks here?
self.enabled = True
@trace.trace
def process(self, packet):
LOG.info(self.__class__.__name__)