Home
Softono

Google Finance Scraper

Open source Python
88
Stars
1
Forks
0
Issues
2
Watchers
4 months
Last Commit

 About Google Finance Scraper

Scraping Google Finance with BeautifulSoup to create a portfolio tracker. Scraped data is stored into an SQLite database.

Platforms

Web Self-hosted

Languages

Python

Links

Need Help Installing Google Finance Scraper?

We provide expert installation service for this software. Our team will install, configure, and secure Google Finance Scraper on your server. plans start at just $30.

Google Finance Scraper

View on GitHub

PortfolioTracker

A portfolio tracking project that tracks your portfolio

Installation

pip install portfoliotracker

Usage

from portfoliotracker import Portfolio, Position, Stock, display_portfolio_summary

shop = Stock("SHOP", "TSE")
google = Stock("GOOGL", "NASDAQ")
msft = Stock("MSFT", "NASDAQ")
baba = Stock("BABA", "NYSE")
apple = Stock("AAPL", "NASDAQ")
tesla = Stock("TSLA", "NASDAQ")

portfolio = Portfolio(
    [
        Position(shop, 10),
        Position(google, 20),
        Position(apple, 20),
        Position(tesla, 10),
        Position(msft, 23),
        Position(baba, 9),
    ]
)

display_portfolio_summary(portfolio)

alt text

License

Apache-2.0 License.