omz:forum

    • Register
    • Login
    • Search
    • Recent
    • Popular
    1. Home
    2. oefe186

    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.


    • Profile
    • Following 0
    • Followers 0
    • Topics 1
    • Posts 24
    • Best 0
    • Controversial 0
    • Groups 0

    oefe186

    @oefe186

    0
    Reputation
    1084
    Profile views
    24
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    oefe186 Unfollow Follow

    Latest posts made by oefe186

    • RE: Bundle Identifier

      It should be in Reverse domain name notation. Do you own a domain? Then it's easy: just revert the order of the parts of the domain, than tack on a component that is specific for your app. E.g. If you would own example.com, you could use com.example.myapp for your app named "My App".

      If you don't have a domain, you wouldn't be able to submit the app to the App Store. But for your own personal use, the identifier should not matter much, as long as it is unique. I would probably use com.example.<my name>.<my app>

      posted in Pythonista
      oefe186
      oefe186
    • RE: Installing new modules with distutils fails

      @TheWizza, these manual steps are unnecessary.

      Using stash,

      pip install module_name
      

      is all you need. Pip does the searching, downloading and unzipping for you.

      Pip can also search for modules (if you don't know the exact name), update modules, install a specific version, and more. as with any stash command, you can use

      pip -h
      

      or

      man pip
      

      to learn about pip's capabilities.

      posted in Pythonista
      oefe186
      oefe186
    • RE: StaSh - Shell Like an Expert in Pythonista

      @brumm works for me. Probably you edited bin/find.py by accident. The original is 147 lines long, but the error message refers to line 148..,

      posted in Pythonista
      oefe186
      oefe186
    • RE: StaSh updates - Unified I/O UI, external keyboard support and more

      To download a single file, use wget. Use the -o option to specify the destination file name, otherwise it will download to the clipboard:

      wget http://www.example.com/path/to/file -o file.py
      
      
      posted in Pythonista
      oefe186
      oefe186
    • RE: pythonista-homescreen-icon: Customizable icons for your scripts

      Cool!

      At First, I was wondering which of the .py files to use for the action menu (it's chooseicon.py). Maybe you should add this to the readme.

      posted in Pythonista
      oefe186
      oefe186
    • RE: git repo manager

      @Des: I had exactly the same problem, see above. Just force-quit and restart Pythonista

      posted in Pythonista
      oefe186
      oefe186
    • RE: git repo manager

      Item 1 might be a Pythonista issue. Seems that it gets confused if you update code outside of the editor

      Item 2 works now like a charm. Thanks!

      posted in Pythonista
      oefe186
      oefe186
    • RE: git repo manager

      Hi Jon,

      Very cool! Finally I can review my changes before committing them!

      I noticed a couple of bugs:

      • the first time I tried to run it (after running install_gitview), it failed with an ImportError for the drop down module. Had to restart Pythonista to get it working
      • when trying to push something (to my github repo) it prompts for credentials and Pythonista freezes.
      posted in Pythonista
      oefe186
      oefe186
    • RE: Python benchmarking

      iPad 4th generation, Pythonista 1.5: 23446.4 pystones/second

      posted in Pythonista
      oefe186
      oefe186
    • RE: Get a list of all keys in Pythonista's keychain?

      Another app might not be able to read Pythonista's keychain, but any script within Pythonista can.

      So if you download and run untrusted scripts, and have valuable passwords in Pythonista, it might be a good idea to use a master password.

      posted in Pythonista
      oefe186
      oefe186