├── .gitattributes ├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── daily_horoscope ├── daily_horoscope │ ├── aquarius.txt │ ├── aries.txt │ ├── cancer.txt │ ├── capricorn.txt │ ├── gemini.txt │ ├── leo.txt │ ├── libra.txt │ ├── pisces.txt │ ├── sagittarius.txt │ ├── scorpio.txt │ ├── taurus.txt │ └── virgo.txt └── script.py ├── google_movies ├── google_movies.py └── out │ └── response.json ├── live_weather └── script.py ├── news_scrapping └── linux_news.py ├── selenium_crawler ├── TechTermSelenium.py └── out │ ├── categories.txt │ └── tech_words.txt ├── spider_algorithm ├── spider.py └── spider_mechanize.py ├── stateofunion ├── ScrapedData │ ├── Abraham LincolnDecember 1, 1862.json │ ├── Abraham LincolnDecember 3, 1861.json │ ├── Abraham LincolnDecember 6, 1864.json │ ├── Abraham LincolnDecember 8, 1863.json │ ├── Andrew JacksonDecember 1, 1834.json │ ├── Andrew JacksonDecember 3, 1833.json │ ├── Andrew JacksonDecember 4, 1832.json │ ├── Andrew JacksonDecember 5, 1836.json │ ├── Andrew JacksonDecember 6, 1830.json │ ├── Andrew JacksonDecember 6, 1831.json │ ├── Andrew JacksonDecember 7, 1835.json │ ├── Andrew JacksonDecember 8, 1829.json │ ├── Andrew JohnsonDecember 3, 1866.json │ ├── Andrew JohnsonDecember 3, 1867.json │ ├── Andrew JohnsonDecember 4, 1865.json │ ├── Andrew JohnsonDecember 9, 1868.json │ ├── Barack ObamaFebruary 12, 2013.json │ ├── Barack ObamaFebruary 24, 2009.json │ ├── Barack ObamaJanuary 24, 2012.json │ ├── Barack ObamaJanuary 25, 2011.json │ ├── Barack ObamaJanuary 27, 2010.json │ ├── Barack ObamaJanuary 28, 2014.json │ ├── Benjamin HarrisonDecember 1, 1890.json │ ├── Benjamin HarrisonDecember 3, 1889.json │ ├── Benjamin HarrisonDecember 6, 1892.json │ ├── Benjamin HarrisonDecember 9, 1891.json │ ├── Calvin CoolidgeDecember 3, 1924.json │ ├── Calvin CoolidgeDecember 4, 1928.json │ ├── Calvin CoolidgeDecember 6, 1923.json │ ├── Calvin CoolidgeDecember 6, 1927.json │ ├── Calvin CoolidgeDecember 7, 1926.json │ ├── Calvin CoolidgeDecember 8, 1925.json │ ├── Chester A. ArthurDecember 1, 1884.json │ ├── Chester A. ArthurDecember 4, 1882.json │ ├── Chester A. ArthurDecember 4, 1883.json │ ├── Chester A. ArthurDecember 6, 1881.json │ ├── Dwight D. EisenhowerFebruary 2, 1953.json │ ├── Dwight D. EisenhowerJanuary 10, 1957.json │ ├── Dwight D. EisenhowerJanuary 12, 1961.json │ ├── Dwight D. EisenhowerJanuary 5, 1956.json │ ├── Dwight D. EisenhowerJanuary 6, 1955.json │ ├── Dwight D. EisenhowerJanuary 7, 1954.json │ ├── Dwight D. EisenhowerJanuary 7, 1960.json │ ├── Dwight D. EisenhowerJanuary 9, 1958.json │ ├── Dwight D. EisenhowerJanuary 9, 1959.json │ ├── Franklin D. RooseveltJanuary 11, 1944.json │ ├── Franklin D. RooseveltJanuary 3, 1934.json │ ├── Franklin D. RooseveltJanuary 3, 1936.json │ ├── Franklin D. RooseveltJanuary 3, 1938.json │ ├── Franklin D. RooseveltJanuary 3, 1940.json │ ├── Franklin D. RooseveltJanuary 4, 1935.json │ ├── Franklin D. RooseveltJanuary 4, 1939.json │ ├── Franklin D. RooseveltJanuary 6, 1937.json │ ├── Franklin D. RooseveltJanuary 6, 1941.json │ ├── Franklin D. RooseveltJanuary 6, 1942.json │ ├── Franklin D. RooseveltJanuary 6, 1945.json │ ├── Franklin D. RooseveltJanuary 7, 1943.json │ ├── Franklin PierceDecember 2, 1856.json │ ├── Franklin PierceDecember 31, 1855.json │ ├── Franklin PierceDecember 4, 1854.json │ ├── Franklin PierceDecember 5, 1853.json │ ├── George H.W. BushFebruary 9, 1989.json │ ├── George H.W. BushJanuary 28, 1992.json │ ├── George H.W. BushJanuary 29, 1991.json │ ├── George H.W. BushJanuary 31, 1990.json │ ├── George W. BushFebruary 2, 2005.json │ ├── George W. BushFebruary 27, 2001.json │ ├── George W. BushJanuary 20, 2004.json │ ├── George W. BushJanuary 23, 2007.json │ ├── George W. BushJanuary 28, 2003.json │ ├── George W. BushJanuary 28, 2008.json │ ├── George W. BushJanuary 29, 2002.json │ ├── George W. BushJanuary 31, 2006.json │ ├── George W. BushSeptember 20, 2001.json │ ├── George WashingtonDecember 3, 1793.json │ ├── George WashingtonDecember 7, 1796.json │ ├── George WashingtonDecember 8, 1790.json │ ├── George WashingtonDecember 8, 1795.json │ ├── George WashingtonJanuary 8, 1790.json │ ├── George WashingtonNovember 19, 1794.json │ ├── George WashingtonNovember 6, 1792.json │ ├── George WashingtonOctober 25, 1791.json │ ├── Gerald R. FordJanuary 12, 1977.json │ ├── Gerald R. FordJanuary 15, 1975.json │ ├── Gerald R. FordJanuary 19, 1976.json │ ├── Grover ClevelandDecember 2, 1894.json │ ├── Grover ClevelandDecember 3, 1888.json │ ├── Grover ClevelandDecember 3, 1893.json │ ├── Grover ClevelandDecember 4, 1896.json │ ├── Grover ClevelandDecember 6, 1886.json │ ├── Grover ClevelandDecember 6, 1887.json │ ├── Grover ClevelandDecember 7, 1895.json │ ├── Grover ClevelandDecember 8, 1885.json │ ├── Harry S. TrumanJanuary 21, 1946.json │ ├── Harry S. TrumanJanuary 4, 1950.json │ ├── Harry S. TrumanJanuary 5, 1949.json │ ├── Harry S. TrumanJanuary 6, 1947.json │ ├── Harry S. TrumanJanuary 7, 1948.json │ ├── Harry S. TrumanJanuary 7, 1953.json │ ├── Harry S. TrumanJanuary 8, 1951.json │ ├── Harry S. TrumanJanuary 9, 1952.json │ ├── Herbert HooverDecember 2, 1930.json │ ├── Herbert HooverDecember 3, 1929.json │ ├── Herbert HooverDecember 6, 1932.json │ ├── Herbert HooverDecember 8, 1931.json │ ├── James BuchananDecember 19, 1859.json │ ├── James BuchananDecember 3, 1860.json │ ├── James BuchananDecember 6, 1858.json │ ├── James BuchananDecember 8, 1857.json │ ├── James MadisonDecember 3, 1816.json │ ├── James MadisonDecember 5, 1810.json │ ├── James MadisonDecember 5, 1815.json │ ├── James MadisonDecember 7, 1813.json │ ├── James MadisonNovember 29, 1809.json │ ├── James MadisonNovember 4, 1812.json │ ├── James MadisonNovember 5, 1811.json │ ├── James MadisonSeptember 20, 1814.json │ ├── James MonroeDecember 12, 1817.json │ ├── James MonroeDecember 2, 1823.json │ ├── James MonroeDecember 3, 1821.json │ ├── James MonroeDecember 3, 1822.json │ ├── James MonroeDecember 7, 1819.json │ ├── James MonroeDecember 7, 1824.json │ ├── James MonroeNovember 14, 1820.json │ ├── James MonroeNovember 16, 1818.json │ ├── James PolkDecember 2, 1845.json │ ├── James PolkDecember 5, 1848.json │ ├── James PolkDecember 7, 1847.json │ ├── James PolkDecember 8, 1846.json │ ├── Jimmy CarterJanuary 16, 1981.json │ ├── Jimmy CarterJanuary 19, 1978.json │ ├── Jimmy CarterJanuary 21, 1980.json │ ├── Jimmy CarterJanuary 25, 1979.json │ ├── John AdamsDecember 3, 1799.json │ ├── John AdamsDecember 8, 1798.json │ ├── John AdamsNovember 11, 1800.json │ ├── John AdamsNovember 22, 1797.json │ ├── John F. KennedyJanuary 11, 1962.json │ ├── John F. KennedyJanuary 14, 1963.json │ ├── John F. KennedyJanuary 30, 1961.json │ ├── John Quincy AdamsDecember 2, 1828.json │ ├── John Quincy AdamsDecember 4, 1827.json │ ├── John Quincy AdamsDecember 5, 1826.json │ ├── John Quincy AdamsDecember 6, 1825.json │ ├── John TylerDecember 3, 1844.json │ ├── John TylerDecember 6, 1842.json │ ├── John TylerDecember 6, 1843.json │ ├── John TylerDecember 7, 1841.json │ ├── Lyndon B. JohnsonJanuary 10, 1967.json │ ├── Lyndon B. JohnsonJanuary 12, 1966.json │ ├── Lyndon B. JohnsonJanuary 14, 1969.json │ ├── Lyndon B. JohnsonJanuary 17, 1968.json │ ├── Lyndon B. JohnsonJanuary 4, 1965.json │ ├── Lyndon B. JohnsonJanuary 8, 1964.json │ ├── Martin van BurenDecember 2, 1839.json │ ├── Martin van BurenDecember 3, 1838.json │ ├── Martin van BurenDecember 5, 1837.json │ ├── Martin van BurenDecember 5, 1840.json │ ├── Millard FillmoreDecember 2, 1850.json │ ├── Millard FillmoreDecember 2, 1851.json │ ├── Millard FillmoreDecember 6, 1852.json │ ├── Richard NixonFebruary 2, 1973.json │ ├── Richard NixonJanuary 20, 1972.json │ ├── Richard NixonJanuary 22, 1970.json │ ├── Richard NixonJanuary 22, 1971.json │ ├── Richard NixonJanuary 30, 1974.json │ ├── Ronald ReaganFebruary 4, 1986.json │ ├── Ronald ReaganFebruary 6, 1985.json │ ├── Ronald ReaganJanuary 25, 1983.json │ ├── Ronald ReaganJanuary 25, 1984.json │ ├── Ronald ReaganJanuary 25, 1988.json │ ├── Ronald ReaganJanuary 26, 1982.json │ ├── Ronald ReaganJanuary 27, 1987.json │ ├── Rutherford B. HayesDecember 1, 1879.json │ ├── Rutherford B. HayesDecember 2, 1878.json │ ├── Rutherford B. HayesDecember 3, 1877.json │ ├── Rutherford B. HayesDecember 6, 1880.json │ ├── Theodore RooseveltDecember 2, 1902.json │ ├── Theodore RooseveltDecember 3, 1901.json │ ├── Theodore RooseveltDecember 3, 1906.json │ ├── Theodore RooseveltDecember 3, 1907.json │ ├── Theodore RooseveltDecember 5, 1905.json │ ├── Theodore RooseveltDecember 6, 1904.json │ ├── Theodore RooseveltDecember 7, 1903.json │ ├── Theodore RooseveltDecember 8, 1908.json │ ├── Thomas JeffersonDecember 15, 1802.json │ ├── Thomas JeffersonDecember 2, 1806.json │ ├── Thomas JeffersonDecember 3, 1805.json │ ├── Thomas JeffersonDecember 8, 1801.json │ ├── Thomas JeffersonNovember 8, 1804.json │ ├── Thomas JeffersonNovember 8, 1808.json │ ├── Thomas JeffersonOctober 17, 1803.json │ ├── Thomas JeffersonOctober 27, 1807.json │ ├── Ulysses S. GrantDecember 1, 1873.json │ ├── Ulysses S. GrantDecember 2, 1872.json │ ├── Ulysses S. GrantDecember 4, 1871.json │ ├── Ulysses S. GrantDecember 5, 1870.json │ ├── Ulysses S. GrantDecember 5, 1876.json │ ├── Ulysses S. GrantDecember 6, 1869.json │ ├── Ulysses S. GrantDecember 7, 1874.json │ ├── Ulysses S. GrantDecember 7, 1875.json │ ├── Warren HardingDecember 6, 1921.json │ ├── Warren HardingDecember 8, 1922.json │ ├── William H. TaftDecember 3, 1912.json │ ├── William H. TaftDecember 5, 1911.json │ ├── William H. TaftDecember 6, 1910.json │ ├── William H. TaftDecember 7, 1909.json │ ├── William J. ClintonFebruary 17, 1993.json │ ├── William J. ClintonFebruary 4, 1997.json │ ├── William J. ClintonJanuary 19, 1999.json │ ├── William J. ClintonJanuary 23, 1996.json │ ├── William J. ClintonJanuary 24, 1995.json │ ├── William J. ClintonJanuary 25, 1994.json │ ├── William J. ClintonJanuary 27, 1998.json │ ├── William J. ClintonJanuary 27, 2000.json │ ├── William McKinleyDecember 3, 1900.json │ ├── William McKinleyDecember 5, 1898.json │ ├── William McKinleyDecember 5, 1899.json │ ├── William McKinleyDecember 6, 1897.json │ ├── Woodrow WilsonDecember 2, 1913.json │ ├── Woodrow WilsonDecember 2, 1918.json │ ├── Woodrow WilsonDecember 2, 1919.json │ ├── Woodrow WilsonDecember 4, 1917.json │ ├── Woodrow WilsonDecember 5, 1916.json │ ├── Woodrow WilsonDecember 7, 1915.json │ ├── Woodrow WilsonDecember 7, 1920.json │ ├── Woodrow WilsonDecember 8, 1914.json │ └── Zachary TaylorDecember 4, 1849.json └── script.py ├── stock_finance ├── bloomberg.py ├── bloomberg_chart.py ├── daily_prices │ ├── .txt │ ├── AAON.txt │ ├── AAPL.txt │ ├── ABAX.txt │ ├── ABGB.txt │ ├── ABMD.txt │ ├── ACHC.txt │ ├── ACTG.txt │ ├── ASTM.txt │ ├── AVHI.txt │ ├── AXAS.txt │ ├── EGHT.txt │ ├── FCCY.txt │ ├── FCTY.txt │ ├── FLWS.txt │ ├── FUBC.txt │ ├── JOBS.txt │ ├── SHLM.txt │ ├── SPY.txt │ ├── SRCE.txt │ └── VNET.txt ├── google_finance.py ├── symbols.txt ├── symbols_less.txt └── yahoo_finance.py ├── top_keywords ├── common_words.txt └── keywords.py ├── top_websites └── top-websites.py └── zomato_top_restaurants ├── cities.txt ├── output ├── abudhabi.json ├── ahmedabad.json ├── ankara.json ├── auckland.json ├── bangalore.json ├── birmingham.json ├── brasilia.json ├── capetown.json ├── chandigarh.json ├── chennai.json ├── colombo.json ├── doha.json ├── dubai.json ├── durban.json ├── edinburgh.json ├── glasgow.json ├── guwahati.json ├── hamilton.json ├── hyderabad.json ├── indore.json ├── istanbul.json ├── jaipur.json ├── jakarta.json ├── johannesburg.json ├── kolkata.json ├── london.json ├── lucknow.json ├── ludhiana.json ├── manchester.json ├── manila.json ├── mumbai.json ├── ncr.json ├── portoalegre.json ├── pretoria.json ├── pune.json ├── rio.json ├── salvador.json ├── saopaulo.json ├── sharjah.json └── wellington.json └── script.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/README.md -------------------------------------------------------------------------------- /daily_horoscope/daily_horoscope/aquarius.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/daily_horoscope/daily_horoscope/aquarius.txt -------------------------------------------------------------------------------- /daily_horoscope/daily_horoscope/aries.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/daily_horoscope/daily_horoscope/aries.txt -------------------------------------------------------------------------------- /daily_horoscope/daily_horoscope/cancer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/daily_horoscope/daily_horoscope/cancer.txt -------------------------------------------------------------------------------- /daily_horoscope/daily_horoscope/capricorn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/daily_horoscope/daily_horoscope/capricorn.txt -------------------------------------------------------------------------------- /daily_horoscope/daily_horoscope/gemini.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/daily_horoscope/daily_horoscope/gemini.txt -------------------------------------------------------------------------------- /daily_horoscope/daily_horoscope/leo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/daily_horoscope/daily_horoscope/leo.txt -------------------------------------------------------------------------------- /daily_horoscope/daily_horoscope/libra.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/daily_horoscope/daily_horoscope/libra.txt -------------------------------------------------------------------------------- /daily_horoscope/daily_horoscope/pisces.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/daily_horoscope/daily_horoscope/pisces.txt -------------------------------------------------------------------------------- /daily_horoscope/daily_horoscope/sagittarius.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/daily_horoscope/daily_horoscope/sagittarius.txt -------------------------------------------------------------------------------- /daily_horoscope/daily_horoscope/scorpio.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/daily_horoscope/daily_horoscope/scorpio.txt -------------------------------------------------------------------------------- /daily_horoscope/daily_horoscope/taurus.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/daily_horoscope/daily_horoscope/taurus.txt -------------------------------------------------------------------------------- /daily_horoscope/daily_horoscope/virgo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/daily_horoscope/daily_horoscope/virgo.txt -------------------------------------------------------------------------------- /daily_horoscope/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/daily_horoscope/script.py -------------------------------------------------------------------------------- /google_movies/google_movies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/google_movies/google_movies.py -------------------------------------------------------------------------------- /google_movies/out/response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/google_movies/out/response.json -------------------------------------------------------------------------------- /live_weather/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/live_weather/script.py -------------------------------------------------------------------------------- /news_scrapping/linux_news.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/news_scrapping/linux_news.py -------------------------------------------------------------------------------- /selenium_crawler/TechTermSelenium.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/selenium_crawler/TechTermSelenium.py -------------------------------------------------------------------------------- /selenium_crawler/out/categories.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /selenium_crawler/out/tech_words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/selenium_crawler/out/tech_words.txt -------------------------------------------------------------------------------- /spider_algorithm/spider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/spider_algorithm/spider.py -------------------------------------------------------------------------------- /spider_algorithm/spider_mechanize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/spider_algorithm/spider_mechanize.py -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Abraham LincolnDecember 1, 1862.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Abraham LincolnDecember 1, 1862.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Abraham LincolnDecember 3, 1861.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Abraham LincolnDecember 3, 1861.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Abraham LincolnDecember 6, 1864.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Abraham LincolnDecember 6, 1864.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Abraham LincolnDecember 8, 1863.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Abraham LincolnDecember 8, 1863.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Andrew JacksonDecember 1, 1834.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Andrew JacksonDecember 1, 1834.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Andrew JacksonDecember 3, 1833.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Andrew JacksonDecember 3, 1833.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Andrew JacksonDecember 4, 1832.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Andrew JacksonDecember 4, 1832.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Andrew JacksonDecember 5, 1836.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Andrew JacksonDecember 5, 1836.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Andrew JacksonDecember 6, 1830.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Andrew JacksonDecember 6, 1830.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Andrew JacksonDecember 6, 1831.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Andrew JacksonDecember 6, 1831.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Andrew JacksonDecember 7, 1835.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Andrew JacksonDecember 7, 1835.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Andrew JacksonDecember 8, 1829.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Andrew JacksonDecember 8, 1829.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Andrew JohnsonDecember 3, 1866.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Andrew JohnsonDecember 3, 1866.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Andrew JohnsonDecember 3, 1867.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Andrew JohnsonDecember 3, 1867.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Andrew JohnsonDecember 4, 1865.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Andrew JohnsonDecember 4, 1865.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Andrew JohnsonDecember 9, 1868.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Andrew JohnsonDecember 9, 1868.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Barack ObamaFebruary 12, 2013.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Barack ObamaFebruary 12, 2013.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Barack ObamaFebruary 24, 2009.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Barack ObamaFebruary 24, 2009.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Barack ObamaJanuary 24, 2012.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Barack ObamaJanuary 24, 2012.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Barack ObamaJanuary 25, 2011.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Barack ObamaJanuary 25, 2011.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Barack ObamaJanuary 27, 2010.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Barack ObamaJanuary 27, 2010.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Barack ObamaJanuary 28, 2014.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Barack ObamaJanuary 28, 2014.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Benjamin HarrisonDecember 1, 1890.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Benjamin HarrisonDecember 1, 1890.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Benjamin HarrisonDecember 3, 1889.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Benjamin HarrisonDecember 3, 1889.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Benjamin HarrisonDecember 6, 1892.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Benjamin HarrisonDecember 6, 1892.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Benjamin HarrisonDecember 9, 1891.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Benjamin HarrisonDecember 9, 1891.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Calvin CoolidgeDecember 3, 1924.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Calvin CoolidgeDecember 3, 1924.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Calvin CoolidgeDecember 4, 1928.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Calvin CoolidgeDecember 4, 1928.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Calvin CoolidgeDecember 6, 1923.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Calvin CoolidgeDecember 6, 1923.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Calvin CoolidgeDecember 6, 1927.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Calvin CoolidgeDecember 6, 1927.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Calvin CoolidgeDecember 7, 1926.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Calvin CoolidgeDecember 7, 1926.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Calvin CoolidgeDecember 8, 1925.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Calvin CoolidgeDecember 8, 1925.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Chester A. ArthurDecember 1, 1884.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Chester A. ArthurDecember 1, 1884.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Chester A. ArthurDecember 4, 1882.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Chester A. ArthurDecember 4, 1882.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Chester A. ArthurDecember 4, 1883.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Chester A. ArthurDecember 4, 1883.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Chester A. ArthurDecember 6, 1881.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Chester A. ArthurDecember 6, 1881.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Dwight D. EisenhowerFebruary 2, 1953.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Dwight D. EisenhowerFebruary 2, 1953.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Dwight D. EisenhowerJanuary 10, 1957.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Dwight D. EisenhowerJanuary 10, 1957.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Dwight D. EisenhowerJanuary 12, 1961.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Dwight D. EisenhowerJanuary 12, 1961.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Dwight D. EisenhowerJanuary 5, 1956.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Dwight D. EisenhowerJanuary 5, 1956.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Dwight D. EisenhowerJanuary 6, 1955.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Dwight D. EisenhowerJanuary 6, 1955.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Dwight D. EisenhowerJanuary 7, 1954.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Dwight D. EisenhowerJanuary 7, 1954.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Dwight D. EisenhowerJanuary 7, 1960.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Dwight D. EisenhowerJanuary 7, 1960.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Dwight D. EisenhowerJanuary 9, 1958.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Dwight D. EisenhowerJanuary 9, 1958.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Dwight D. EisenhowerJanuary 9, 1959.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Dwight D. EisenhowerJanuary 9, 1959.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Franklin D. RooseveltJanuary 11, 1944.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Franklin D. RooseveltJanuary 11, 1944.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Franklin D. RooseveltJanuary 3, 1934.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Franklin D. RooseveltJanuary 3, 1934.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Franklin D. RooseveltJanuary 3, 1936.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Franklin D. RooseveltJanuary 3, 1936.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Franklin D. RooseveltJanuary 3, 1938.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Franklin D. RooseveltJanuary 3, 1938.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Franklin D. RooseveltJanuary 3, 1940.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Franklin D. RooseveltJanuary 3, 1940.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Franklin D. RooseveltJanuary 4, 1935.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Franklin D. RooseveltJanuary 4, 1935.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Franklin D. RooseveltJanuary 4, 1939.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Franklin D. RooseveltJanuary 4, 1939.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Franklin D. RooseveltJanuary 6, 1937.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Franklin D. RooseveltJanuary 6, 1937.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Franklin D. RooseveltJanuary 6, 1941.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Franklin D. RooseveltJanuary 6, 1941.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Franklin D. RooseveltJanuary 6, 1942.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Franklin D. RooseveltJanuary 6, 1942.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Franklin D. RooseveltJanuary 6, 1945.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Franklin D. RooseveltJanuary 6, 1945.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Franklin D. RooseveltJanuary 7, 1943.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Franklin D. RooseveltJanuary 7, 1943.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Franklin PierceDecember 2, 1856.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Franklin PierceDecember 2, 1856.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Franklin PierceDecember 31, 1855.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Franklin PierceDecember 31, 1855.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Franklin PierceDecember 4, 1854.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Franklin PierceDecember 4, 1854.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Franklin PierceDecember 5, 1853.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Franklin PierceDecember 5, 1853.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/George H.W. BushFebruary 9, 1989.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/George H.W. BushFebruary 9, 1989.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/George H.W. BushJanuary 28, 1992.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/George H.W. BushJanuary 28, 1992.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/George H.W. BushJanuary 29, 1991.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/George H.W. BushJanuary 29, 1991.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/George H.W. BushJanuary 31, 1990.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/George H.W. BushJanuary 31, 1990.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/George W. BushFebruary 2, 2005.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/George W. BushFebruary 2, 2005.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/George W. BushFebruary 27, 2001.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/George W. BushFebruary 27, 2001.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/George W. BushJanuary 20, 2004.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/George W. BushJanuary 20, 2004.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/George W. BushJanuary 23, 2007.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/George W. BushJanuary 23, 2007.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/George W. BushJanuary 28, 2003.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/George W. BushJanuary 28, 2003.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/George W. BushJanuary 28, 2008.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/George W. BushJanuary 28, 2008.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/George W. BushJanuary 29, 2002.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/George W. BushJanuary 29, 2002.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/George W. BushJanuary 31, 2006.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/George W. BushJanuary 31, 2006.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/George W. BushSeptember 20, 2001.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/George W. BushSeptember 20, 2001.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/George WashingtonDecember 3, 1793.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/George WashingtonDecember 3, 1793.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/George WashingtonDecember 7, 1796.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/George WashingtonDecember 7, 1796.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/George WashingtonDecember 8, 1790.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/George WashingtonDecember 8, 1790.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/George WashingtonDecember 8, 1795.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/George WashingtonDecember 8, 1795.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/George WashingtonJanuary 8, 1790.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/George WashingtonJanuary 8, 1790.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/George WashingtonNovember 19, 1794.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/George WashingtonNovember 19, 1794.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/George WashingtonNovember 6, 1792.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/George WashingtonNovember 6, 1792.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/George WashingtonOctober 25, 1791.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/George WashingtonOctober 25, 1791.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Gerald R. FordJanuary 12, 1977.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Gerald R. FordJanuary 12, 1977.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Gerald R. FordJanuary 15, 1975.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Gerald R. FordJanuary 15, 1975.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Gerald R. FordJanuary 19, 1976.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Gerald R. FordJanuary 19, 1976.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Grover ClevelandDecember 2, 1894.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Grover ClevelandDecember 2, 1894.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Grover ClevelandDecember 3, 1888.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Grover ClevelandDecember 3, 1888.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Grover ClevelandDecember 3, 1893.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Grover ClevelandDecember 3, 1893.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Grover ClevelandDecember 4, 1896.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Grover ClevelandDecember 4, 1896.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Grover ClevelandDecember 6, 1886.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Grover ClevelandDecember 6, 1886.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Grover ClevelandDecember 6, 1887.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Grover ClevelandDecember 6, 1887.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Grover ClevelandDecember 7, 1895.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Grover ClevelandDecember 7, 1895.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Grover ClevelandDecember 8, 1885.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Grover ClevelandDecember 8, 1885.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Harry S. TrumanJanuary 21, 1946.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Harry S. TrumanJanuary 21, 1946.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Harry S. TrumanJanuary 4, 1950.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Harry S. TrumanJanuary 4, 1950.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Harry S. TrumanJanuary 5, 1949.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Harry S. TrumanJanuary 5, 1949.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Harry S. TrumanJanuary 6, 1947.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Harry S. TrumanJanuary 6, 1947.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Harry S. TrumanJanuary 7, 1948.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Harry S. TrumanJanuary 7, 1948.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Harry S. TrumanJanuary 7, 1953.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Harry S. TrumanJanuary 7, 1953.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Harry S. TrumanJanuary 8, 1951.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Harry S. TrumanJanuary 8, 1951.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Harry S. TrumanJanuary 9, 1952.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Harry S. TrumanJanuary 9, 1952.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Herbert HooverDecember 2, 1930.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Herbert HooverDecember 2, 1930.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Herbert HooverDecember 3, 1929.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Herbert HooverDecember 3, 1929.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Herbert HooverDecember 6, 1932.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Herbert HooverDecember 6, 1932.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Herbert HooverDecember 8, 1931.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Herbert HooverDecember 8, 1931.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/James BuchananDecember 19, 1859.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/James BuchananDecember 19, 1859.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/James BuchananDecember 3, 1860.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/James BuchananDecember 3, 1860.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/James BuchananDecember 6, 1858.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/James BuchananDecember 6, 1858.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/James BuchananDecember 8, 1857.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/James BuchananDecember 8, 1857.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/James MadisonDecember 3, 1816.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/James MadisonDecember 3, 1816.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/James MadisonDecember 5, 1810.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/James MadisonDecember 5, 1810.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/James MadisonDecember 5, 1815.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/James MadisonDecember 5, 1815.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/James MadisonDecember 7, 1813.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/James MadisonDecember 7, 1813.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/James MadisonNovember 29, 1809.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/James MadisonNovember 29, 1809.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/James MadisonNovember 4, 1812.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/James MadisonNovember 4, 1812.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/James MadisonNovember 5, 1811.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/James MadisonNovember 5, 1811.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/James MadisonSeptember 20, 1814.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/James MadisonSeptember 20, 1814.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/James MonroeDecember 12, 1817.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/James MonroeDecember 12, 1817.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/James MonroeDecember 2, 1823.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/James MonroeDecember 2, 1823.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/James MonroeDecember 3, 1821.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/James MonroeDecember 3, 1821.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/James MonroeDecember 3, 1822.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/James MonroeDecember 3, 1822.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/James MonroeDecember 7, 1819.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/James MonroeDecember 7, 1819.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/James MonroeDecember 7, 1824.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/James MonroeDecember 7, 1824.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/James MonroeNovember 14, 1820.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/James MonroeNovember 14, 1820.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/James MonroeNovember 16, 1818.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/James MonroeNovember 16, 1818.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/James PolkDecember 2, 1845.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/James PolkDecember 2, 1845.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/James PolkDecember 5, 1848.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/James PolkDecember 5, 1848.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/James PolkDecember 7, 1847.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/James PolkDecember 7, 1847.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/James PolkDecember 8, 1846.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/James PolkDecember 8, 1846.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Jimmy CarterJanuary 16, 1981.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Jimmy CarterJanuary 16, 1981.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Jimmy CarterJanuary 19, 1978.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Jimmy CarterJanuary 19, 1978.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Jimmy CarterJanuary 21, 1980.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Jimmy CarterJanuary 21, 1980.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Jimmy CarterJanuary 25, 1979.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Jimmy CarterJanuary 25, 1979.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/John AdamsDecember 3, 1799.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/John AdamsDecember 3, 1799.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/John AdamsDecember 8, 1798.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/John AdamsDecember 8, 1798.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/John AdamsNovember 11, 1800.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/John AdamsNovember 11, 1800.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/John AdamsNovember 22, 1797.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/John AdamsNovember 22, 1797.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/John F. KennedyJanuary 11, 1962.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/John F. KennedyJanuary 11, 1962.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/John F. KennedyJanuary 14, 1963.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/John F. KennedyJanuary 14, 1963.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/John F. KennedyJanuary 30, 1961.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/John F. KennedyJanuary 30, 1961.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/John Quincy AdamsDecember 2, 1828.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/John Quincy AdamsDecember 2, 1828.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/John Quincy AdamsDecember 4, 1827.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/John Quincy AdamsDecember 4, 1827.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/John Quincy AdamsDecember 5, 1826.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/John Quincy AdamsDecember 5, 1826.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/John Quincy AdamsDecember 6, 1825.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/John Quincy AdamsDecember 6, 1825.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/John TylerDecember 3, 1844.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/John TylerDecember 3, 1844.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/John TylerDecember 6, 1842.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/John TylerDecember 6, 1842.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/John TylerDecember 6, 1843.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/John TylerDecember 6, 1843.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/John TylerDecember 7, 1841.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/John TylerDecember 7, 1841.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Lyndon B. JohnsonJanuary 10, 1967.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Lyndon B. JohnsonJanuary 10, 1967.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Lyndon B. JohnsonJanuary 12, 1966.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Lyndon B. JohnsonJanuary 12, 1966.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Lyndon B. JohnsonJanuary 14, 1969.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Lyndon B. JohnsonJanuary 14, 1969.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Lyndon B. JohnsonJanuary 17, 1968.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Lyndon B. JohnsonJanuary 17, 1968.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Lyndon B. JohnsonJanuary 4, 1965.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Lyndon B. JohnsonJanuary 4, 1965.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Lyndon B. JohnsonJanuary 8, 1964.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Lyndon B. JohnsonJanuary 8, 1964.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Martin van BurenDecember 2, 1839.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Martin van BurenDecember 2, 1839.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Martin van BurenDecember 3, 1838.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Martin van BurenDecember 3, 1838.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Martin van BurenDecember 5, 1837.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Martin van BurenDecember 5, 1837.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Martin van BurenDecember 5, 1840.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Martin van BurenDecember 5, 1840.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Millard FillmoreDecember 2, 1850.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Millard FillmoreDecember 2, 1850.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Millard FillmoreDecember 2, 1851.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Millard FillmoreDecember 2, 1851.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Millard FillmoreDecember 6, 1852.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Millard FillmoreDecember 6, 1852.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Richard NixonFebruary 2, 1973.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Richard NixonFebruary 2, 1973.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Richard NixonJanuary 20, 1972.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Richard NixonJanuary 20, 1972.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Richard NixonJanuary 22, 1970.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Richard NixonJanuary 22, 1970.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Richard NixonJanuary 22, 1971.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Richard NixonJanuary 22, 1971.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Richard NixonJanuary 30, 1974.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Richard NixonJanuary 30, 1974.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Ronald ReaganFebruary 4, 1986.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Ronald ReaganFebruary 4, 1986.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Ronald ReaganFebruary 6, 1985.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Ronald ReaganFebruary 6, 1985.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Ronald ReaganJanuary 25, 1983.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Ronald ReaganJanuary 25, 1983.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Ronald ReaganJanuary 25, 1984.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Ronald ReaganJanuary 25, 1984.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Ronald ReaganJanuary 25, 1988.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Ronald ReaganJanuary 25, 1988.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Ronald ReaganJanuary 26, 1982.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Ronald ReaganJanuary 26, 1982.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Ronald ReaganJanuary 27, 1987.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Ronald ReaganJanuary 27, 1987.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Rutherford B. HayesDecember 1, 1879.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Rutherford B. HayesDecember 1, 1879.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Rutherford B. HayesDecember 2, 1878.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Rutherford B. HayesDecember 2, 1878.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Rutherford B. HayesDecember 3, 1877.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Rutherford B. HayesDecember 3, 1877.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Rutherford B. HayesDecember 6, 1880.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Rutherford B. HayesDecember 6, 1880.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Theodore RooseveltDecember 2, 1902.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Theodore RooseveltDecember 2, 1902.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Theodore RooseveltDecember 3, 1901.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Theodore RooseveltDecember 3, 1901.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Theodore RooseveltDecember 3, 1906.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Theodore RooseveltDecember 3, 1906.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Theodore RooseveltDecember 3, 1907.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Theodore RooseveltDecember 3, 1907.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Theodore RooseveltDecember 5, 1905.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Theodore RooseveltDecember 5, 1905.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Theodore RooseveltDecember 6, 1904.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Theodore RooseveltDecember 6, 1904.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Theodore RooseveltDecember 7, 1903.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Theodore RooseveltDecember 7, 1903.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Theodore RooseveltDecember 8, 1908.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Theodore RooseveltDecember 8, 1908.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Thomas JeffersonDecember 15, 1802.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Thomas JeffersonDecember 15, 1802.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Thomas JeffersonDecember 2, 1806.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Thomas JeffersonDecember 2, 1806.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Thomas JeffersonDecember 3, 1805.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Thomas JeffersonDecember 3, 1805.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Thomas JeffersonDecember 8, 1801.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Thomas JeffersonDecember 8, 1801.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Thomas JeffersonNovember 8, 1804.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Thomas JeffersonNovember 8, 1804.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Thomas JeffersonNovember 8, 1808.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Thomas JeffersonNovember 8, 1808.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Thomas JeffersonOctober 17, 1803.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Thomas JeffersonOctober 17, 1803.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Thomas JeffersonOctober 27, 1807.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Thomas JeffersonOctober 27, 1807.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Ulysses S. GrantDecember 1, 1873.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Ulysses S. GrantDecember 1, 1873.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Ulysses S. GrantDecember 2, 1872.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Ulysses S. GrantDecember 2, 1872.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Ulysses S. GrantDecember 4, 1871.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Ulysses S. GrantDecember 4, 1871.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Ulysses S. GrantDecember 5, 1870.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Ulysses S. GrantDecember 5, 1870.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Ulysses S. GrantDecember 5, 1876.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Ulysses S. GrantDecember 5, 1876.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Ulysses S. GrantDecember 6, 1869.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Ulysses S. GrantDecember 6, 1869.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Ulysses S. GrantDecember 7, 1874.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Ulysses S. GrantDecember 7, 1874.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Ulysses S. GrantDecember 7, 1875.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Ulysses S. GrantDecember 7, 1875.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Warren HardingDecember 6, 1921.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Warren HardingDecember 6, 1921.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Warren HardingDecember 8, 1922.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Warren HardingDecember 8, 1922.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/William H. TaftDecember 3, 1912.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/William H. TaftDecember 3, 1912.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/William H. TaftDecember 5, 1911.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/William H. TaftDecember 5, 1911.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/William H. TaftDecember 6, 1910.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/William H. TaftDecember 6, 1910.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/William H. TaftDecember 7, 1909.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/William H. TaftDecember 7, 1909.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/William J. ClintonFebruary 17, 1993.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/William J. ClintonFebruary 17, 1993.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/William J. ClintonFebruary 4, 1997.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/William J. ClintonFebruary 4, 1997.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/William J. ClintonJanuary 19, 1999.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/William J. ClintonJanuary 19, 1999.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/William J. ClintonJanuary 23, 1996.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/William J. ClintonJanuary 23, 1996.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/William J. ClintonJanuary 24, 1995.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/William J. ClintonJanuary 24, 1995.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/William J. ClintonJanuary 25, 1994.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/William J. ClintonJanuary 25, 1994.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/William J. ClintonJanuary 27, 1998.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/William J. ClintonJanuary 27, 1998.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/William J. ClintonJanuary 27, 2000.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/William J. ClintonJanuary 27, 2000.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/William McKinleyDecember 3, 1900.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/William McKinleyDecember 3, 1900.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/William McKinleyDecember 5, 1898.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/William McKinleyDecember 5, 1898.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/William McKinleyDecember 5, 1899.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/William McKinleyDecember 5, 1899.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/William McKinleyDecember 6, 1897.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/William McKinleyDecember 6, 1897.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Woodrow WilsonDecember 2, 1913.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Woodrow WilsonDecember 2, 1913.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Woodrow WilsonDecember 2, 1918.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Woodrow WilsonDecember 2, 1918.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Woodrow WilsonDecember 2, 1919.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Woodrow WilsonDecember 2, 1919.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Woodrow WilsonDecember 4, 1917.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Woodrow WilsonDecember 4, 1917.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Woodrow WilsonDecember 5, 1916.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Woodrow WilsonDecember 5, 1916.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Woodrow WilsonDecember 7, 1915.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Woodrow WilsonDecember 7, 1915.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Woodrow WilsonDecember 7, 1920.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Woodrow WilsonDecember 7, 1920.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Woodrow WilsonDecember 8, 1914.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Woodrow WilsonDecember 8, 1914.json -------------------------------------------------------------------------------- /stateofunion/ScrapedData/Zachary TaylorDecember 4, 1849.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/ScrapedData/Zachary TaylorDecember 4, 1849.json -------------------------------------------------------------------------------- /stateofunion/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stateofunion/script.py -------------------------------------------------------------------------------- /stock_finance/bloomberg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stock_finance/bloomberg.py -------------------------------------------------------------------------------- /stock_finance/bloomberg_chart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stock_finance/bloomberg_chart.py -------------------------------------------------------------------------------- /stock_finance/daily_prices/.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /stock_finance/daily_prices/AAON.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stock_finance/daily_prices/AAON.txt -------------------------------------------------------------------------------- /stock_finance/daily_prices/AAPL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stock_finance/daily_prices/AAPL.txt -------------------------------------------------------------------------------- /stock_finance/daily_prices/ABAX.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stock_finance/daily_prices/ABAX.txt -------------------------------------------------------------------------------- /stock_finance/daily_prices/ABGB.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stock_finance/daily_prices/ABGB.txt -------------------------------------------------------------------------------- /stock_finance/daily_prices/ABMD.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stock_finance/daily_prices/ABMD.txt -------------------------------------------------------------------------------- /stock_finance/daily_prices/ACHC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stock_finance/daily_prices/ACHC.txt -------------------------------------------------------------------------------- /stock_finance/daily_prices/ACTG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stock_finance/daily_prices/ACTG.txt -------------------------------------------------------------------------------- /stock_finance/daily_prices/ASTM.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stock_finance/daily_prices/ASTM.txt -------------------------------------------------------------------------------- /stock_finance/daily_prices/AVHI.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stock_finance/daily_prices/AVHI.txt -------------------------------------------------------------------------------- /stock_finance/daily_prices/AXAS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stock_finance/daily_prices/AXAS.txt -------------------------------------------------------------------------------- /stock_finance/daily_prices/EGHT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stock_finance/daily_prices/EGHT.txt -------------------------------------------------------------------------------- /stock_finance/daily_prices/FCCY.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stock_finance/daily_prices/FCCY.txt -------------------------------------------------------------------------------- /stock_finance/daily_prices/FCTY.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stock_finance/daily_prices/FCTY.txt -------------------------------------------------------------------------------- /stock_finance/daily_prices/FLWS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stock_finance/daily_prices/FLWS.txt -------------------------------------------------------------------------------- /stock_finance/daily_prices/FUBC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stock_finance/daily_prices/FUBC.txt -------------------------------------------------------------------------------- /stock_finance/daily_prices/JOBS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stock_finance/daily_prices/JOBS.txt -------------------------------------------------------------------------------- /stock_finance/daily_prices/SHLM.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stock_finance/daily_prices/SHLM.txt -------------------------------------------------------------------------------- /stock_finance/daily_prices/SPY.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stock_finance/daily_prices/SPY.txt -------------------------------------------------------------------------------- /stock_finance/daily_prices/SRCE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stock_finance/daily_prices/SRCE.txt -------------------------------------------------------------------------------- /stock_finance/daily_prices/VNET.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stock_finance/daily_prices/VNET.txt -------------------------------------------------------------------------------- /stock_finance/google_finance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stock_finance/google_finance.py -------------------------------------------------------------------------------- /stock_finance/symbols.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stock_finance/symbols.txt -------------------------------------------------------------------------------- /stock_finance/symbols_less.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stock_finance/symbols_less.txt -------------------------------------------------------------------------------- /stock_finance/yahoo_finance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/stock_finance/yahoo_finance.py -------------------------------------------------------------------------------- /top_keywords/common_words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/top_keywords/common_words.txt -------------------------------------------------------------------------------- /top_keywords/keywords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/top_keywords/keywords.py -------------------------------------------------------------------------------- /top_websites/top-websites.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/top_websites/top-websites.py -------------------------------------------------------------------------------- /zomato_top_restaurants/cities.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/zomato_top_restaurants/cities.txt -------------------------------------------------------------------------------- /zomato_top_restaurants/output/abudhabi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/zomato_top_restaurants/output/abudhabi.json -------------------------------------------------------------------------------- /zomato_top_restaurants/output/ahmedabad.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/zomato_top_restaurants/output/ahmedabad.json -------------------------------------------------------------------------------- /zomato_top_restaurants/output/ankara.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/zomato_top_restaurants/output/ankara.json -------------------------------------------------------------------------------- /zomato_top_restaurants/output/auckland.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/zomato_top_restaurants/output/auckland.json -------------------------------------------------------------------------------- /zomato_top_restaurants/output/bangalore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/zomato_top_restaurants/output/bangalore.json -------------------------------------------------------------------------------- /zomato_top_restaurants/output/birmingham.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/zomato_top_restaurants/output/birmingham.json -------------------------------------------------------------------------------- /zomato_top_restaurants/output/brasilia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/zomato_top_restaurants/output/brasilia.json -------------------------------------------------------------------------------- /zomato_top_restaurants/output/capetown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/zomato_top_restaurants/output/capetown.json -------------------------------------------------------------------------------- /zomato_top_restaurants/output/chandigarh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/zomato_top_restaurants/output/chandigarh.json -------------------------------------------------------------------------------- /zomato_top_restaurants/output/chennai.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/zomato_top_restaurants/output/chennai.json -------------------------------------------------------------------------------- /zomato_top_restaurants/output/colombo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/zomato_top_restaurants/output/colombo.json -------------------------------------------------------------------------------- /zomato_top_restaurants/output/doha.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/zomato_top_restaurants/output/doha.json -------------------------------------------------------------------------------- /zomato_top_restaurants/output/dubai.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/zomato_top_restaurants/output/dubai.json -------------------------------------------------------------------------------- /zomato_top_restaurants/output/durban.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/zomato_top_restaurants/output/durban.json -------------------------------------------------------------------------------- /zomato_top_restaurants/output/edinburgh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/zomato_top_restaurants/output/edinburgh.json -------------------------------------------------------------------------------- /zomato_top_restaurants/output/glasgow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/zomato_top_restaurants/output/glasgow.json -------------------------------------------------------------------------------- /zomato_top_restaurants/output/guwahati.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/zomato_top_restaurants/output/guwahati.json -------------------------------------------------------------------------------- /zomato_top_restaurants/output/hamilton.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/zomato_top_restaurants/output/hamilton.json -------------------------------------------------------------------------------- /zomato_top_restaurants/output/hyderabad.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/zomato_top_restaurants/output/hyderabad.json -------------------------------------------------------------------------------- /zomato_top_restaurants/output/indore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/zomato_top_restaurants/output/indore.json -------------------------------------------------------------------------------- /zomato_top_restaurants/output/istanbul.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/zomato_top_restaurants/output/istanbul.json -------------------------------------------------------------------------------- /zomato_top_restaurants/output/jaipur.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/zomato_top_restaurants/output/jaipur.json -------------------------------------------------------------------------------- /zomato_top_restaurants/output/jakarta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/zomato_top_restaurants/output/jakarta.json -------------------------------------------------------------------------------- /zomato_top_restaurants/output/johannesburg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/zomato_top_restaurants/output/johannesburg.json -------------------------------------------------------------------------------- /zomato_top_restaurants/output/kolkata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/zomato_top_restaurants/output/kolkata.json -------------------------------------------------------------------------------- /zomato_top_restaurants/output/london.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/zomato_top_restaurants/output/london.json -------------------------------------------------------------------------------- /zomato_top_restaurants/output/lucknow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/zomato_top_restaurants/output/lucknow.json -------------------------------------------------------------------------------- /zomato_top_restaurants/output/ludhiana.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/zomato_top_restaurants/output/ludhiana.json -------------------------------------------------------------------------------- /zomato_top_restaurants/output/manchester.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/zomato_top_restaurants/output/manchester.json -------------------------------------------------------------------------------- /zomato_top_restaurants/output/manila.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/zomato_top_restaurants/output/manila.json -------------------------------------------------------------------------------- /zomato_top_restaurants/output/mumbai.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/zomato_top_restaurants/output/mumbai.json -------------------------------------------------------------------------------- /zomato_top_restaurants/output/ncr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/zomato_top_restaurants/output/ncr.json -------------------------------------------------------------------------------- /zomato_top_restaurants/output/portoalegre.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /zomato_top_restaurants/output/pretoria.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/zomato_top_restaurants/output/pretoria.json -------------------------------------------------------------------------------- /zomato_top_restaurants/output/pune.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/zomato_top_restaurants/output/pune.json -------------------------------------------------------------------------------- /zomato_top_restaurants/output/rio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/zomato_top_restaurants/output/rio.json -------------------------------------------------------------------------------- /zomato_top_restaurants/output/salvador.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/zomato_top_restaurants/output/salvador.json -------------------------------------------------------------------------------- /zomato_top_restaurants/output/saopaulo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/zomato_top_restaurants/output/saopaulo.json -------------------------------------------------------------------------------- /zomato_top_restaurants/output/sharjah.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/zomato_top_restaurants/output/sharjah.json -------------------------------------------------------------------------------- /zomato_top_restaurants/output/wellington.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/zomato_top_restaurants/output/wellington.json -------------------------------------------------------------------------------- /zomato_top_restaurants/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shivam5992/pyscrapper/HEAD/zomato_top_restaurants/script.py --------------------------------------------------------------------------------