Module: Finviz
- Extended by:
- Dry::Configurable
- Defined in:
- lib/finviz.rb,
lib/finviz/quote.rb,
lib/finviz/quotes.rb,
lib/finviz/crawler.rb,
lib/finviz/version.rb,
lib/finviz/quotes_fetcher.rb,
lib/finviz/tickers_fetcher.rb
Overview
Main module containing the settings and top-level methods
Defined Under Namespace
Classes: Crawler, Error, Quote, Quotes, QuotesFetcher, TickersFetcher
Constant Summary collapse
- VERSION =
"0.4.0"
Class Method Summary collapse
Class Method Details
.quotes(**opts) ⇒ Object
34 35 36 |
# File 'lib/finviz.rb', line 34 def quotes(**opts) QuotesFetcher.new(**opts).call end |
.tickers(**opts) ⇒ Object
30 31 32 |
# File 'lib/finviz.rb', line 30 def tickers(**opts) TickersFetcher.new(**opts).call end |