├── Actions └── pyui converter │ ├── json2pyui.py │ ├── openIn.py │ ├── pyui2json.py │ ├── pyui2json2pyui.py │ └── readme.md ├── Projects ├── Apps │ ├── Basic Bible │ │ ├── IMG_0084.JPG │ │ ├── LICENSE.txt │ │ ├── bible-sqlite.db │ │ ├── bible.py │ │ ├── bible.pyui │ │ ├── kjv.db │ │ ├── readme.md │ │ ├── screen.png │ │ ├── screen2.png │ │ ├── screen3.png │ │ ├── screen4.PNG │ │ ├── search.pyui │ │ └── settings.pyui │ ├── Bible-Explorer │ │ ├── explorer.py │ │ ├── explorer.pyui │ │ └── readme.md │ ├── Chat │ │ ├── IMG_3222.PNG │ │ ├── chat.py │ │ ├── chat.pyui │ │ ├── readme.md │ │ └── screen_chat.PNG │ ├── Database Search │ │ ├── database search.py │ │ ├── database search.pyui │ │ ├── readme.md │ │ └── screen.png │ ├── Dictionary │ │ ├── dictionary.json │ │ ├── dictionary.py │ │ ├── dictionaryUI.pyui │ │ ├── readme.md │ │ └── screenshot.png │ ├── Mapper │ │ ├── IMG_0074.PNG │ │ ├── IMG_0075.JPG │ │ ├── map.pyui │ │ ├── mapper.py │ │ ├── mapper.pyui │ │ ├── readme.md │ │ └── screenshot.png │ ├── Noted │ │ ├── noted.py │ │ ├── noted.pyui │ │ ├── readme.md │ │ └── screenshot.png │ └── Reminders │ │ ├── readme.md │ │ ├── reminders.py │ │ ├── reminders.pyui │ │ └── screen.png ├── Games │ ├── Game Engine │ │ ├── Art │ │ │ └── IMG_0066.PNG │ │ ├── Music │ │ │ ├── David_Szesztay_-_Beach_Party.mp3 │ │ │ └── TRG_Banks_-_06_-_Goodbye_Machineryhead.mp3 │ │ ├── editor.pyui │ │ ├── engine.py │ │ ├── readme.md │ │ └── screenshot.png │ ├── Tests │ │ ├── game_counter.py │ │ ├── game_touch_events.py │ │ ├── sprite_on_touch.py │ │ ├── sprites_on_touch.py │ │ └── test game.py │ └── readme.md ├── UI │ ├── Brightness Slider │ │ ├── brightness_slider.py │ │ ├── brightness_slider.pyui │ │ ├── readme.md │ │ └── screenshot.png │ ├── Code Fun │ │ ├── Files │ │ │ ├── agenda.txt │ │ │ ├── lorem.txt │ │ │ └── main_text.txt │ │ ├── Images │ │ │ ├── logo.PNG │ │ │ ├── screen1.PNG │ │ │ └── screen2.PNG │ │ ├── Views │ │ │ ├── main.pyui │ │ │ ├── sheet.pyui │ │ │ └── welcome.pyui │ │ ├── code_fun.py │ │ └── readme.md │ ├── Dragable Window │ │ ├── DragWindow.py │ │ ├── DragWindow.pyui │ │ └── readme.md │ ├── File Reader UI │ │ ├── file_reader_ui.py │ │ ├── file_reader_ui.pyui │ │ ├── readme.md │ │ └── screenshot.png │ ├── MVC │ │ ├── readme.md │ │ ├── root_view.pyui │ │ └── view_controller.py │ ├── My Drafts │ │ ├── Files │ │ │ ├── credits.txt │ │ │ ├── data.txt │ │ │ └── info.txt │ │ ├── Views │ │ │ ├── docs.pyui │ │ │ └── main.pyui │ │ ├── mydrafts.py │ │ ├── readme.md │ │ └── screen.png │ ├── Navigation Menu │ │ ├── Views │ │ │ ├── Backup.pyui │ │ │ ├── Export.pyui │ │ │ ├── Import.pyui │ │ │ └── Logbook.pyui │ │ ├── main_view.py │ │ ├── main_view.pyui │ │ ├── readme.md │ │ └── screen.png │ ├── Navigation View Tutorial │ │ ├── Files │ │ │ ├── index.html │ │ │ ├── nav_test.py │ │ │ └── tutorial.txt │ │ ├── NavView Tutorial.py │ │ ├── edit_view.pyui │ │ ├── file_view.pyui │ │ ├── readme.md │ │ ├── screen1.png │ │ ├── screen2.png │ │ ├── screen3.png │ │ ├── toolbar.pyui │ │ └── webview.pyui │ ├── Not So Dangerous Writing App │ │ ├── Views │ │ │ ├── game_over.pyui │ │ │ ├── main.pyui │ │ │ └── menu.pyui │ │ ├── app.py │ │ ├── readme.md │ │ └── screenshots │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ └── File_003.png │ ├── Password Database │ │ ├── Data │ │ │ └── passwords.db │ │ ├── Views │ │ │ ├── welcome.py │ │ │ └── welcome.pyui │ │ ├── main.py │ │ ├── readme.md │ │ └── screen.png │ ├── Photo Gallery │ │ ├── Views │ │ │ └── gallery.pyui │ │ ├── photo_gallery.py │ │ ├── readme.md │ │ ├── screen.png │ │ ├── test 6.py │ │ ├── test1.py │ │ ├── test2.py │ │ ├── test3.py │ │ ├── test4.py │ │ └── test5.py │ ├── Quiz │ │ ├── app.py │ │ ├── data │ │ │ ├── __init__.py │ │ │ └── test1.py │ │ ├── images │ │ │ └── screen.png │ │ ├── readme.md │ │ └── views │ │ │ └── main.pyui │ ├── Resizable Window │ │ ├── ResizeableWindow(wip).py │ │ ├── ResizeableWindow(wip).pyui │ │ └── readme.md │ ├── Save and Load │ │ ├── Files │ │ │ ├── intro.md │ │ │ └── test.txt │ │ ├── readme.md │ │ ├── save_and_load.py │ │ ├── save_and_load.pyui │ │ └── screen.png │ ├── Split View Controller │ │ ├── detail.py │ │ ├── detail.pyui │ │ ├── master.py │ │ ├── master.pyui │ │ ├── readme.md │ │ ├── screen1.png │ │ ├── screen2.png │ │ └── splitViewController.py │ ├── Tableview Tour │ │ ├── readme.md │ │ ├── styler.py │ │ ├── styler.pyui │ │ ├── test.pyui │ │ ├── test2.pyui │ │ └── test3.pyui │ ├── View Instancing │ │ └── view_instancing.py │ ├── animated_view.py │ └── ui_ux │ │ ├── iPad_envelopes.pyui │ │ ├── iPad_infoPage.pyui │ │ ├── iPhone_list.pyui │ │ ├── ipad_codeEditor.pyui │ │ ├── readme.md │ │ ├── screenshots │ │ ├── screen1.png │ │ ├── screen2.png │ │ └── screen3.png │ │ └── ui_ux.py └── Utilities │ ├── Copy File.py │ ├── GithubGet.py │ ├── clip.py │ ├── download_file.py │ ├── lorem ipsum.py │ ├── readme.md │ ├── readonly.py │ └── writeable.py ├── README.md └── images └── animated_view.png /Actions/pyui converter/json2pyui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Actions/pyui converter/json2pyui.py -------------------------------------------------------------------------------- /Actions/pyui converter/openIn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Actions/pyui converter/openIn.py -------------------------------------------------------------------------------- /Actions/pyui converter/pyui2json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Actions/pyui converter/pyui2json.py -------------------------------------------------------------------------------- /Actions/pyui converter/pyui2json2pyui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Actions/pyui converter/pyui2json2pyui.py -------------------------------------------------------------------------------- /Actions/pyui converter/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Actions/pyui converter/readme.md -------------------------------------------------------------------------------- /Projects/Apps/Basic Bible/IMG_0084.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/Apps/Basic Bible/IMG_0084.JPG -------------------------------------------------------------------------------- /Projects/Apps/Basic Bible/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/Apps/Basic Bible/LICENSE.txt -------------------------------------------------------------------------------- /Projects/Apps/Basic Bible/bible-sqlite.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/Apps/Basic Bible/bible-sqlite.db -------------------------------------------------------------------------------- /Projects/Apps/Basic Bible/bible.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/Apps/Basic Bible/bible.py -------------------------------------------------------------------------------- /Projects/Apps/Basic Bible/bible.pyui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/Apps/Basic Bible/bible.pyui -------------------------------------------------------------------------------- /Projects/Apps/Basic Bible/kjv.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/Apps/Basic Bible/kjv.db -------------------------------------------------------------------------------- /Projects/Apps/Basic Bible/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/Apps/Basic Bible/readme.md -------------------------------------------------------------------------------- /Projects/Apps/Basic Bible/screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/Apps/Basic Bible/screen.png -------------------------------------------------------------------------------- /Projects/Apps/Basic Bible/screen2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/Apps/Basic Bible/screen2.png -------------------------------------------------------------------------------- /Projects/Apps/Basic Bible/screen3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/Apps/Basic Bible/screen3.png -------------------------------------------------------------------------------- /Projects/Apps/Basic Bible/screen4.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/Apps/Basic Bible/screen4.PNG -------------------------------------------------------------------------------- /Projects/Apps/Basic Bible/search.pyui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/Apps/Basic Bible/search.pyui -------------------------------------------------------------------------------- /Projects/Apps/Basic Bible/settings.pyui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/Apps/Basic Bible/settings.pyui -------------------------------------------------------------------------------- /Projects/Apps/Bible-Explorer/explorer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/Apps/Bible-Explorer/explorer.py -------------------------------------------------------------------------------- /Projects/Apps/Bible-Explorer/explorer.pyui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/Apps/Bible-Explorer/explorer.pyui -------------------------------------------------------------------------------- /Projects/Apps/Bible-Explorer/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/Apps/Bible-Explorer/readme.md -------------------------------------------------------------------------------- /Projects/Apps/Chat/IMG_3222.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/Apps/Chat/IMG_3222.PNG -------------------------------------------------------------------------------- /Projects/Apps/Chat/chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/Apps/Chat/chat.py -------------------------------------------------------------------------------- /Projects/Apps/Chat/chat.pyui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/Apps/Chat/chat.pyui -------------------------------------------------------------------------------- /Projects/Apps/Chat/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/Apps/Chat/readme.md -------------------------------------------------------------------------------- /Projects/Apps/Chat/screen_chat.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/Apps/Chat/screen_chat.PNG -------------------------------------------------------------------------------- /Projects/Apps/Database Search/database search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/Apps/Database Search/database search.py -------------------------------------------------------------------------------- /Projects/Apps/Database Search/database search.pyui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/Apps/Database Search/database search.pyui -------------------------------------------------------------------------------- /Projects/Apps/Database Search/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/Apps/Database Search/readme.md -------------------------------------------------------------------------------- /Projects/Apps/Database Search/screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/Apps/Database Search/screen.png -------------------------------------------------------------------------------- /Projects/Apps/Dictionary/dictionary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/Apps/Dictionary/dictionary.json -------------------------------------------------------------------------------- /Projects/Apps/Dictionary/dictionary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/Apps/Dictionary/dictionary.py -------------------------------------------------------------------------------- /Projects/Apps/Dictionary/dictionaryUI.pyui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/Apps/Dictionary/dictionaryUI.pyui -------------------------------------------------------------------------------- /Projects/Apps/Dictionary/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/Apps/Dictionary/readme.md -------------------------------------------------------------------------------- /Projects/Apps/Dictionary/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/Apps/Dictionary/screenshot.png -------------------------------------------------------------------------------- /Projects/Apps/Mapper/IMG_0074.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/Apps/Mapper/IMG_0074.PNG -------------------------------------------------------------------------------- /Projects/Apps/Mapper/IMG_0075.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/Apps/Mapper/IMG_0075.JPG -------------------------------------------------------------------------------- /Projects/Apps/Mapper/map.pyui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/Apps/Mapper/map.pyui -------------------------------------------------------------------------------- /Projects/Apps/Mapper/mapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/Apps/Mapper/mapper.py -------------------------------------------------------------------------------- /Projects/Apps/Mapper/mapper.pyui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/Apps/Mapper/mapper.pyui -------------------------------------------------------------------------------- /Projects/Apps/Mapper/readme.md: -------------------------------------------------------------------------------- 1 | A Fake Map App 2 | 3 | ![](screenshot.png) -------------------------------------------------------------------------------- /Projects/Apps/Mapper/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/Apps/Mapper/screenshot.png -------------------------------------------------------------------------------- /Projects/Apps/Noted/noted.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/Apps/Noted/noted.py -------------------------------------------------------------------------------- /Projects/Apps/Noted/noted.pyui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/Apps/Noted/noted.pyui -------------------------------------------------------------------------------- /Projects/Apps/Noted/readme.md: -------------------------------------------------------------------------------- 1 | A Q&A note taking app. 2 | ![](screenshot.png) 3 | -------------------------------------------------------------------------------- /Projects/Apps/Noted/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/Apps/Noted/screenshot.png -------------------------------------------------------------------------------- /Projects/Apps/Reminders/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Projects/Apps/Reminders/reminders.py: -------------------------------------------------------------------------------- 1 | import ui 2 | 3 | v = ui.load_view() 4 | v.present(hide_title_bar=True) 5 | -------------------------------------------------------------------------------- /Projects/Apps/Reminders/reminders.pyui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/Apps/Reminders/reminders.pyui -------------------------------------------------------------------------------- /Projects/Apps/Reminders/screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/Apps/Reminders/screen.png -------------------------------------------------------------------------------- /Projects/Games/Game Engine/Art/IMG_0066.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/Games/Game Engine/Art/IMG_0066.PNG -------------------------------------------------------------------------------- /Projects/Games/Game Engine/Music/David_Szesztay_-_Beach_Party.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/Games/Game Engine/Music/David_Szesztay_-_Beach_Party.mp3 -------------------------------------------------------------------------------- /Projects/Games/Game Engine/Music/TRG_Banks_-_06_-_Goodbye_Machineryhead.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/Games/Game Engine/Music/TRG_Banks_-_06_-_Goodbye_Machineryhead.mp3 -------------------------------------------------------------------------------- /Projects/Games/Game Engine/editor.pyui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/Games/Game Engine/editor.pyui -------------------------------------------------------------------------------- /Projects/Games/Game Engine/engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/Games/Game Engine/engine.py -------------------------------------------------------------------------------- /Projects/Games/Game Engine/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/Games/Game Engine/readme.md -------------------------------------------------------------------------------- /Projects/Games/Game Engine/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/Games/Game Engine/screenshot.png -------------------------------------------------------------------------------- /Projects/Games/Tests/game_counter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/Games/Tests/game_counter.py -------------------------------------------------------------------------------- /Projects/Games/Tests/game_touch_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/Games/Tests/game_touch_events.py -------------------------------------------------------------------------------- /Projects/Games/Tests/sprite_on_touch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/Games/Tests/sprite_on_touch.py -------------------------------------------------------------------------------- /Projects/Games/Tests/sprites_on_touch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/Games/Tests/sprites_on_touch.py -------------------------------------------------------------------------------- /Projects/Games/Tests/test game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/Games/Tests/test game.py -------------------------------------------------------------------------------- /Projects/Games/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/Games/readme.md -------------------------------------------------------------------------------- /Projects/UI/Brightness Slider/brightness_slider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/UI/Brightness Slider/brightness_slider.py -------------------------------------------------------------------------------- /Projects/UI/Brightness Slider/brightness_slider.pyui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/UI/Brightness Slider/brightness_slider.pyui -------------------------------------------------------------------------------- /Projects/UI/Brightness Slider/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/UI/Brightness Slider/readme.md -------------------------------------------------------------------------------- /Projects/UI/Brightness Slider/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/UI/Brightness Slider/screenshot.png -------------------------------------------------------------------------------- /Projects/UI/Code Fun/Files/agenda.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/UI/Code Fun/Files/agenda.txt -------------------------------------------------------------------------------- /Projects/UI/Code Fun/Files/lorem.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/UI/Code Fun/Files/lorem.txt -------------------------------------------------------------------------------- /Projects/UI/Code Fun/Files/main_text.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/UI/Code Fun/Files/main_text.txt -------------------------------------------------------------------------------- /Projects/UI/Code Fun/Images/logo.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/UI/Code Fun/Images/logo.PNG -------------------------------------------------------------------------------- /Projects/UI/Code Fun/Images/screen1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/UI/Code Fun/Images/screen1.PNG -------------------------------------------------------------------------------- /Projects/UI/Code Fun/Images/screen2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/UI/Code Fun/Images/screen2.PNG -------------------------------------------------------------------------------- /Projects/UI/Code Fun/Views/main.pyui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/UI/Code Fun/Views/main.pyui -------------------------------------------------------------------------------- /Projects/UI/Code Fun/Views/sheet.pyui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/UI/Code Fun/Views/sheet.pyui -------------------------------------------------------------------------------- /Projects/UI/Code Fun/Views/welcome.pyui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/UI/Code Fun/Views/welcome.pyui -------------------------------------------------------------------------------- /Projects/UI/Code Fun/code_fun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/UI/Code Fun/code_fun.py -------------------------------------------------------------------------------- /Projects/UI/Code Fun/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/UI/Code Fun/readme.md -------------------------------------------------------------------------------- /Projects/UI/Dragable Window/DragWindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/UI/Dragable Window/DragWindow.py -------------------------------------------------------------------------------- /Projects/UI/Dragable Window/DragWindow.pyui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/UI/Dragable Window/DragWindow.pyui -------------------------------------------------------------------------------- /Projects/UI/Dragable Window/readme.md: -------------------------------------------------------------------------------- 1 | A test for creating a draggable window. -------------------------------------------------------------------------------- /Projects/UI/File Reader UI/file_reader_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/UI/File Reader UI/file_reader_ui.py -------------------------------------------------------------------------------- /Projects/UI/File Reader UI/file_reader_ui.pyui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/UI/File Reader UI/file_reader_ui.pyui -------------------------------------------------------------------------------- /Projects/UI/File Reader UI/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/UI/File Reader UI/readme.md -------------------------------------------------------------------------------- /Projects/UI/File Reader UI/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/UI/File Reader UI/screenshot.png -------------------------------------------------------------------------------- /Projects/UI/MVC/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/UI/MVC/readme.md -------------------------------------------------------------------------------- /Projects/UI/MVC/root_view.pyui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/UI/MVC/root_view.pyui -------------------------------------------------------------------------------- /Projects/UI/MVC/view_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/UI/MVC/view_controller.py -------------------------------------------------------------------------------- /Projects/UI/My Drafts/Files/credits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/UI/My Drafts/Files/credits.txt -------------------------------------------------------------------------------- /Projects/UI/My Drafts/Files/data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/UI/My Drafts/Files/data.txt -------------------------------------------------------------------------------- /Projects/UI/My Drafts/Files/info.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Projects/UI/My Drafts/Views/docs.pyui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/UI/My Drafts/Views/docs.pyui -------------------------------------------------------------------------------- /Projects/UI/My Drafts/Views/main.pyui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/UI/My Drafts/Views/main.pyui -------------------------------------------------------------------------------- /Projects/UI/My Drafts/mydrafts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/UI/My Drafts/mydrafts.py -------------------------------------------------------------------------------- /Projects/UI/My Drafts/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/UI/My Drafts/readme.md -------------------------------------------------------------------------------- /Projects/UI/My Drafts/screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/UI/My Drafts/screen.png -------------------------------------------------------------------------------- /Projects/UI/Navigation Menu/Views/Backup.pyui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/UI/Navigation Menu/Views/Backup.pyui -------------------------------------------------------------------------------- /Projects/UI/Navigation Menu/Views/Export.pyui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/UI/Navigation Menu/Views/Export.pyui -------------------------------------------------------------------------------- /Projects/UI/Navigation Menu/Views/Import.pyui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/UI/Navigation Menu/Views/Import.pyui -------------------------------------------------------------------------------- /Projects/UI/Navigation Menu/Views/Logbook.pyui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/UI/Navigation Menu/Views/Logbook.pyui -------------------------------------------------------------------------------- /Projects/UI/Navigation Menu/main_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/UI/Navigation Menu/main_view.py -------------------------------------------------------------------------------- /Projects/UI/Navigation Menu/main_view.pyui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/UI/Navigation Menu/main_view.pyui -------------------------------------------------------------------------------- /Projects/UI/Navigation Menu/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/UI/Navigation Menu/readme.md -------------------------------------------------------------------------------- /Projects/UI/Navigation Menu/screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/UI/Navigation Menu/screen.png -------------------------------------------------------------------------------- /Projects/UI/Navigation View Tutorial/Files/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/UI/Navigation View Tutorial/Files/index.html -------------------------------------------------------------------------------- /Projects/UI/Navigation View Tutorial/Files/nav_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/UI/Navigation View Tutorial/Files/nav_test.py -------------------------------------------------------------------------------- /Projects/UI/Navigation View Tutorial/Files/tutorial.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/UI/Navigation View Tutorial/Files/tutorial.txt -------------------------------------------------------------------------------- /Projects/UI/Navigation View Tutorial/NavView Tutorial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/UI/Navigation View Tutorial/NavView Tutorial.py -------------------------------------------------------------------------------- /Projects/UI/Navigation View Tutorial/edit_view.pyui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/UI/Navigation View Tutorial/edit_view.pyui -------------------------------------------------------------------------------- /Projects/UI/Navigation View Tutorial/file_view.pyui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/UI/Navigation View Tutorial/file_view.pyui -------------------------------------------------------------------------------- /Projects/UI/Navigation View Tutorial/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/UI/Navigation View Tutorial/readme.md -------------------------------------------------------------------------------- /Projects/UI/Navigation View Tutorial/screen1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/UI/Navigation View Tutorial/screen1.png -------------------------------------------------------------------------------- /Projects/UI/Navigation View Tutorial/screen2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/UI/Navigation View Tutorial/screen2.png -------------------------------------------------------------------------------- /Projects/UI/Navigation View Tutorial/screen3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/UI/Navigation View Tutorial/screen3.png -------------------------------------------------------------------------------- /Projects/UI/Navigation View Tutorial/toolbar.pyui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/UI/Navigation View Tutorial/toolbar.pyui -------------------------------------------------------------------------------- /Projects/UI/Navigation View Tutorial/webview.pyui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/UI/Navigation View Tutorial/webview.pyui -------------------------------------------------------------------------------- /Projects/UI/Not So Dangerous Writing App/Views/game_over.pyui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/UI/Not So Dangerous Writing App/Views/game_over.pyui -------------------------------------------------------------------------------- /Projects/UI/Not So Dangerous Writing App/Views/main.pyui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/UI/Not So Dangerous Writing App/Views/main.pyui -------------------------------------------------------------------------------- /Projects/UI/Not So Dangerous Writing App/Views/menu.pyui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/UI/Not So Dangerous Writing App/Views/menu.pyui -------------------------------------------------------------------------------- /Projects/UI/Not So Dangerous Writing App/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/UI/Not So Dangerous Writing App/app.py -------------------------------------------------------------------------------- /Projects/UI/Not So Dangerous Writing App/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/UI/Not So Dangerous Writing App/readme.md -------------------------------------------------------------------------------- /Projects/UI/Not So Dangerous Writing App/screenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/UI/Not So Dangerous Writing App/screenshots/1.png -------------------------------------------------------------------------------- /Projects/UI/Not So Dangerous Writing App/screenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/UI/Not So Dangerous Writing App/screenshots/2.png -------------------------------------------------------------------------------- /Projects/UI/Not So Dangerous Writing App/screenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/UI/Not So Dangerous Writing App/screenshots/3.png -------------------------------------------------------------------------------- /Projects/UI/Not So Dangerous Writing App/screenshots/File_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/UI/Not So Dangerous Writing App/screenshots/File_003.png -------------------------------------------------------------------------------- /Projects/UI/Password Database/Data/passwords.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/UI/Password Database/Data/passwords.db -------------------------------------------------------------------------------- /Projects/UI/Password Database/Views/welcome.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | import ui 4 | 5 | v = ui.load_view() 6 | v.present('sheet') 7 | 8 | -------------------------------------------------------------------------------- /Projects/UI/Password Database/Views/welcome.pyui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/UI/Password Database/Views/welcome.pyui -------------------------------------------------------------------------------- /Projects/UI/Password Database/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/UI/Password Database/main.py -------------------------------------------------------------------------------- /Projects/UI/Password Database/readme.md: -------------------------------------------------------------------------------- 1 | SQL password database test example. 2 | 3 | ![](screen.png) 4 | -------------------------------------------------------------------------------- /Projects/UI/Password Database/screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/UI/Password Database/screen.png -------------------------------------------------------------------------------- /Projects/UI/Photo Gallery/Views/gallery.pyui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/UI/Photo Gallery/Views/gallery.pyui -------------------------------------------------------------------------------- /Projects/UI/Photo Gallery/photo_gallery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/UI/Photo Gallery/photo_gallery.py -------------------------------------------------------------------------------- /Projects/UI/Photo Gallery/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/UI/Photo Gallery/readme.md -------------------------------------------------------------------------------- /Projects/UI/Photo Gallery/screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/UI/Photo Gallery/screen.png -------------------------------------------------------------------------------- /Projects/UI/Photo Gallery/test 6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/UI/Photo Gallery/test 6.py -------------------------------------------------------------------------------- /Projects/UI/Photo Gallery/test1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/UI/Photo Gallery/test1.py -------------------------------------------------------------------------------- /Projects/UI/Photo Gallery/test2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/UI/Photo Gallery/test2.py -------------------------------------------------------------------------------- /Projects/UI/Photo Gallery/test3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/UI/Photo Gallery/test3.py -------------------------------------------------------------------------------- /Projects/UI/Photo Gallery/test4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/UI/Photo Gallery/test4.py -------------------------------------------------------------------------------- /Projects/UI/Photo Gallery/test5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/UI/Photo Gallery/test5.py -------------------------------------------------------------------------------- /Projects/UI/Quiz/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/UI/Quiz/app.py -------------------------------------------------------------------------------- /Projects/UI/Quiz/data/__init__.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Projects/UI/Quiz/data/test1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/UI/Quiz/data/test1.py -------------------------------------------------------------------------------- /Projects/UI/Quiz/images/screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/UI/Quiz/images/screen.png -------------------------------------------------------------------------------- /Projects/UI/Quiz/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/UI/Quiz/readme.md -------------------------------------------------------------------------------- /Projects/UI/Quiz/views/main.pyui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/UI/Quiz/views/main.pyui -------------------------------------------------------------------------------- /Projects/UI/Resizable Window/ResizeableWindow(wip).py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/UI/Resizable Window/ResizeableWindow(wip).py -------------------------------------------------------------------------------- /Projects/UI/Resizable Window/ResizeableWindow(wip).pyui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/UI/Resizable Window/ResizeableWindow(wip).pyui -------------------------------------------------------------------------------- /Projects/UI/Resizable Window/readme.md: -------------------------------------------------------------------------------- 1 | A test for creating a resizable window. -------------------------------------------------------------------------------- /Projects/UI/Save and Load/Files/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/UI/Save and Load/Files/intro.md -------------------------------------------------------------------------------- /Projects/UI/Save and Load/Files/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/UI/Save and Load/Files/test.txt -------------------------------------------------------------------------------- /Projects/UI/Save and Load/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/UI/Save and Load/readme.md -------------------------------------------------------------------------------- /Projects/UI/Save and Load/save_and_load.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/UI/Save and Load/save_and_load.py -------------------------------------------------------------------------------- /Projects/UI/Save and Load/save_and_load.pyui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/UI/Save and Load/save_and_load.pyui -------------------------------------------------------------------------------- /Projects/UI/Save and Load/screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/UI/Save and Load/screen.png -------------------------------------------------------------------------------- /Projects/UI/Split View Controller/detail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/UI/Split View Controller/detail.py -------------------------------------------------------------------------------- /Projects/UI/Split View Controller/detail.pyui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/UI/Split View Controller/detail.pyui -------------------------------------------------------------------------------- /Projects/UI/Split View Controller/master.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/UI/Split View Controller/master.py -------------------------------------------------------------------------------- /Projects/UI/Split View Controller/master.pyui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/UI/Split View Controller/master.pyui -------------------------------------------------------------------------------- /Projects/UI/Split View Controller/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/UI/Split View Controller/readme.md -------------------------------------------------------------------------------- /Projects/UI/Split View Controller/screen1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/UI/Split View Controller/screen1.png -------------------------------------------------------------------------------- /Projects/UI/Split View Controller/screen2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/UI/Split View Controller/screen2.png -------------------------------------------------------------------------------- /Projects/UI/Split View Controller/splitViewController.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/UI/Split View Controller/splitViewController.py -------------------------------------------------------------------------------- /Projects/UI/Tableview Tour/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/UI/Tableview Tour/readme.md -------------------------------------------------------------------------------- /Projects/UI/Tableview Tour/styler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/UI/Tableview Tour/styler.py -------------------------------------------------------------------------------- /Projects/UI/Tableview Tour/styler.pyui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/UI/Tableview Tour/styler.pyui -------------------------------------------------------------------------------- /Projects/UI/Tableview Tour/test.pyui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/UI/Tableview Tour/test.pyui -------------------------------------------------------------------------------- /Projects/UI/Tableview Tour/test2.pyui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/UI/Tableview Tour/test2.pyui -------------------------------------------------------------------------------- /Projects/UI/Tableview Tour/test3.pyui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/UI/Tableview Tour/test3.pyui -------------------------------------------------------------------------------- /Projects/UI/View Instancing/view_instancing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/UI/View Instancing/view_instancing.py -------------------------------------------------------------------------------- /Projects/UI/animated_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/UI/animated_view.py -------------------------------------------------------------------------------- /Projects/UI/ui_ux/iPad_envelopes.pyui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/UI/ui_ux/iPad_envelopes.pyui -------------------------------------------------------------------------------- /Projects/UI/ui_ux/iPad_infoPage.pyui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/UI/ui_ux/iPad_infoPage.pyui -------------------------------------------------------------------------------- /Projects/UI/ui_ux/iPhone_list.pyui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/UI/ui_ux/iPhone_list.pyui -------------------------------------------------------------------------------- /Projects/UI/ui_ux/ipad_codeEditor.pyui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/UI/ui_ux/ipad_codeEditor.pyui -------------------------------------------------------------------------------- /Projects/UI/ui_ux/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/UI/ui_ux/readme.md -------------------------------------------------------------------------------- /Projects/UI/ui_ux/screenshots/screen1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/UI/ui_ux/screenshots/screen1.png -------------------------------------------------------------------------------- /Projects/UI/ui_ux/screenshots/screen2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/UI/ui_ux/screenshots/screen2.png -------------------------------------------------------------------------------- /Projects/UI/ui_ux/screenshots/screen3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/UI/ui_ux/screenshots/screen3.png -------------------------------------------------------------------------------- /Projects/UI/ui_ux/ui_ux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/UI/ui_ux/ui_ux.py -------------------------------------------------------------------------------- /Projects/Utilities/Copy File.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/Utilities/Copy File.py -------------------------------------------------------------------------------- /Projects/Utilities/GithubGet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/Utilities/GithubGet.py -------------------------------------------------------------------------------- /Projects/Utilities/clip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/Utilities/clip.py -------------------------------------------------------------------------------- /Projects/Utilities/download_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/Utilities/download_file.py -------------------------------------------------------------------------------- /Projects/Utilities/lorem ipsum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/Utilities/lorem ipsum.py -------------------------------------------------------------------------------- /Projects/Utilities/readme.md: -------------------------------------------------------------------------------- 1 | Pythonista Utilities 2 | -------------------------------------------------------------------------------- /Projects/Utilities/readonly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/Utilities/readonly.py -------------------------------------------------------------------------------- /Projects/Utilities/writeable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/Projects/Utilities/writeable.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/README.md -------------------------------------------------------------------------------- /images/animated_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TutorialDoctor/Pythonista-Projects/HEAD/images/animated_view.png --------------------------------------------------------------------------------