├── .gitignore ├── CDYSCrawlingJob.py ├── DividendCrawlingJob.py ├── LICENSE ├── PriceCrawlingJob.py ├── README.md ├── WorkPool.py ├── dividend_data ├── year_1984.json ├── year_1985.json ├── year_1986.json ├── year_1987.json ├── year_1988.json ├── year_1989.json ├── year_1990.json ├── year_1991.json ├── year_1992.json ├── year_1993.json ├── year_1994.json ├── year_1995.json ├── year_1996.json ├── year_1997.json ├── year_1998.json ├── year_1999.json ├── year_2000.json ├── year_2001.json ├── year_2002.json ├── year_2003.json ├── year_2004.json ├── year_2005.json ├── year_2006.json ├── year_2007.json ├── year_2008.json ├── year_2009.json ├── year_2010.json ├── year_2011.json ├── year_2012.json ├── year_2013.json ├── year_2014.json ├── year_2015.json ├── year_2016.json ├── year_2017.json ├── year_2018.json ├── year_2019.json ├── year_2020.json ├── year_2021.json ├── year_2022.json ├── year_2023.json └── year_2024.json ├── fetch_dividend_data.py ├── portfolio ├── pf_0050.json ├── pf_0051.json ├── pf_0056.json ├── pf_00690.json ├── pf_00940.json ├── pfpatch.py └── portfolio.json ├── query.py ├── update_dividend_data.py ├── update_etf.py └── update_price_data.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | credential 3 | portfolio/tracking.json 4 | dev 5 | -------------------------------------------------------------------------------- /CDYSCrawlingJob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthklo/twstockfilter/HEAD/CDYSCrawlingJob.py -------------------------------------------------------------------------------- /DividendCrawlingJob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthklo/twstockfilter/HEAD/DividendCrawlingJob.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthklo/twstockfilter/HEAD/LICENSE -------------------------------------------------------------------------------- /PriceCrawlingJob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthklo/twstockfilter/HEAD/PriceCrawlingJob.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthklo/twstockfilter/HEAD/README.md -------------------------------------------------------------------------------- /WorkPool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthklo/twstockfilter/HEAD/WorkPool.py -------------------------------------------------------------------------------- /dividend_data/year_1984.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthklo/twstockfilter/HEAD/dividend_data/year_1984.json -------------------------------------------------------------------------------- /dividend_data/year_1985.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthklo/twstockfilter/HEAD/dividend_data/year_1985.json -------------------------------------------------------------------------------- /dividend_data/year_1986.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthklo/twstockfilter/HEAD/dividend_data/year_1986.json -------------------------------------------------------------------------------- /dividend_data/year_1987.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthklo/twstockfilter/HEAD/dividend_data/year_1987.json -------------------------------------------------------------------------------- /dividend_data/year_1988.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthklo/twstockfilter/HEAD/dividend_data/year_1988.json -------------------------------------------------------------------------------- /dividend_data/year_1989.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthklo/twstockfilter/HEAD/dividend_data/year_1989.json -------------------------------------------------------------------------------- /dividend_data/year_1990.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthklo/twstockfilter/HEAD/dividend_data/year_1990.json -------------------------------------------------------------------------------- /dividend_data/year_1991.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthklo/twstockfilter/HEAD/dividend_data/year_1991.json -------------------------------------------------------------------------------- /dividend_data/year_1992.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthklo/twstockfilter/HEAD/dividend_data/year_1992.json -------------------------------------------------------------------------------- /dividend_data/year_1993.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthklo/twstockfilter/HEAD/dividend_data/year_1993.json -------------------------------------------------------------------------------- /dividend_data/year_1994.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthklo/twstockfilter/HEAD/dividend_data/year_1994.json -------------------------------------------------------------------------------- /dividend_data/year_1995.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthklo/twstockfilter/HEAD/dividend_data/year_1995.json -------------------------------------------------------------------------------- /dividend_data/year_1996.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthklo/twstockfilter/HEAD/dividend_data/year_1996.json -------------------------------------------------------------------------------- /dividend_data/year_1997.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthklo/twstockfilter/HEAD/dividend_data/year_1997.json -------------------------------------------------------------------------------- /dividend_data/year_1998.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthklo/twstockfilter/HEAD/dividend_data/year_1998.json -------------------------------------------------------------------------------- /dividend_data/year_1999.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthklo/twstockfilter/HEAD/dividend_data/year_1999.json -------------------------------------------------------------------------------- /dividend_data/year_2000.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthklo/twstockfilter/HEAD/dividend_data/year_2000.json -------------------------------------------------------------------------------- /dividend_data/year_2001.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthklo/twstockfilter/HEAD/dividend_data/year_2001.json -------------------------------------------------------------------------------- /dividend_data/year_2002.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthklo/twstockfilter/HEAD/dividend_data/year_2002.json -------------------------------------------------------------------------------- /dividend_data/year_2003.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthklo/twstockfilter/HEAD/dividend_data/year_2003.json -------------------------------------------------------------------------------- /dividend_data/year_2004.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthklo/twstockfilter/HEAD/dividend_data/year_2004.json -------------------------------------------------------------------------------- /dividend_data/year_2005.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthklo/twstockfilter/HEAD/dividend_data/year_2005.json -------------------------------------------------------------------------------- /dividend_data/year_2006.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthklo/twstockfilter/HEAD/dividend_data/year_2006.json -------------------------------------------------------------------------------- /dividend_data/year_2007.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthklo/twstockfilter/HEAD/dividend_data/year_2007.json -------------------------------------------------------------------------------- /dividend_data/year_2008.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthklo/twstockfilter/HEAD/dividend_data/year_2008.json -------------------------------------------------------------------------------- /dividend_data/year_2009.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthklo/twstockfilter/HEAD/dividend_data/year_2009.json -------------------------------------------------------------------------------- /dividend_data/year_2010.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthklo/twstockfilter/HEAD/dividend_data/year_2010.json -------------------------------------------------------------------------------- /dividend_data/year_2011.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthklo/twstockfilter/HEAD/dividend_data/year_2011.json -------------------------------------------------------------------------------- /dividend_data/year_2012.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthklo/twstockfilter/HEAD/dividend_data/year_2012.json -------------------------------------------------------------------------------- /dividend_data/year_2013.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthklo/twstockfilter/HEAD/dividend_data/year_2013.json -------------------------------------------------------------------------------- /dividend_data/year_2014.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthklo/twstockfilter/HEAD/dividend_data/year_2014.json -------------------------------------------------------------------------------- /dividend_data/year_2015.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthklo/twstockfilter/HEAD/dividend_data/year_2015.json -------------------------------------------------------------------------------- /dividend_data/year_2016.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthklo/twstockfilter/HEAD/dividend_data/year_2016.json -------------------------------------------------------------------------------- /dividend_data/year_2017.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthklo/twstockfilter/HEAD/dividend_data/year_2017.json -------------------------------------------------------------------------------- /dividend_data/year_2018.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthklo/twstockfilter/HEAD/dividend_data/year_2018.json -------------------------------------------------------------------------------- /dividend_data/year_2019.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthklo/twstockfilter/HEAD/dividend_data/year_2019.json -------------------------------------------------------------------------------- /dividend_data/year_2020.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthklo/twstockfilter/HEAD/dividend_data/year_2020.json -------------------------------------------------------------------------------- /dividend_data/year_2021.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthklo/twstockfilter/HEAD/dividend_data/year_2021.json -------------------------------------------------------------------------------- /dividend_data/year_2022.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthklo/twstockfilter/HEAD/dividend_data/year_2022.json -------------------------------------------------------------------------------- /dividend_data/year_2023.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthklo/twstockfilter/HEAD/dividend_data/year_2023.json -------------------------------------------------------------------------------- /dividend_data/year_2024.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthklo/twstockfilter/HEAD/dividend_data/year_2024.json -------------------------------------------------------------------------------- /fetch_dividend_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthklo/twstockfilter/HEAD/fetch_dividend_data.py -------------------------------------------------------------------------------- /portfolio/pf_0050.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthklo/twstockfilter/HEAD/portfolio/pf_0050.json -------------------------------------------------------------------------------- /portfolio/pf_0051.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthklo/twstockfilter/HEAD/portfolio/pf_0051.json -------------------------------------------------------------------------------- /portfolio/pf_0056.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthklo/twstockfilter/HEAD/portfolio/pf_0056.json -------------------------------------------------------------------------------- /portfolio/pf_00690.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthklo/twstockfilter/HEAD/portfolio/pf_00690.json -------------------------------------------------------------------------------- /portfolio/pf_00940.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthklo/twstockfilter/HEAD/portfolio/pf_00940.json -------------------------------------------------------------------------------- /portfolio/pfpatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthklo/twstockfilter/HEAD/portfolio/pfpatch.py -------------------------------------------------------------------------------- /portfolio/portfolio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthklo/twstockfilter/HEAD/portfolio/portfolio.json -------------------------------------------------------------------------------- /query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthklo/twstockfilter/HEAD/query.py -------------------------------------------------------------------------------- /update_dividend_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthklo/twstockfilter/HEAD/update_dividend_data.py -------------------------------------------------------------------------------- /update_etf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthklo/twstockfilter/HEAD/update_etf.py -------------------------------------------------------------------------------- /update_price_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthklo/twstockfilter/HEAD/update_price_data.py --------------------------------------------------------------------------------