omz:forum

    • Register
    • Login
    • Search
    • Recent
    • Popular

    Welcome!

    This is the community forum for my apps Pythonista and Editorial.

    For individual support questions, you can also send an email. If you have a very short question or just want to say hello — I'm @olemoritz on Twitter.


    Getting Up To Speed With Pythonista

    Pythonista
    3
    3
    5282
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • Dangthrimble
      Dangthrimble last edited by

      Getting Up To Speed With Pythonista

      October 2017

      Introduction

      I am a Systems Engineer with 20+ years experience as a Software Engineer (I have discounted my last 15 years as a Systems Engineer as I have had little opportunity to write any software).

      I recently found myself needing (or wanting!) to write some code to simplify a task I was undertaking for the choir of which I am a member and, despite previously learning Ruby, chose to learn Python. I used SoloLearn’s Learn to Code with Python iOS app to introduce me to the language and subsequently used Exercism to start developing my Python skills. I hosted the Exercism exercises within Dropbox so I could work on them both at home and during my work lunchbreaks.

      However, that wasn’t enough and I decided I wanted to be able to code on the go, using my iPhone or iPad when nothing else was available. For that I needed a decent code editor and chose Pythonista based on its review ratings, integration with Dropbox, etc.

      On paying my dues, I discovered the integration was of the self-help variety where the user had to download and install Python scripts. The questions then were which scripts and how do you download and install them?

      The Pythonista Community Forum

      The Pythonista Community Forum is one place to ask questions. It provides answers, often without you having to ask your questions as others have been there before you. However there are a lot of topics and it doesn’t always seem easy to find the right ones or to pick the ones with the best answers.

      Installing Python Scripts and Packages

      Now I might be being dense and rather lazy, but to the uninitiated it doesn’t feel very intuitive when you are first trying to install scripts and packages. So, just in case there are others out there who want more power to their Pythonista elbow but feel at a loss as to how to get it, I thought I would document how I got going.

      Really what I wanted was to be able to sync the development of my Python scripts between iPhone, iPad and PC. For me the obvious solution was to use Dropbox. By digging around I found a number of scripts that worked with Dropbox but at the time of writing I could only find two that worked with the new Dropbox API v2, and only one of them actually promised to sync Dropbox files rather than just import them: Mark Hamilton’s Synchronator. It comes with instructions but they include references to Stash and the Dropbox Python package. So below is how I got the Synchronator working.

      StaSh

      Installing Stash

      StaSh stands for Pythonista Shell and is a serious attempt to implement a Bash-like shell for Pythonista.

      That’s nice, but why do I need it? Well, probably for a number of reasons but in this instance to provide access to the Python package manager pip to ensure the latest version of the dropbox Python package is installed. pip can be run from within Pythonista without installing StaSh (see Installing Python Modules), but StaSh has so many other useful features it seems to get recommended quite regularly in Pythonista Community Forum topics.

      To install StaSh from within Pythonista, swipe left to show the console panel, paste at the ‘>’ prompt at the bottom of the screen the one line Python command provided in the StaSh README.md on GitHub and press return. Currently that command is:

      import requests as r; exec(r.get('http://bit.ly/get-stash').text)
      

      Running StaSh

      Once StaSh is installed, restart Pythonista, tap ≡ to reveal the library pane and tap on launch_stash.py. This will load the file into the middle editor pane. Tap ▷ to run the script. This will take you to the console pane where StaSh will be running and you should see the [~/Documents]$ prompt.

      Updating StaSh

      If you haven’t just installed StaSh, it is worth ensuring it is up-to-date. This can be achieved from within StaSh with the selfupdate command.

      Packages

      Pythonista Packages

      Pythonista comes with a number of Python packages already installed as Pythonista Modules. These can be found in the library pane under Modules & Templates/Standard Library (2.7) and Modules & Templates/Standard Library (3.5). However, performing a pip update from StaSh will not work. Further, the Modules and Templates folder is not visible from within StaSh, so I can only assume it is installed as part of Pythonista and not something the user can modify. Consequently a pip install is required.

      Along with the Standard Library* folders, the Modules and Templates folder includes three site-packages* folders. The site-packages folder is included in the default import path of both Python interpreters (2.7 and 3.5), so that you can put reusable modules there. The site-packages-2 and site-packages-3 folders are for modules that are not compatible with both Python versions. It is worth noting that site packages will not be reloaded automatically when you run a script. This is different from modules in other user directories, so you should typically only put modules here that you don’t intend to change, presumably including packages.

      Installing Packages with StaSh

      By default StaSh does not appear to put packages in any of the site-packages folders. Maybe that is by design, but I think I would rather I could find them easily. Consequently I have chosen to direct the installation using the pip install -d <DIRECTORY> <PACKAGE> option. The next question is which folder to use. The dropbox package is compatible with Python 2.7 and 3.4+ so it would make sense to install it in site-packages, though if you were only ever going to use one version of Python it could be installed in one of the other two folders.

      Installing the Latest Version of the Dropbox Package

      After an initial abortive attempt, I have been advised a number of packages need to be updated in order to get Synchronator working, not just the dropbox package. These are:

      • certifi
      • chardet
      • dropbox
      • idna
      • requests
      • urllib3

      These are all compatible wih Python 2 and 3, and can therefore be installed to site-packages from the StaSh prompt. However there currently appears to be an issue with StaSh’s implementation of pip that can cause it to install the wrong versions of packages. Therefore I suggest you use the links above to identify the current versions of each and specify the version as follows:

      pip install -d ~/Documents/site-packages <package>==<version>
      

      In order to install the latest versions available at the time of writing use the following commands in the order specified:

      pip install -d ~/Documents/site-packages chardet==3.0.4
      pip install -d ~/Documents/site-packages dropbox==8.4.0
      pip install -d ~/Documents/site-packages idna==2.6
      pip install -d ~/Documents/site-packages certifi==2017.7.27.1
      pip install -d ~/Documents/site-packages urllib3==1.22
      pip install -d ~/Documents/site-packages requests==2.18.4
      

      Synchronator

      Installing Synchronator

      So now we can follow the Synchronator installation instructions provided on GitHub. It is worth noting I tried using the Clone iOS App and found quotation marks and inverted commas were being changed by the App which corrupted the Python scripts. I have reported the issue but in the meantime have found the iOctocat Git repository client for iOS works fine as a replacement. The current instructions are:

      1. Inside [a suitable git client] that is able to access [the markhamilton1/Synchronator] GitHub project, I select and copy the entire contents of the file DropboxSetup.py.
      • Switch to Pythonista and create a new Python file.
      • Paste the contents of DropboxSetup.py into the new Python file.
      • Change the name of the new file to DropboxSetup.py.
      • Switch back to [the git client] and select the Synchronator.py file and copy the entire contents of it.
      • Switch to Pythonista and create a new Python file.
      • Paste the contents of Synchronator.py into the new Python file.
      • Change the name of the new file to Synchronator.py.
      • Go to the Dropbox Developers Page.
      • Create an App using the Dropbox API (NOT the Dropbox Business API).
      • Select the App Folder option.
      • Enter the name of your “App”. I suggest something like “Synchronator-JohnDoe”. Your App name MUST be unique.
      • Select the Create App button. This will take you to the App Properties page.
      • Find the property “Generated Access Token” and select the Generate button.
      • Select and copy the generated Access Token to the clipboard.
      • Switch back to Pythonista and execute Synchronator.py in Pythonista on your iOS device.
      • Paste the Access Token at the prompt and hit enter.

      At this point Synchronator will download the files from your App Folder on Dropbox (which is presumably empty) and then upload to your App Folder any scripts that you may have in Pythonista.

      Works for me!

      1 Reply Last reply Reply Quote 0
      • JonB
        JonB last edited by

        FWIW, stash pip installs to site-packages by default... however site-packages is not shown in the normal place in the file browser, which mighr be confusing.. It is instead shown in Modules & Templates. There are actually three - site-packages, as well as site-packages-2 and site-packages-3, to alllow for different packages to be installed for python 2.7 vs 3, if needed.

        1 Reply Last reply Reply Quote 0
        • Grun6
          Grun6 last edited by

          Thank you for documenting the steps and your process. I went through similar attempts and find your explanations very clear.

          Note to omz, correct me if I am wrong, but there should be easy integration with WorkingCopy in the next version of Pythonista. That should facilitate working with Git repositories from Pythonista (and consequently syncing, versioning, etc...). Do we have an idea/target for the new Pythonista version release?

          1 Reply Last reply Reply Quote 0
          • First post
            Last post
          Powered by NodeBB Forums | Contributors