This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// duivesteyn // Super Simple Android HTTPS GET Request Example using Volley. | |
// There was so much confusing android content online, I wanted to post a simple Example of a HTTPS GET Request with here. | |
// Uses Google Volley. | |
// | |
// (and yes I'm new to java. This is the first java code I ever wrote) | |
// | |
// 2022-02-14 | |
// |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/user/bin/env python3 | |
# coding: utf-8 | |
# bmd-exploring-the-yahoo-finance-stock-search-api | |
# bmd | |
# exploring the yahoo finance stock lookup API. I.e. something that will identify tickers from a search | |
# python code that takes an input stock ticker code (fragment), and returns the most likely result(s) for the search. | |
# Api exists at https://finance.yahoo.com/_finance_doubledown/api/resource/searchassist;searchTerm=WAF | |
# But is pretty undocumented. Seems to have been around for years (since 2019ish). Seems to give just the 10 most likely guesses | |
# |