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.


    Feature Requests

    Pythonista
    37
    76
    73075
    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.
    • C0deH4cker
      C0deH4cker last edited by

      Actually, i mean a script that gets run whenever you run a script, such as the site module in normal python.

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

        I second the background running feature.

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

          It would be nice if the editor module could expose the editor settings (at least for read, if not read/write), perhaps presented as a dictionary.

          Specifically, at the moment, I'm interested in being able to inspect the 'Tab Width' setting in order to cleanly incorporate a tabify/untabify action script.

          Many thanks to you, omz, for building this app and continuing to improve it.

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

            @tahoma
            I made this Macros.py script that I use for Pythonista. Maybe this will be helpful to you:
            https://gist.github.com/3ae7811f06caabba80c9

            I have a separate script for each that basically just does:
            <pre>
            from Macros import function

            function()
            </pre>

            Except one of them, Spaces To Tabs, is this:
            https://gist.github.com/60088a8513acaa99fd59

            So this might be what youre looking for. If not, I'm sure that this will be helpful to someone.

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

              I'd love to see kivy on ipad or at least pygame, then pythonista could compete with codea.

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

                @kamek - Unfortunately, because kivy is LGPL, it's very difficult to use it with an iOS app. The way the licensing of LGPL is intended to work, you either need to a.) be able to freely re-link newer/different versions of the LGPL licensed library into your app, or b.) provide the source of your application that uses the library so people can re-compile it themselves.

                Obviously, as a private developer, omz is unlikely to be willing to release the source code of Pythonista as it's making him money. This means choice b. is not happening.

                As for choice a., iOS apps submitted to the App Store are static applications compiled as a single monolithic executable. There is no ability for a third-party to 're-link' a newer/different version of kivy into such an application without the original .o object files and/or .a static library files (which omz would have to provide - and is again very unlikely).

                The only app that I've seen on the iOS App Store claimed to use kivy is ProcessCraft. The other one mentioned (Defletouch) seems to have been removed. And if ProcessCraft is using kivy, they are <b>100% in violation</b> because they don't provide the source / comply with kivy's LGPL license.

                As for pygame, that's a really complex library built on several other technologies that would be pretty hard for a single person to port over/adapt to iOS.

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

                  My wish list:

                  • Allow scripts to run in the background, even for a limited time

                  • iCloud file sync (I get the Dropbox problem, but iCloud should limit it to just between Pythonista installs on multiple devices) versioning would be nice, but that can be worked around

                  • Settings option for spaces instead of tabs for indents (this has been driving me crazy with errors in the editor and with Gist posts) and/or a Settings option to show whitespace characters in the editor

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

                    Scripts will be able to run in the background for up to 10 minutes with the next update. Yes, it is kind of fascinating to open a localhost URL in Mobile Safari ;). This will also enable some other pretty interesting use cases, e.g. scripts that watch the clipboard while you're working in a different app...

                    As for iCloud sync, I'm pretty sure this wouldn't be approved by Apple; they don't even allow iTunes file sharing for executable code...

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

                      Thanks for the update! That will be great to have scripts run in the background, and I understand the file syncing issue. Maybe Apple will relax eventually.

                      Is there any hope with the spaces vs tabs? I'm still learning Python, but from what I gather, spaces vs tabs is a bit of a hot topic. PEP 8 strongly recommends spaces only for indents in new projects, though there are arguments from both sides. Options would be nice.

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

                        I know that tabs-vs-spaces is an issue, especially with pasted code etc. I'm aware of PEP8 but still personally prefer tabs (but I don't want to start a debate here)...

                        Eventually, there will probably be some sort of setting for this, though I'm not sure about some implementation details yet (e.g. what to do when a file is opened that uses a different tab setting...). I would also have to make some changes to the text rendering (making tabs visible when spaces are selected) so it's really not a trivial feature... To sum it up, this probably won't be in the next update, but it's definitely on my radar and that update won't be the last one. ;)

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

                          Thanks again. In the meantime, we can write conversion scripts and, BTW, I will be posting a new project soon that does just that sort of thing.

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

                            Thanks for the app, it rocks! I have a small request. It would be nice if multi-line docstrings were properly highlighted in the editor :)

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

                              Folders! It would be great to be able to organize all the python scripts in multiple folders. Having all the python scripts cluttered in one big list makes it very unwieldy to work with large, multiple modules.

                              Also tabbed pane viewing to easily switch between modules.

                              btw. The app does rock. Great job, thanks.

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

                                @omz: I know there is somehow a 10 minute limit in the os, and 10 minutes is fine, but some apps (ie pandora) can run presumably forever in the background. Do you know how it does that?

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

                                  @C0deH4cker It's because they are playing music, there's an exception for that.

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

                                    hi,

                                    i would really appreciate numpy or scipy? would be worth some bucks :)

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

                                      @omz Then add the ability for scripts to play music like that. Then, people could play silence and have it running forever lol.

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

                                        @C0deH4cker - Unless the primary purpose of your app is music playback, Apple is <b>extremely</b> displeased if you attempt this kind of 'loophole'.

                                        The same goes for the other flags that allow permanent backgrounding: GPS, VoIP, etc.

                                        Good way to get your app immediately yanked / over-analyzed by Apple for any other slight infraction they might not have noticed before.

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

                                          Extraordinary app... Thank you so much for making it! I have some really minor wishes (along with a more major one). I use pythonista mostly at the interactive prompt, and would love an option for the app to open there directly, rather than having to wait for it to load and then swipe across. Also, could you implement a menu for reloading a script as a module into the interpreter (or alternatively executing them)?

                                          The more major one is numpy/scipy/matplotlib. I understand this is probably too big a task though! I wonder if a port of some of matplotlib's basic functionality would be possible using the canvas stuff?

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

                                            Yeah I would like to see matplotlib included into Pythonista in the future. I've used it plenty in the past and it was very nifty.

                                            Access to more of the iPad/iPhone's camera, mic, GPS services, etc would also be nice.

                                            Finally I would LOVE to see a free Pythonista app that lets people run codes that are submitted onto a server from -paid- app subscribers. So if I bought the app, I could upload my projects and someone who has the free app could then view the app in their free version. I'm not sure this is possible due to Apple's store limitations. But something along these lines would be great.

                                            Keep up the good work! I can't wait for my Logitech keyboard so I can really utilize this app to it's potential (that touch screen kills)

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