omz:forum

    • Register
    • Login
    • Search
    • Recent
    • Popular
    1. Home
    2. ChrisHare
    3. Topics

    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 3
    • Posts 5
    • Best 0
    • Controversial 0
    • Groups 0

    Topics created by ChrisHare

    • ChrisHare

      Access image file from ios share sheet to get file size (and possibly change it)
      Pythonista • • ChrisHare

      2
      0
      Votes
      2
      Posts
      1458
      Views

      cvp

      @ChrisHare this script does exactly what you want

      import appex ui_image = appex.get_image(image_type='ui') print(ui_image.size)

      In Photos, you

      select one tap share button tap "run Pythonista script" tap "edit scripts" choose this script tap the run button

      Of course, if you want to use frequently, you can add it to the Pythonista share scripts

    • ChrisHare

      Converting tkinter app to Pythonista UI
      Pythonista • • ChrisHare

      7
      0
      Votes
      7
      Posts
      3281
      Views

      ccc

      Even better to rename .pyui file to .json because that is what it is.

    • ChrisHare

      Using modules not included in Pythonista
      Pythonista • • ChrisHare

      5
      0
      Votes
      5
      Posts
      3120
      Views

      mikael

      @ChrisHare, just import with the file’s name without the .py extension, but note that your file name must fit Python syntax (import my_module works, but import my-module will not).