├── .gitattributes ├── .gitignore ├── 10449745.json ├── 123353374.json ├── 161019168.csv ├── 161019168.json ├── 46118613.json ├── Analytics.py ├── Data ├── 2265.csv ├── Economics.csv └── UserAgent.csv ├── Networking.py ├── OldStuff ├── Analytics.py ├── DollarDrop.py ├── EveryWM.py ├── PullData.py ├── RandomHeaders.py └── setup.py ├── README.md ├── RandomHeaders.py ├── Tools ├── Clean.py ├── Current.py ├── EveryWM.py ├── GrabSKUs.py ├── Networking.py ├── PullData.py ├── application.py └── gettingLatLong.py ├── UserAgent.csv ├── Walmarts.csv ├── app.py ├── inventoryAnalytics.py ├── itemGrab.py ├── main.py ├── requirements.txt ├── static ├── 2265 (copy).csv ├── Walmarts.csv ├── background.jpeg ├── css │ ├── bootstrap.css │ ├── bootstrap.min.css │ ├── business-frontpage.css │ ├── hacker.css │ ├── random.jpeg │ └── randompic.png ├── data.csv ├── dollar.jpg ├── dollar.png ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 ├── hacker.css ├── js │ ├── bootstrap.js │ ├── bootstrap.min.js │ └── jquery.js ├── latlongs.csv ├── light-bulb.png ├── logo.png ├── logo1.png ├── magnify.png ├── matrix.jpg └── randompic.png ├── templates ├── 2265.csv ├── Base.html ├── Disclaimer.html ├── Home.html ├── ItemPage.html ├── ItemSearch.html ├── LICENSE ├── LowSearch.html ├── LowestPriceItem.html ├── Navigation.html ├── NotUsed │ ├── Authenticate.html │ ├── BestValue.html │ ├── Leet.html │ ├── LowestPrice.html │ ├── ProductPage.html │ ├── index.html │ ├── plzwo │ ├── plzwork.html │ ├── search.html │ ├── suggestions.html │ ├── time.php │ └── typedin.html ├── README.md ├── ResultNav.html ├── ResultPage.html ├── SearchBox.html ├── StoreSearch.html ├── ToHTML.html ├── error.html ├── login.html ├── map.html ├── serviceTiers.html ├── testing.html └── tutorial.db ├── test.py └── testing.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriley106/WaltonAnalytics/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | SecretCode.txt -------------------------------------------------------------------------------- /10449745.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /123353374.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriley106/WaltonAnalytics/HEAD/123353374.json -------------------------------------------------------------------------------- /161019168.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriley106/WaltonAnalytics/HEAD/161019168.csv -------------------------------------------------------------------------------- /161019168.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriley106/WaltonAnalytics/HEAD/161019168.json -------------------------------------------------------------------------------- /46118613.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /Analytics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriley106/WaltonAnalytics/HEAD/Analytics.py -------------------------------------------------------------------------------- /Data/2265.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriley106/WaltonAnalytics/HEAD/Data/2265.csv -------------------------------------------------------------------------------- /Data/Economics.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriley106/WaltonAnalytics/HEAD/Data/Economics.csv -------------------------------------------------------------------------------- /Data/UserAgent.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriley106/WaltonAnalytics/HEAD/Data/UserAgent.csv -------------------------------------------------------------------------------- /Networking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriley106/WaltonAnalytics/HEAD/Networking.py -------------------------------------------------------------------------------- /OldStuff/Analytics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriley106/WaltonAnalytics/HEAD/OldStuff/Analytics.py -------------------------------------------------------------------------------- /OldStuff/DollarDrop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriley106/WaltonAnalytics/HEAD/OldStuff/DollarDrop.py -------------------------------------------------------------------------------- /OldStuff/EveryWM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriley106/WaltonAnalytics/HEAD/OldStuff/EveryWM.py -------------------------------------------------------------------------------- /OldStuff/PullData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriley106/WaltonAnalytics/HEAD/OldStuff/PullData.py -------------------------------------------------------------------------------- /OldStuff/RandomHeaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriley106/WaltonAnalytics/HEAD/OldStuff/RandomHeaders.py -------------------------------------------------------------------------------- /OldStuff/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriley106/WaltonAnalytics/HEAD/OldStuff/setup.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriley106/WaltonAnalytics/HEAD/README.md -------------------------------------------------------------------------------- /RandomHeaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriley106/WaltonAnalytics/HEAD/RandomHeaders.py -------------------------------------------------------------------------------- /Tools/Clean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriley106/WaltonAnalytics/HEAD/Tools/Clean.py -------------------------------------------------------------------------------- /Tools/Current.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriley106/WaltonAnalytics/HEAD/Tools/Current.py -------------------------------------------------------------------------------- /Tools/EveryWM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriley106/WaltonAnalytics/HEAD/Tools/EveryWM.py -------------------------------------------------------------------------------- /Tools/GrabSKUs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriley106/WaltonAnalytics/HEAD/Tools/GrabSKUs.py -------------------------------------------------------------------------------- /Tools/Networking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriley106/WaltonAnalytics/HEAD/Tools/Networking.py -------------------------------------------------------------------------------- /Tools/PullData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriley106/WaltonAnalytics/HEAD/Tools/PullData.py -------------------------------------------------------------------------------- /Tools/application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriley106/WaltonAnalytics/HEAD/Tools/application.py -------------------------------------------------------------------------------- /Tools/gettingLatLong.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriley106/WaltonAnalytics/HEAD/Tools/gettingLatLong.py -------------------------------------------------------------------------------- /UserAgent.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriley106/WaltonAnalytics/HEAD/UserAgent.csv -------------------------------------------------------------------------------- /Walmarts.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriley106/WaltonAnalytics/HEAD/Walmarts.csv -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriley106/WaltonAnalytics/HEAD/app.py -------------------------------------------------------------------------------- /inventoryAnalytics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriley106/WaltonAnalytics/HEAD/inventoryAnalytics.py -------------------------------------------------------------------------------- /itemGrab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriley106/WaltonAnalytics/HEAD/itemGrab.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriley106/WaltonAnalytics/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriley106/WaltonAnalytics/HEAD/requirements.txt -------------------------------------------------------------------------------- /static/2265 (copy).csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriley106/WaltonAnalytics/HEAD/static/2265 (copy).csv -------------------------------------------------------------------------------- /static/Walmarts.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriley106/WaltonAnalytics/HEAD/static/Walmarts.csv -------------------------------------------------------------------------------- /static/background.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriley106/WaltonAnalytics/HEAD/static/background.jpeg -------------------------------------------------------------------------------- /static/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriley106/WaltonAnalytics/HEAD/static/css/bootstrap.css -------------------------------------------------------------------------------- /static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriley106/WaltonAnalytics/HEAD/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /static/css/business-frontpage.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriley106/WaltonAnalytics/HEAD/static/css/business-frontpage.css -------------------------------------------------------------------------------- /static/css/hacker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriley106/WaltonAnalytics/HEAD/static/css/hacker.css -------------------------------------------------------------------------------- /static/css/random.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriley106/WaltonAnalytics/HEAD/static/css/random.jpeg -------------------------------------------------------------------------------- /static/css/randompic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriley106/WaltonAnalytics/HEAD/static/css/randompic.png -------------------------------------------------------------------------------- /static/data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriley106/WaltonAnalytics/HEAD/static/data.csv -------------------------------------------------------------------------------- /static/dollar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriley106/WaltonAnalytics/HEAD/static/dollar.jpg -------------------------------------------------------------------------------- /static/dollar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriley106/WaltonAnalytics/HEAD/static/dollar.png -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriley106/WaltonAnalytics/HEAD/static/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriley106/WaltonAnalytics/HEAD/static/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriley106/WaltonAnalytics/HEAD/static/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriley106/WaltonAnalytics/HEAD/static/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriley106/WaltonAnalytics/HEAD/static/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /static/hacker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriley106/WaltonAnalytics/HEAD/static/hacker.css -------------------------------------------------------------------------------- /static/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriley106/WaltonAnalytics/HEAD/static/js/bootstrap.js -------------------------------------------------------------------------------- /static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriley106/WaltonAnalytics/HEAD/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /static/js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriley106/WaltonAnalytics/HEAD/static/js/jquery.js -------------------------------------------------------------------------------- /static/latlongs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriley106/WaltonAnalytics/HEAD/static/latlongs.csv -------------------------------------------------------------------------------- /static/light-bulb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriley106/WaltonAnalytics/HEAD/static/light-bulb.png -------------------------------------------------------------------------------- /static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriley106/WaltonAnalytics/HEAD/static/logo.png -------------------------------------------------------------------------------- /static/logo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriley106/WaltonAnalytics/HEAD/static/logo1.png -------------------------------------------------------------------------------- /static/magnify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriley106/WaltonAnalytics/HEAD/static/magnify.png -------------------------------------------------------------------------------- /static/matrix.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriley106/WaltonAnalytics/HEAD/static/matrix.jpg -------------------------------------------------------------------------------- /static/randompic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriley106/WaltonAnalytics/HEAD/static/randompic.png -------------------------------------------------------------------------------- /templates/2265.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriley106/WaltonAnalytics/HEAD/templates/2265.csv -------------------------------------------------------------------------------- /templates/Base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriley106/WaltonAnalytics/HEAD/templates/Base.html -------------------------------------------------------------------------------- /templates/Disclaimer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriley106/WaltonAnalytics/HEAD/templates/Disclaimer.html -------------------------------------------------------------------------------- /templates/Home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriley106/WaltonAnalytics/HEAD/templates/Home.html -------------------------------------------------------------------------------- /templates/ItemPage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriley106/WaltonAnalytics/HEAD/templates/ItemPage.html -------------------------------------------------------------------------------- /templates/ItemSearch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriley106/WaltonAnalytics/HEAD/templates/ItemSearch.html -------------------------------------------------------------------------------- /templates/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriley106/WaltonAnalytics/HEAD/templates/LICENSE -------------------------------------------------------------------------------- /templates/LowSearch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriley106/WaltonAnalytics/HEAD/templates/LowSearch.html -------------------------------------------------------------------------------- /templates/LowestPriceItem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriley106/WaltonAnalytics/HEAD/templates/LowestPriceItem.html -------------------------------------------------------------------------------- /templates/Navigation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriley106/WaltonAnalytics/HEAD/templates/Navigation.html -------------------------------------------------------------------------------- /templates/NotUsed/Authenticate.html: -------------------------------------------------------------------------------- 1 | Please Login In -------------------------------------------------------------------------------- /templates/NotUsed/BestValue.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriley106/WaltonAnalytics/HEAD/templates/NotUsed/BestValue.html -------------------------------------------------------------------------------- /templates/NotUsed/Leet.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriley106/WaltonAnalytics/HEAD/templates/NotUsed/Leet.html -------------------------------------------------------------------------------- /templates/NotUsed/LowestPrice.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriley106/WaltonAnalytics/HEAD/templates/NotUsed/LowestPrice.html -------------------------------------------------------------------------------- /templates/NotUsed/ProductPage.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/NotUsed/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriley106/WaltonAnalytics/HEAD/templates/NotUsed/index.html -------------------------------------------------------------------------------- /templates/NotUsed/plzwo: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/NotUsed/plzwork.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriley106/WaltonAnalytics/HEAD/templates/NotUsed/plzwork.html -------------------------------------------------------------------------------- /templates/NotUsed/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriley106/WaltonAnalytics/HEAD/templates/NotUsed/search.html -------------------------------------------------------------------------------- /templates/NotUsed/suggestions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriley106/WaltonAnalytics/HEAD/templates/NotUsed/suggestions.html -------------------------------------------------------------------------------- /templates/NotUsed/time.php: -------------------------------------------------------------------------------- 1 | echo date("l, F d, Y h:i:s" ,time() ); -------------------------------------------------------------------------------- /templates/NotUsed/typedin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriley106/WaltonAnalytics/HEAD/templates/NotUsed/typedin.html -------------------------------------------------------------------------------- /templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriley106/WaltonAnalytics/HEAD/templates/README.md -------------------------------------------------------------------------------- /templates/ResultNav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriley106/WaltonAnalytics/HEAD/templates/ResultNav.html -------------------------------------------------------------------------------- /templates/ResultPage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriley106/WaltonAnalytics/HEAD/templates/ResultPage.html -------------------------------------------------------------------------------- /templates/SearchBox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriley106/WaltonAnalytics/HEAD/templates/SearchBox.html -------------------------------------------------------------------------------- /templates/StoreSearch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriley106/WaltonAnalytics/HEAD/templates/StoreSearch.html -------------------------------------------------------------------------------- /templates/ToHTML.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriley106/WaltonAnalytics/HEAD/templates/ToHTML.html -------------------------------------------------------------------------------- /templates/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriley106/WaltonAnalytics/HEAD/templates/error.html -------------------------------------------------------------------------------- /templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriley106/WaltonAnalytics/HEAD/templates/login.html -------------------------------------------------------------------------------- /templates/map.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriley106/WaltonAnalytics/HEAD/templates/map.html -------------------------------------------------------------------------------- /templates/serviceTiers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriley106/WaltonAnalytics/HEAD/templates/serviceTiers.html -------------------------------------------------------------------------------- /templates/testing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriley106/WaltonAnalytics/HEAD/templates/testing.html -------------------------------------------------------------------------------- /templates/tutorial.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriley106/WaltonAnalytics/HEAD/templates/tutorial.db -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriley106/WaltonAnalytics/HEAD/test.py -------------------------------------------------------------------------------- /testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriley106/WaltonAnalytics/HEAD/testing.py --------------------------------------------------------------------------------