Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
yash1337 authored Jun 27, 2017
1 parent 46c55e9 commit f59ceaa
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions src/CSE 260/ScraperV1.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#############################
##Project Site 'Cyclone" Scraper v1
##This thing Scrapes everthing from the CSE 260 Lecture Notes, Sample tests, and Homework assignments
##You need to supply theE 260 user name and Password
##You need to supply the CSE 260 Password that professor gave us
#############################

################################################################################################################
Expand Down Expand Up @@ -48,8 +48,8 @@
################################################################################################################

################################################################################################################
UNAME="cse260"
PASSWORD="dmig4me"
UNAME=""
PASSWORD=""
################################################################################################################

################################################################################################################
Expand Down Expand Up @@ -128,10 +128,12 @@ def menu():
print("q. Nothing fam. Just get me out of here!\n")

def main():
print("Welcome to CSE232 Scraper!!!!!!\n")
print("Welcome to CSE260 Scraper!!!!!!\n")
menu()
userInput=(input("So what do you want (not in life. What do you want right now!!!): "))
print()
UNAME="cse260"
PASSWORD=input("Please enter password for CSE260 account that Professor gave us(Hint: Discrete Math Is Good for ME): ")
beautifiedBaseObject=returnBeautifiedObject(baseURL,UNAME,PASSWORD)
while(True):
if(userInput=='1'):
Expand Down Expand Up @@ -176,4 +178,4 @@ def main():


if __name__ == "__main__":
main()
main()

0 comments on commit f59ceaa

Please sign in to comment.