Notes-20160719 get/put/create/delete pages

Use a program to access a course page

I have made a set of simply python programs to get/put/create/delete a course page given a URL or in the case of creating both a URL and page title.

 ./ccreate.py https://kth.instructure.com/courses/11/pages/test-3 "Test 3"

creates a page with title "Test 3"

./cdel.py https://kth.instructure.com/courses/11/pages/test-3 "Test 3"

deletes the page

./cget.py https://kth.instructure.com/courses/11/pages/test-2

gets the page into test-2.html

./cput.py https://kth.instructure.com/courses/11/pages/test-2

Download cdel

was the last of these to be written, so it has the code for all 4 operations in it, you only need to change which function is called in main and change the number of arguments expected in the case of ccreate.py

Why make these program? Well using cget you can get a course page, edit it with your favorite editor, and then cput it back! Perfecting for using a more powerful editor such as emacs on a course page.

You can think about a combination of cget, split a page with your editor to create a new page, then cput the original page back, and ccreate the new page with the title you want it to have.


Added: 2017.01.25

 To get all of the pages for a course you can use the program  Download cgetall.py