Posts by splunk (44)

SH Knowledge bundles:

distsearch.conf -- SH side maxBundleSize server.conf - IDX side max_content_length Knowledge bundles locations: SH -- var/run/*.bundle or *.delta IDX-- var/run/searchpeer *.bundle or *.delta

CL Auto git steps:

1. git add -A 2. git commit -m "" 3. git status 4. git push -u origin master 5. git pull

Python to get the stock prices

import yfinance as yf stockcode = ["MSFT", "AAPL", "SPLK", "CSCO", "GOOG", "TSLA", "NOK"] stocks = [] for item in stockcode: #print(item) s = yf.Ticker(item) stock_instance = { "code": item, "website": s.info['website'], "price": s.info['regularMarketPrice'] } stocks.append(stock_instance) #print(s.info['website']) #print(stock_instance) print(stocks)

First Previous 4 5 6 7 8 Next Last

Our Sidebar

You can put any information here you'd like.

  • Latest Posts
  • Announcements
  • Calendars
  • etc