├── .gitignore ├── 01-basic └── hello.py ├── 02-control-flow ├── exitExample.py ├── fiveTimes.py ├── printRandom.py ├── yourName.py └── yourName2.py ├── 03-function ├── collatz.py ├── guessTheNumber.py ├── helloFunc.py ├── helloFunc2.py ├── magic8Ball.py ├── sameName.py ├── sameName2.py ├── sameName3.py ├── sameName4.py └── zeroDivide.py ├── 04-list ├── allMyCats1.py ├── allMyCats2.py ├── commaList.py ├── magic8Ball2.py ├── passingReference.py └── printGrid.py ├── 05-dict ├── birthdays.py ├── characterCount.py ├── dragonLoot.py ├── inventory.py ├── prettyCharacterCount.py └── ticTacToe.py ├── 06-str ├── README.md ├── bulletPointAdder.py ├── catnapping.py ├── picnicTable.py ├── printTable.py ├── pw.py ├── readme.txt ├── usingPyperclip.py └── validateInput.py ├── 07-regex ├── isPhoneNumber.py ├── passwordValidation.py ├── phoneAndEmail.py ├── readme.md └── stripRe.py ├── 08-file ├── bacon.txt ├── baconFile.py ├── find.py ├── madlibs.py ├── mcb.bak ├── mcb.dat ├── mcb.dir ├── mcb.pyw ├── myCats.py ├── mydata.bak ├── mydata.dat ├── mydata.dir ├── pprintDemo.py ├── randomQuizGenerator.py ├── shelfFile.py └── sonnet29.txt ├── 09-organize-file ├── README.md ├── backupToZip.py ├── copy.py ├── createZipFile.py ├── demo │ ├── spam001.txt │ └── spam003.txt ├── filesize.py ├── renameDates.py ├── send2trashDemo.py ├── sequence.py ├── traverseDir.py └── zipfileDemo.py ├── 10-debug ├── README.md ├── boxPrint.py ├── buggyAddingProgram.py ├── carSim.py ├── coinFlip.py ├── errorExample.py ├── errorInfo.txt ├── factorialLog.py ├── format_exc.py ├── guessCoin.py └── myProgramLog.txt ├── 11-web ├── README.md ├── RemeoAndJuliet.txt ├── bs4Demo.py ├── downloadAllLinks.py ├── downloadImages.py ├── downloadXkcd.py ├── example.html ├── lucky.py ├── mapIt.py ├── play2048.py ├── requestsDemo.py ├── seleniumClickLink.py ├── seleniumFindElement.py ├── seleniumLoginGithub.py └── sendEmailByCommandLine.py ├── 12-excel ├── README.md ├── blankRowInserter.py ├── census2010.py ├── censuspopdata.xlsx ├── example.xlsx ├── example_copy.xlsx ├── excelToText.py ├── formula.py ├── multiplicationTable-10.xlsx ├── multiplicationTable-20.xlsx ├── multiplicationTable-20.xlsx.blank.xlsx ├── multiplicationTable-20.xlsx.blank.xlsx.trans.xlsx ├── multiplicationTable-6.xlsx ├── multiplicationTable.py ├── produceSales.xlsx ├── readCensusExcel.py ├── readExcel.py ├── sampleChart.xlsx ├── styled.xlsx ├── stylingUnit.py ├── textToExcel.py ├── trans.xlsx ├── trans.xlsx.trans.xlsx ├── transposition.py ├── updateProduce.py ├── updatedProduceSales.xlsx ├── writeExcel.py └── writeFormula.xlsx ├── 13-pdf-word ├── README.md ├── addBreakToDocx.py ├── addContentToDocx.py ├── addHeaderToDocx.py ├── batchEncryptPdf.py ├── combinePdfs.py ├── combineminutes.pdf ├── createDocx.py ├── createInvitation.py ├── decryptPdfWithDict.py ├── demo.docx ├── dictionary.txt ├── docxDemo.py ├── encryptPdf.py ├── encryptTest.pdf ├── encrypted.pdf ├── encryptedminutes.pdf ├── extractText.py ├── guestTemplete.docx ├── guests.txt ├── guestsInvitaion.docx ├── headings.docx ├── helloworld.docx ├── meetingminutes.pdf ├── meetingminutes2.pdf ├── mergePdf.py ├── multipleParagraphs.docx ├── readDocx.py ├── restyled.docx ├── rotatePdf.py ├── rotatedPage.pdf ├── twoPage.docx ├── watermark.pdf ├── watermarkPdf.py └── watermarkedCover.pdf ├── 14-csv-json ├── README.md ├── delimiterCsv.py ├── example.csv ├── example.tsv ├── excelSpreadsheets.zip ├── excelToCsv.py ├── jsonLoadsAndDumps.py ├── output.csv ├── quickWeather.py ├── readCsv.py ├── removeCsvHeader.py ├── removeCsvHeader.zip └── writeCsv.py ├── 15-time ├── README.md ├── about30YearsLater.py ├── calcProd.py ├── countdown.py ├── multidownloadXkcd.py ├── stopwatch.py ├── thousandDaysLater.py ├── threadDemo.py ├── threadWithParameters.py ├── timeSleep.py └── until.py ├── 16-email-sms ├── README.md ├── duesRecords.xlsx ├── sendDuesReminders.py └── textMyself.py ├── 17-image ├── README.md ├── catlogo.png ├── cropped.png ├── drawAndText.py ├── drawing.png ├── imageOp.py ├── pasted.png ├── png2jpg.py ├── purpleImage.png ├── putPixel.png ├── quartersized.png ├── resizeAndAddLogo.py ├── rotated180.png ├── rotated270.png ├── rotated6.png ├── rotated6_expanded.png ├── rotated90.png ├── svelte.png ├── text.png ├── tiled.png ├── transparentImage.png ├── zophie.jpg └── zophie.png ├── 18-GUI-control ├── README.md ├── commentAfterDelay.py ├── formFiller.py ├── mouseNow.py ├── mouseNow2.py ├── moveRel.py ├── moveTo.py └── spiralDraw.py ├── README.md └── automate_online-materials ├── alarm.wav ├── allMyCats1.py ├── allMyCats2.py ├── backupToZip.py ├── birthdays.py ├── boxPrint.py ├── buggyAddingProgram.py ├── bulletPointAdder.py ├── calcProd.py ├── catlogo.png ├── catnapping.py ├── census2010.py ├── censuspopdata.xlsx ├── characterCount.py ├── coinFlip.py ├── combinePdfs.py ├── combinedminutes.pdf ├── countdown.py ├── demo.docx ├── dictionary.txt ├── dimensions.xlsx ├── downloadXkcd.py ├── duesRecords.xlsx ├── encrypted.pdf ├── encryptedminutes.pdf ├── errorExample.py ├── example.csv ├── example.html ├── example.xlsx ├── example.zip ├── excelSpreadsheets.zip ├── exitExample.py ├── factorialLog.py ├── fiveTimes.py ├── formFiller.py ├── freezeExample.xlsx ├── getDocxText.py ├── guessTheNumber.py ├── guests.txt ├── headings.docx ├── hello.py ├── helloFunc.py ├── helloFunc2.py ├── helloworld.docx ├── inventory.py ├── isPhoneNumber.py ├── littleKid.py ├── lucky.py ├── magic8Ball.py ├── magic8Ball2.py ├── mapIt.py ├── mcb.pyw ├── meetingminutes.pdf ├── meetingminutes2.pdf ├── merged.xlsx ├── mouseNow.py ├── mouseNow2.py ├── multidownloadXkcd.py ├── multipleParagraphs.docx ├── myPets.py ├── passingReference.py ├── phoneAndEmail.py ├── picnicTable.py ├── prettyCharacterCount.py ├── printRandom.py ├── produceSales.xlsx ├── pw.py ├── quickWeather.py ├── randomQuizGenerator.py ├── readCensusExcel.py ├── readDocx.py ├── removeCsvHeader.py ├── removeCsvHeader.zip ├── renameDates.py ├── resizeAndAddLogo.py ├── restyled.docx ├── sameName.py ├── sameName2.py ├── sameName3.py ├── sameName4.py ├── sampleChart.xlsx ├── sendDuesReminders.py ├── stopwatch.py ├── styled.xlsx ├── styles.xlsx ├── swordfish.py ├── textMyself.py ├── threadDemo.py ├── ticTacToe.py ├── torrentStarter.py ├── twoPage.docx ├── updateProduce.py ├── updatedProduceSales.xlsx ├── validateInput.py ├── vampire.py ├── vampire2.py ├── watermark.pdf ├── zeroDivide.py └── zophie.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/.gitignore -------------------------------------------------------------------------------- /01-basic/hello.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/01-basic/hello.py -------------------------------------------------------------------------------- /02-control-flow/exitExample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/02-control-flow/exitExample.py -------------------------------------------------------------------------------- /02-control-flow/fiveTimes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/02-control-flow/fiveTimes.py -------------------------------------------------------------------------------- /02-control-flow/printRandom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/02-control-flow/printRandom.py -------------------------------------------------------------------------------- /02-control-flow/yourName.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/02-control-flow/yourName.py -------------------------------------------------------------------------------- /02-control-flow/yourName2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/02-control-flow/yourName2.py -------------------------------------------------------------------------------- /03-function/collatz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/03-function/collatz.py -------------------------------------------------------------------------------- /03-function/guessTheNumber.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/03-function/guessTheNumber.py -------------------------------------------------------------------------------- /03-function/helloFunc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/03-function/helloFunc.py -------------------------------------------------------------------------------- /03-function/helloFunc2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/03-function/helloFunc2.py -------------------------------------------------------------------------------- /03-function/magic8Ball.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/03-function/magic8Ball.py -------------------------------------------------------------------------------- /03-function/sameName.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/03-function/sameName.py -------------------------------------------------------------------------------- /03-function/sameName2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/03-function/sameName2.py -------------------------------------------------------------------------------- /03-function/sameName3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/03-function/sameName3.py -------------------------------------------------------------------------------- /03-function/sameName4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/03-function/sameName4.py -------------------------------------------------------------------------------- /03-function/zeroDivide.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/03-function/zeroDivide.py -------------------------------------------------------------------------------- /04-list/allMyCats1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/04-list/allMyCats1.py -------------------------------------------------------------------------------- /04-list/allMyCats2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/04-list/allMyCats2.py -------------------------------------------------------------------------------- /04-list/commaList.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/04-list/commaList.py -------------------------------------------------------------------------------- /04-list/magic8Ball2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/04-list/magic8Ball2.py -------------------------------------------------------------------------------- /04-list/passingReference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/04-list/passingReference.py -------------------------------------------------------------------------------- /04-list/printGrid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/04-list/printGrid.py -------------------------------------------------------------------------------- /05-dict/birthdays.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/05-dict/birthdays.py -------------------------------------------------------------------------------- /05-dict/characterCount.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/05-dict/characterCount.py -------------------------------------------------------------------------------- /05-dict/dragonLoot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/05-dict/dragonLoot.py -------------------------------------------------------------------------------- /05-dict/inventory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/05-dict/inventory.py -------------------------------------------------------------------------------- /05-dict/prettyCharacterCount.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/05-dict/prettyCharacterCount.py -------------------------------------------------------------------------------- /05-dict/ticTacToe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/05-dict/ticTacToe.py -------------------------------------------------------------------------------- /06-str/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/06-str/README.md -------------------------------------------------------------------------------- /06-str/bulletPointAdder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/06-str/bulletPointAdder.py -------------------------------------------------------------------------------- /06-str/catnapping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/06-str/catnapping.py -------------------------------------------------------------------------------- /06-str/picnicTable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/06-str/picnicTable.py -------------------------------------------------------------------------------- /06-str/printTable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/06-str/printTable.py -------------------------------------------------------------------------------- /06-str/pw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/06-str/pw.py -------------------------------------------------------------------------------- /06-str/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/06-str/readme.txt -------------------------------------------------------------------------------- /06-str/usingPyperclip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/06-str/usingPyperclip.py -------------------------------------------------------------------------------- /06-str/validateInput.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/06-str/validateInput.py -------------------------------------------------------------------------------- /07-regex/isPhoneNumber.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/07-regex/isPhoneNumber.py -------------------------------------------------------------------------------- /07-regex/passwordValidation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/07-regex/passwordValidation.py -------------------------------------------------------------------------------- /07-regex/phoneAndEmail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/07-regex/phoneAndEmail.py -------------------------------------------------------------------------------- /07-regex/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/07-regex/readme.md -------------------------------------------------------------------------------- /07-regex/stripRe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/07-regex/stripRe.py -------------------------------------------------------------------------------- /08-file/bacon.txt: -------------------------------------------------------------------------------- 1 | Hello world! 2 | Bacon is not a vegetable. -------------------------------------------------------------------------------- /08-file/baconFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/08-file/baconFile.py -------------------------------------------------------------------------------- /08-file/find.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/08-file/find.py -------------------------------------------------------------------------------- /08-file/madlibs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/08-file/madlibs.py -------------------------------------------------------------------------------- /08-file/mcb.bak: -------------------------------------------------------------------------------- 1 | 'b', (512, 17) 2 | -------------------------------------------------------------------------------- /08-file/mcb.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/08-file/mcb.dat -------------------------------------------------------------------------------- /08-file/mcb.dir: -------------------------------------------------------------------------------- 1 | 'b', (512, 17) 2 | -------------------------------------------------------------------------------- /08-file/mcb.pyw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/08-file/mcb.pyw -------------------------------------------------------------------------------- /08-file/myCats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/08-file/myCats.py -------------------------------------------------------------------------------- /08-file/mydata.bak: -------------------------------------------------------------------------------- 1 | 'cats', (0, 45) 2 | -------------------------------------------------------------------------------- /08-file/mydata.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/08-file/mydata.dat -------------------------------------------------------------------------------- /08-file/mydata.dir: -------------------------------------------------------------------------------- 1 | 'cats', (0, 45) 2 | -------------------------------------------------------------------------------- /08-file/pprintDemo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/08-file/pprintDemo.py -------------------------------------------------------------------------------- /08-file/randomQuizGenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/08-file/randomQuizGenerator.py -------------------------------------------------------------------------------- /08-file/shelfFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/08-file/shelfFile.py -------------------------------------------------------------------------------- /08-file/sonnet29.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/08-file/sonnet29.txt -------------------------------------------------------------------------------- /09-organize-file/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/09-organize-file/README.md -------------------------------------------------------------------------------- /09-organize-file/backupToZip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/09-organize-file/backupToZip.py -------------------------------------------------------------------------------- /09-organize-file/copy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/09-organize-file/copy.py -------------------------------------------------------------------------------- /09-organize-file/createZipFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/09-organize-file/createZipFile.py -------------------------------------------------------------------------------- /09-organize-file/demo/spam001.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /09-organize-file/demo/spam003.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /09-organize-file/filesize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/09-organize-file/filesize.py -------------------------------------------------------------------------------- /09-organize-file/renameDates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/09-organize-file/renameDates.py -------------------------------------------------------------------------------- /09-organize-file/send2trashDemo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/09-organize-file/send2trashDemo.py -------------------------------------------------------------------------------- /09-organize-file/sequence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/09-organize-file/sequence.py -------------------------------------------------------------------------------- /09-organize-file/traverseDir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/09-organize-file/traverseDir.py -------------------------------------------------------------------------------- /09-organize-file/zipfileDemo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/09-organize-file/zipfileDemo.py -------------------------------------------------------------------------------- /10-debug/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/10-debug/README.md -------------------------------------------------------------------------------- /10-debug/boxPrint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/10-debug/boxPrint.py -------------------------------------------------------------------------------- /10-debug/buggyAddingProgram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/10-debug/buggyAddingProgram.py -------------------------------------------------------------------------------- /10-debug/carSim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/10-debug/carSim.py -------------------------------------------------------------------------------- /10-debug/coinFlip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/10-debug/coinFlip.py -------------------------------------------------------------------------------- /10-debug/errorExample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/10-debug/errorExample.py -------------------------------------------------------------------------------- /10-debug/errorInfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/10-debug/errorInfo.txt -------------------------------------------------------------------------------- /10-debug/factorialLog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/10-debug/factorialLog.py -------------------------------------------------------------------------------- /10-debug/format_exc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/10-debug/format_exc.py -------------------------------------------------------------------------------- /10-debug/guessCoin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/10-debug/guessCoin.py -------------------------------------------------------------------------------- /10-debug/myProgramLog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/10-debug/myProgramLog.txt -------------------------------------------------------------------------------- /11-web/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/11-web/README.md -------------------------------------------------------------------------------- /11-web/RemeoAndJuliet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/11-web/RemeoAndJuliet.txt -------------------------------------------------------------------------------- /11-web/bs4Demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/11-web/bs4Demo.py -------------------------------------------------------------------------------- /11-web/downloadAllLinks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/11-web/downloadAllLinks.py -------------------------------------------------------------------------------- /11-web/downloadImages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/11-web/downloadImages.py -------------------------------------------------------------------------------- /11-web/downloadXkcd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/11-web/downloadXkcd.py -------------------------------------------------------------------------------- /11-web/example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/11-web/example.html -------------------------------------------------------------------------------- /11-web/lucky.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/11-web/lucky.py -------------------------------------------------------------------------------- /11-web/mapIt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/11-web/mapIt.py -------------------------------------------------------------------------------- /11-web/play2048.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/11-web/play2048.py -------------------------------------------------------------------------------- /11-web/requestsDemo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/11-web/requestsDemo.py -------------------------------------------------------------------------------- /11-web/seleniumClickLink.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/11-web/seleniumClickLink.py -------------------------------------------------------------------------------- /11-web/seleniumFindElement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/11-web/seleniumFindElement.py -------------------------------------------------------------------------------- /11-web/seleniumLoginGithub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/11-web/seleniumLoginGithub.py -------------------------------------------------------------------------------- /11-web/sendEmailByCommandLine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/11-web/sendEmailByCommandLine.py -------------------------------------------------------------------------------- /12-excel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/12-excel/README.md -------------------------------------------------------------------------------- /12-excel/blankRowInserter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/12-excel/blankRowInserter.py -------------------------------------------------------------------------------- /12-excel/census2010.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/12-excel/census2010.py -------------------------------------------------------------------------------- /12-excel/censuspopdata.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/12-excel/censuspopdata.xlsx -------------------------------------------------------------------------------- /12-excel/example.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/12-excel/example.xlsx -------------------------------------------------------------------------------- /12-excel/example_copy.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/12-excel/example_copy.xlsx -------------------------------------------------------------------------------- /12-excel/excelToText.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/12-excel/excelToText.py -------------------------------------------------------------------------------- /12-excel/formula.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/12-excel/formula.py -------------------------------------------------------------------------------- /12-excel/multiplicationTable-10.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/12-excel/multiplicationTable-10.xlsx -------------------------------------------------------------------------------- /12-excel/multiplicationTable-20.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/12-excel/multiplicationTable-20.xlsx -------------------------------------------------------------------------------- /12-excel/multiplicationTable-20.xlsx.blank.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/12-excel/multiplicationTable-20.xlsx.blank.xlsx -------------------------------------------------------------------------------- /12-excel/multiplicationTable-20.xlsx.blank.xlsx.trans.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/12-excel/multiplicationTable-20.xlsx.blank.xlsx.trans.xlsx -------------------------------------------------------------------------------- /12-excel/multiplicationTable-6.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/12-excel/multiplicationTable-6.xlsx -------------------------------------------------------------------------------- /12-excel/multiplicationTable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/12-excel/multiplicationTable.py -------------------------------------------------------------------------------- /12-excel/produceSales.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/12-excel/produceSales.xlsx -------------------------------------------------------------------------------- /12-excel/readCensusExcel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/12-excel/readCensusExcel.py -------------------------------------------------------------------------------- /12-excel/readExcel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/12-excel/readExcel.py -------------------------------------------------------------------------------- /12-excel/sampleChart.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/12-excel/sampleChart.xlsx -------------------------------------------------------------------------------- /12-excel/styled.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/12-excel/styled.xlsx -------------------------------------------------------------------------------- /12-excel/stylingUnit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/12-excel/stylingUnit.py -------------------------------------------------------------------------------- /12-excel/textToExcel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/12-excel/textToExcel.py -------------------------------------------------------------------------------- /12-excel/trans.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/12-excel/trans.xlsx -------------------------------------------------------------------------------- /12-excel/trans.xlsx.trans.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/12-excel/trans.xlsx.trans.xlsx -------------------------------------------------------------------------------- /12-excel/transposition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/12-excel/transposition.py -------------------------------------------------------------------------------- /12-excel/updateProduce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/12-excel/updateProduce.py -------------------------------------------------------------------------------- /12-excel/updatedProduceSales.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/12-excel/updatedProduceSales.xlsx -------------------------------------------------------------------------------- /12-excel/writeExcel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/12-excel/writeExcel.py -------------------------------------------------------------------------------- /12-excel/writeFormula.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/12-excel/writeFormula.xlsx -------------------------------------------------------------------------------- /13-pdf-word/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/13-pdf-word/README.md -------------------------------------------------------------------------------- /13-pdf-word/addBreakToDocx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/13-pdf-word/addBreakToDocx.py -------------------------------------------------------------------------------- /13-pdf-word/addContentToDocx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/13-pdf-word/addContentToDocx.py -------------------------------------------------------------------------------- /13-pdf-word/addHeaderToDocx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/13-pdf-word/addHeaderToDocx.py -------------------------------------------------------------------------------- /13-pdf-word/batchEncryptPdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/13-pdf-word/batchEncryptPdf.py -------------------------------------------------------------------------------- /13-pdf-word/combinePdfs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/13-pdf-word/combinePdfs.py -------------------------------------------------------------------------------- /13-pdf-word/combineminutes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/13-pdf-word/combineminutes.pdf -------------------------------------------------------------------------------- /13-pdf-word/createDocx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/13-pdf-word/createDocx.py -------------------------------------------------------------------------------- /13-pdf-word/createInvitation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/13-pdf-word/createInvitation.py -------------------------------------------------------------------------------- /13-pdf-word/decryptPdfWithDict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/13-pdf-word/decryptPdfWithDict.py -------------------------------------------------------------------------------- /13-pdf-word/demo.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/13-pdf-word/demo.docx -------------------------------------------------------------------------------- /13-pdf-word/dictionary.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/13-pdf-word/dictionary.txt -------------------------------------------------------------------------------- /13-pdf-word/docxDemo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/13-pdf-word/docxDemo.py -------------------------------------------------------------------------------- /13-pdf-word/encryptPdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/13-pdf-word/encryptPdf.py -------------------------------------------------------------------------------- /13-pdf-word/encryptTest.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/13-pdf-word/encryptTest.pdf -------------------------------------------------------------------------------- /13-pdf-word/encrypted.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/13-pdf-word/encrypted.pdf -------------------------------------------------------------------------------- /13-pdf-word/encryptedminutes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/13-pdf-word/encryptedminutes.pdf -------------------------------------------------------------------------------- /13-pdf-word/extractText.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/13-pdf-word/extractText.py -------------------------------------------------------------------------------- /13-pdf-word/guestTemplete.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/13-pdf-word/guestTemplete.docx -------------------------------------------------------------------------------- /13-pdf-word/guests.txt: -------------------------------------------------------------------------------- 1 | Prof. Plum 2 | Miss Scarlet 3 | Col. Mustard 4 | Al Sweigart 5 | Robocop -------------------------------------------------------------------------------- /13-pdf-word/guestsInvitaion.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/13-pdf-word/guestsInvitaion.docx -------------------------------------------------------------------------------- /13-pdf-word/headings.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/13-pdf-word/headings.docx -------------------------------------------------------------------------------- /13-pdf-word/helloworld.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/13-pdf-word/helloworld.docx -------------------------------------------------------------------------------- /13-pdf-word/meetingminutes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/13-pdf-word/meetingminutes.pdf -------------------------------------------------------------------------------- /13-pdf-word/meetingminutes2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/13-pdf-word/meetingminutes2.pdf -------------------------------------------------------------------------------- /13-pdf-word/mergePdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/13-pdf-word/mergePdf.py -------------------------------------------------------------------------------- /13-pdf-word/multipleParagraphs.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/13-pdf-word/multipleParagraphs.docx -------------------------------------------------------------------------------- /13-pdf-word/readDocx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/13-pdf-word/readDocx.py -------------------------------------------------------------------------------- /13-pdf-word/restyled.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/13-pdf-word/restyled.docx -------------------------------------------------------------------------------- /13-pdf-word/rotatePdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/13-pdf-word/rotatePdf.py -------------------------------------------------------------------------------- /13-pdf-word/rotatedPage.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/13-pdf-word/rotatedPage.pdf -------------------------------------------------------------------------------- /13-pdf-word/twoPage.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/13-pdf-word/twoPage.docx -------------------------------------------------------------------------------- /13-pdf-word/watermark.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/13-pdf-word/watermark.pdf -------------------------------------------------------------------------------- /13-pdf-word/watermarkPdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/13-pdf-word/watermarkPdf.py -------------------------------------------------------------------------------- /13-pdf-word/watermarkedCover.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/13-pdf-word/watermarkedCover.pdf -------------------------------------------------------------------------------- /14-csv-json/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/14-csv-json/README.md -------------------------------------------------------------------------------- /14-csv-json/delimiterCsv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/14-csv-json/delimiterCsv.py -------------------------------------------------------------------------------- /14-csv-json/example.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/14-csv-json/example.csv -------------------------------------------------------------------------------- /14-csv-json/example.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/14-csv-json/example.tsv -------------------------------------------------------------------------------- /14-csv-json/excelSpreadsheets.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/14-csv-json/excelSpreadsheets.zip -------------------------------------------------------------------------------- /14-csv-json/excelToCsv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/14-csv-json/excelToCsv.py -------------------------------------------------------------------------------- /14-csv-json/jsonLoadsAndDumps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/14-csv-json/jsonLoadsAndDumps.py -------------------------------------------------------------------------------- /14-csv-json/output.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/14-csv-json/output.csv -------------------------------------------------------------------------------- /14-csv-json/quickWeather.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/14-csv-json/quickWeather.py -------------------------------------------------------------------------------- /14-csv-json/readCsv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/14-csv-json/readCsv.py -------------------------------------------------------------------------------- /14-csv-json/removeCsvHeader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/14-csv-json/removeCsvHeader.py -------------------------------------------------------------------------------- /14-csv-json/removeCsvHeader.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/14-csv-json/removeCsvHeader.zip -------------------------------------------------------------------------------- /14-csv-json/writeCsv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/14-csv-json/writeCsv.py -------------------------------------------------------------------------------- /15-time/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/15-time/README.md -------------------------------------------------------------------------------- /15-time/about30YearsLater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/15-time/about30YearsLater.py -------------------------------------------------------------------------------- /15-time/calcProd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/15-time/calcProd.py -------------------------------------------------------------------------------- /15-time/countdown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/15-time/countdown.py -------------------------------------------------------------------------------- /15-time/multidownloadXkcd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/15-time/multidownloadXkcd.py -------------------------------------------------------------------------------- /15-time/stopwatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/15-time/stopwatch.py -------------------------------------------------------------------------------- /15-time/thousandDaysLater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/15-time/thousandDaysLater.py -------------------------------------------------------------------------------- /15-time/threadDemo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/15-time/threadDemo.py -------------------------------------------------------------------------------- /15-time/threadWithParameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/15-time/threadWithParameters.py -------------------------------------------------------------------------------- /15-time/timeSleep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/15-time/timeSleep.py -------------------------------------------------------------------------------- /15-time/until.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/15-time/until.py -------------------------------------------------------------------------------- /16-email-sms/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/16-email-sms/README.md -------------------------------------------------------------------------------- /16-email-sms/duesRecords.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/16-email-sms/duesRecords.xlsx -------------------------------------------------------------------------------- /16-email-sms/sendDuesReminders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/16-email-sms/sendDuesReminders.py -------------------------------------------------------------------------------- /16-email-sms/textMyself.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/16-email-sms/textMyself.py -------------------------------------------------------------------------------- /17-image/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/17-image/README.md -------------------------------------------------------------------------------- /17-image/catlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/17-image/catlogo.png -------------------------------------------------------------------------------- /17-image/cropped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/17-image/cropped.png -------------------------------------------------------------------------------- /17-image/drawAndText.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/17-image/drawAndText.py -------------------------------------------------------------------------------- /17-image/drawing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/17-image/drawing.png -------------------------------------------------------------------------------- /17-image/imageOp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/17-image/imageOp.py -------------------------------------------------------------------------------- /17-image/pasted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/17-image/pasted.png -------------------------------------------------------------------------------- /17-image/png2jpg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/17-image/png2jpg.py -------------------------------------------------------------------------------- /17-image/purpleImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/17-image/purpleImage.png -------------------------------------------------------------------------------- /17-image/putPixel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/17-image/putPixel.png -------------------------------------------------------------------------------- /17-image/quartersized.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/17-image/quartersized.png -------------------------------------------------------------------------------- /17-image/resizeAndAddLogo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/17-image/resizeAndAddLogo.py -------------------------------------------------------------------------------- /17-image/rotated180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/17-image/rotated180.png -------------------------------------------------------------------------------- /17-image/rotated270.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/17-image/rotated270.png -------------------------------------------------------------------------------- /17-image/rotated6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/17-image/rotated6.png -------------------------------------------------------------------------------- /17-image/rotated6_expanded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/17-image/rotated6_expanded.png -------------------------------------------------------------------------------- /17-image/rotated90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/17-image/rotated90.png -------------------------------------------------------------------------------- /17-image/svelte.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/17-image/svelte.png -------------------------------------------------------------------------------- /17-image/text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/17-image/text.png -------------------------------------------------------------------------------- /17-image/tiled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/17-image/tiled.png -------------------------------------------------------------------------------- /17-image/transparentImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/17-image/transparentImage.png -------------------------------------------------------------------------------- /17-image/zophie.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/17-image/zophie.jpg -------------------------------------------------------------------------------- /17-image/zophie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/17-image/zophie.png -------------------------------------------------------------------------------- /18-GUI-control/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/18-GUI-control/README.md -------------------------------------------------------------------------------- /18-GUI-control/commentAfterDelay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/18-GUI-control/commentAfterDelay.py -------------------------------------------------------------------------------- /18-GUI-control/formFiller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/18-GUI-control/formFiller.py -------------------------------------------------------------------------------- /18-GUI-control/mouseNow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/18-GUI-control/mouseNow.py -------------------------------------------------------------------------------- /18-GUI-control/mouseNow2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/18-GUI-control/mouseNow2.py -------------------------------------------------------------------------------- /18-GUI-control/moveRel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/18-GUI-control/moveRel.py -------------------------------------------------------------------------------- /18-GUI-control/moveTo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/18-GUI-control/moveTo.py -------------------------------------------------------------------------------- /18-GUI-control/spiralDraw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/18-GUI-control/spiralDraw.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/README.md -------------------------------------------------------------------------------- /automate_online-materials/alarm.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/automate_online-materials/alarm.wav -------------------------------------------------------------------------------- /automate_online-materials/allMyCats1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/automate_online-materials/allMyCats1.py -------------------------------------------------------------------------------- /automate_online-materials/allMyCats2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/automate_online-materials/allMyCats2.py -------------------------------------------------------------------------------- /automate_online-materials/backupToZip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/automate_online-materials/backupToZip.py -------------------------------------------------------------------------------- /automate_online-materials/birthdays.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/automate_online-materials/birthdays.py -------------------------------------------------------------------------------- /automate_online-materials/boxPrint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/automate_online-materials/boxPrint.py -------------------------------------------------------------------------------- /automate_online-materials/buggyAddingProgram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/automate_online-materials/buggyAddingProgram.py -------------------------------------------------------------------------------- /automate_online-materials/bulletPointAdder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/automate_online-materials/bulletPointAdder.py -------------------------------------------------------------------------------- /automate_online-materials/calcProd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/automate_online-materials/calcProd.py -------------------------------------------------------------------------------- /automate_online-materials/catlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/automate_online-materials/catlogo.png -------------------------------------------------------------------------------- /automate_online-materials/catnapping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/automate_online-materials/catnapping.py -------------------------------------------------------------------------------- /automate_online-materials/census2010.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/automate_online-materials/census2010.py -------------------------------------------------------------------------------- /automate_online-materials/censuspopdata.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/automate_online-materials/censuspopdata.xlsx -------------------------------------------------------------------------------- /automate_online-materials/characterCount.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/automate_online-materials/characterCount.py -------------------------------------------------------------------------------- /automate_online-materials/coinFlip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/automate_online-materials/coinFlip.py -------------------------------------------------------------------------------- /automate_online-materials/combinePdfs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/automate_online-materials/combinePdfs.py -------------------------------------------------------------------------------- /automate_online-materials/combinedminutes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/automate_online-materials/combinedminutes.pdf -------------------------------------------------------------------------------- /automate_online-materials/countdown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/automate_online-materials/countdown.py -------------------------------------------------------------------------------- /automate_online-materials/demo.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/automate_online-materials/demo.docx -------------------------------------------------------------------------------- /automate_online-materials/dictionary.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/automate_online-materials/dictionary.txt -------------------------------------------------------------------------------- /automate_online-materials/dimensions.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/automate_online-materials/dimensions.xlsx -------------------------------------------------------------------------------- /automate_online-materials/downloadXkcd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/automate_online-materials/downloadXkcd.py -------------------------------------------------------------------------------- /automate_online-materials/duesRecords.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/automate_online-materials/duesRecords.xlsx -------------------------------------------------------------------------------- /automate_online-materials/encrypted.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/automate_online-materials/encrypted.pdf -------------------------------------------------------------------------------- /automate_online-materials/encryptedminutes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/automate_online-materials/encryptedminutes.pdf -------------------------------------------------------------------------------- /automate_online-materials/errorExample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/automate_online-materials/errorExample.py -------------------------------------------------------------------------------- /automate_online-materials/example.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/automate_online-materials/example.csv -------------------------------------------------------------------------------- /automate_online-materials/example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/automate_online-materials/example.html -------------------------------------------------------------------------------- /automate_online-materials/example.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/automate_online-materials/example.xlsx -------------------------------------------------------------------------------- /automate_online-materials/example.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/automate_online-materials/example.zip -------------------------------------------------------------------------------- /automate_online-materials/excelSpreadsheets.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/automate_online-materials/excelSpreadsheets.zip -------------------------------------------------------------------------------- /automate_online-materials/exitExample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/automate_online-materials/exitExample.py -------------------------------------------------------------------------------- /automate_online-materials/factorialLog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/automate_online-materials/factorialLog.py -------------------------------------------------------------------------------- /automate_online-materials/fiveTimes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/automate_online-materials/fiveTimes.py -------------------------------------------------------------------------------- /automate_online-materials/formFiller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/automate_online-materials/formFiller.py -------------------------------------------------------------------------------- /automate_online-materials/freezeExample.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/automate_online-materials/freezeExample.xlsx -------------------------------------------------------------------------------- /automate_online-materials/getDocxText.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/automate_online-materials/getDocxText.py -------------------------------------------------------------------------------- /automate_online-materials/guessTheNumber.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/automate_online-materials/guessTheNumber.py -------------------------------------------------------------------------------- /automate_online-materials/guests.txt: -------------------------------------------------------------------------------- 1 | Prof. Plum 2 | Miss Scarlet 3 | Col. Mustard 4 | Al Sweigart 5 | Robocop -------------------------------------------------------------------------------- /automate_online-materials/headings.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/automate_online-materials/headings.docx -------------------------------------------------------------------------------- /automate_online-materials/hello.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/automate_online-materials/hello.py -------------------------------------------------------------------------------- /automate_online-materials/helloFunc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/automate_online-materials/helloFunc.py -------------------------------------------------------------------------------- /automate_online-materials/helloFunc2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/automate_online-materials/helloFunc2.py -------------------------------------------------------------------------------- /automate_online-materials/helloworld.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/automate_online-materials/helloworld.docx -------------------------------------------------------------------------------- /automate_online-materials/inventory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/automate_online-materials/inventory.py -------------------------------------------------------------------------------- /automate_online-materials/isPhoneNumber.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/automate_online-materials/isPhoneNumber.py -------------------------------------------------------------------------------- /automate_online-materials/littleKid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/automate_online-materials/littleKid.py -------------------------------------------------------------------------------- /automate_online-materials/lucky.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/automate_online-materials/lucky.py -------------------------------------------------------------------------------- /automate_online-materials/magic8Ball.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/automate_online-materials/magic8Ball.py -------------------------------------------------------------------------------- /automate_online-materials/magic8Ball2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/automate_online-materials/magic8Ball2.py -------------------------------------------------------------------------------- /automate_online-materials/mapIt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/automate_online-materials/mapIt.py -------------------------------------------------------------------------------- /automate_online-materials/mcb.pyw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/automate_online-materials/mcb.pyw -------------------------------------------------------------------------------- /automate_online-materials/meetingminutes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/automate_online-materials/meetingminutes.pdf -------------------------------------------------------------------------------- /automate_online-materials/meetingminutes2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/automate_online-materials/meetingminutes2.pdf -------------------------------------------------------------------------------- /automate_online-materials/merged.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/automate_online-materials/merged.xlsx -------------------------------------------------------------------------------- /automate_online-materials/mouseNow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/automate_online-materials/mouseNow.py -------------------------------------------------------------------------------- /automate_online-materials/mouseNow2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/automate_online-materials/mouseNow2.py -------------------------------------------------------------------------------- /automate_online-materials/multidownloadXkcd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/automate_online-materials/multidownloadXkcd.py -------------------------------------------------------------------------------- /automate_online-materials/multipleParagraphs.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/automate_online-materials/multipleParagraphs.docx -------------------------------------------------------------------------------- /automate_online-materials/myPets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/automate_online-materials/myPets.py -------------------------------------------------------------------------------- /automate_online-materials/passingReference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/automate_online-materials/passingReference.py -------------------------------------------------------------------------------- /automate_online-materials/phoneAndEmail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/automate_online-materials/phoneAndEmail.py -------------------------------------------------------------------------------- /automate_online-materials/picnicTable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/automate_online-materials/picnicTable.py -------------------------------------------------------------------------------- /automate_online-materials/prettyCharacterCount.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/automate_online-materials/prettyCharacterCount.py -------------------------------------------------------------------------------- /automate_online-materials/printRandom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/automate_online-materials/printRandom.py -------------------------------------------------------------------------------- /automate_online-materials/produceSales.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/automate_online-materials/produceSales.xlsx -------------------------------------------------------------------------------- /automate_online-materials/pw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/automate_online-materials/pw.py -------------------------------------------------------------------------------- /automate_online-materials/quickWeather.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/automate_online-materials/quickWeather.py -------------------------------------------------------------------------------- /automate_online-materials/randomQuizGenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/automate_online-materials/randomQuizGenerator.py -------------------------------------------------------------------------------- /automate_online-materials/readCensusExcel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/automate_online-materials/readCensusExcel.py -------------------------------------------------------------------------------- /automate_online-materials/readDocx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/automate_online-materials/readDocx.py -------------------------------------------------------------------------------- /automate_online-materials/removeCsvHeader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/automate_online-materials/removeCsvHeader.py -------------------------------------------------------------------------------- /automate_online-materials/removeCsvHeader.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/automate_online-materials/removeCsvHeader.zip -------------------------------------------------------------------------------- /automate_online-materials/renameDates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/automate_online-materials/renameDates.py -------------------------------------------------------------------------------- /automate_online-materials/resizeAndAddLogo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/automate_online-materials/resizeAndAddLogo.py -------------------------------------------------------------------------------- /automate_online-materials/restyled.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/automate_online-materials/restyled.docx -------------------------------------------------------------------------------- /automate_online-materials/sameName.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/automate_online-materials/sameName.py -------------------------------------------------------------------------------- /automate_online-materials/sameName2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/automate_online-materials/sameName2.py -------------------------------------------------------------------------------- /automate_online-materials/sameName3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/automate_online-materials/sameName3.py -------------------------------------------------------------------------------- /automate_online-materials/sameName4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/automate_online-materials/sameName4.py -------------------------------------------------------------------------------- /automate_online-materials/sampleChart.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/automate_online-materials/sampleChart.xlsx -------------------------------------------------------------------------------- /automate_online-materials/sendDuesReminders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/automate_online-materials/sendDuesReminders.py -------------------------------------------------------------------------------- /automate_online-materials/stopwatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/automate_online-materials/stopwatch.py -------------------------------------------------------------------------------- /automate_online-materials/styled.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/automate_online-materials/styled.xlsx -------------------------------------------------------------------------------- /automate_online-materials/styles.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/automate_online-materials/styles.xlsx -------------------------------------------------------------------------------- /automate_online-materials/swordfish.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/automate_online-materials/swordfish.py -------------------------------------------------------------------------------- /automate_online-materials/textMyself.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/automate_online-materials/textMyself.py -------------------------------------------------------------------------------- /automate_online-materials/threadDemo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/automate_online-materials/threadDemo.py -------------------------------------------------------------------------------- /automate_online-materials/ticTacToe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/automate_online-materials/ticTacToe.py -------------------------------------------------------------------------------- /automate_online-materials/torrentStarter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/automate_online-materials/torrentStarter.py -------------------------------------------------------------------------------- /automate_online-materials/twoPage.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/automate_online-materials/twoPage.docx -------------------------------------------------------------------------------- /automate_online-materials/updateProduce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/automate_online-materials/updateProduce.py -------------------------------------------------------------------------------- /automate_online-materials/updatedProduceSales.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/automate_online-materials/updatedProduceSales.xlsx -------------------------------------------------------------------------------- /automate_online-materials/validateInput.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/automate_online-materials/validateInput.py -------------------------------------------------------------------------------- /automate_online-materials/vampire.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/automate_online-materials/vampire.py -------------------------------------------------------------------------------- /automate_online-materials/vampire2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/automate_online-materials/vampire2.py -------------------------------------------------------------------------------- /automate_online-materials/watermark.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/automate_online-materials/watermark.pdf -------------------------------------------------------------------------------- /automate_online-materials/zeroDivide.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/automate_online-materials/zeroDivide.py -------------------------------------------------------------------------------- /automate_online-materials/zophie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenguohui/AutomatePython/HEAD/automate_online-materials/zophie.png --------------------------------------------------------------------------------