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.


    Sync to Dropbox

    Pythonista
    13
    31
    29041
    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 @JonB last edited by Dangthrimble

      @JonB I killed and restarted Pythonista and got:

      >>> import requests
      /private/var/mobile/Containers/Shared/AppGroup/77E4F4DB-EDA3-49C3-8AAD-D4452754B812/Pythonista3/Documents/site-packages/requests/__init__.py:80: RequestsDependencyWarning: urllib3 (1.4) or chardet (3.0.4) doesn't match a supported version!
        RequestsDependencyWarning)
      Traceback (most recent call last):
        File "<string>", line 1, in <module>
        File "/private/var/mobile/Containers/Shared/AppGroup/77E4F4DB-EDA3-49C3-8AAD-D4452754B812/Pythonista3/Documents/site-packages/requests/__init__.py", line 90, in <module>
          from urllib3.exceptions import DependencyWarning
      ImportError: cannot import name 'DependencyWarning'
      

      Did some more digging and found that StaSh had installed urllib3 version 1.4 whereas the latest version is 1.22. Fortunately I am still at the beginning of my journey with Pythonista so I have deleted and reinstalled it. I will try again.

      HerniaChair 1 Reply Last reply Reply Quote 0
      • Dangthrimble
        Dangthrimble last edited by Dangthrimble

        There is a problem with the way StaSh pip handles installing minimum versions. I have raised an issue on GitHub (see Pip installed wrong version of urllib3). To get round the problem, check the latest version of the package you are trying to install using PyPI - the Python Package Index and install that version using:

        pip install [-d <directory>] <package>==<version>
        

        And if a package gets installed as a dependency for another, check its version and if it is wrong perform a pip remove and install the correct version.

        I am documenting exactly how I am getting this to work and, once it does, I will post it on this forum.

        1 Reply Last reply Reply Quote 0
        • HerniaChair
          HerniaChair @Dangthrimble last edited by

          @Dangthrimble

          I have the same issue as you, but when I tried to install/update/ remove requests, I get the same issue:

          StaSh v0.6.20
          Tip: You can redirect output to Pythonista console, e.g. ls > &3
          [~/Documents]$ pip install requests
          /private/var/mobile/Containers/Shared/AppGroup/8D798770-A6EB-4040-9568-3BCBFB1CF8E8/Documents/site-packages/requests/__init__.py:80: RequestsDependencyWarning: urllib3 (1.4) or chardet (3.0.4) doesn't match a supported version!
            RequestsDependencyWarning)
          stash: <type 'exceptions.ImportError'>: cannot import name DependencyWarning
          

          Is there a way to fix the requests module without deleting Pythonista altogether?

          Dangthrimble 1 Reply Last reply Reply Quote 0
          • Dangthrimble
            Dangthrimble @HerniaChair last edited by Dangthrimble

            @HerniaChair I'm not an expert and so I don't know if it will work, but you could try deleting the requests folder in site-packages and close down and restart Pythonista

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

              Yes, remove requests from site packages, then follow the instructions on the other thread.

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

                I’m having exactly this problem and cannot even uninstall the package with pip (I keep getting the same error).

                Can someone point me to the “other thread” that is mentioned in this post? Nothing in this post seems to hint at how to get rid of the offending package. Can I do it manually?

                Thanks for any help.

                Heather

                heatherdrury 1 Reply Last reply Reply Quote 0
                • heatherdrury
                  heatherdrury @heatherdrury last edited by

                  @heatherdrury
                  I have to say that Pythonista is an awesome program that has been a huge help to me in working on planes, etc.

                  Probably bad form to answer my own post, but I ended up deleting the package directories (/site/packages/urllib3 and /site/packages/requests). This let me run pip and “uninstall” the packages correctly.

                  Now I’m trying to get back to the original task to figure out what I need to download latest Dropbox API, resolve this dependency issue with urllib3, and get Synronator.py to run so I can backup the many python programs I’ve written in Pythonista.

                  If anyone has more details on these steps, I’d appreciate it.

                  Heather

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

                    This thread was very helpful to me with resolving the issue with the outdated version of the Requests module. Thanks.

                    Now that the Synchronator script is running, I am wondering: Is there an ignore list? I would prefer not be syncing site-packages.

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

                      Hmm I should also comment that I'm having to run synchronator repeatedly. I keep getting a LookupError('malformed_path', None). It appears to be related to the fact that the dropbox contains filenames starting with '.' (uploaded by DropboxSync) that Synchronator doesn't consider valid to sync (based on the valid_filename_for_upload function).

                      I think that my sync may be completely fubar'd due to the remnants left over from DropboxSync, but I'm afraid if I empty out the app folder and resync, it's probably going to try to empty and delete the site-packages folder.

                      EDIT: I ended up deleting the old app and creating a new one, and clearing out all the state files and token. Hopefully that'll resolve the issues with existing files from DropboxSync and previously-crashed Synchronator instances.

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

                        Alternate solution without using API's
                        I was also looking for something similar and thought it shouldn't be that difficult or time taking. That's when I came across "Shortcuts" app which I use for lot of other workflows.

                        I managed to get it done with 2 simple steps which is already available in iPad or iOs :

                        1. Create a shortcut app
                        2. From Pythonista on the right corner top click on share and select "Shortcuts" and your created shortcut.

                        ( File is now received in your dropbox )

                        To create workflow in Shortcuts
                        a. Search for "Get Text from Input" and drag the same to your workflow.
                        b. Search for "Save File" and select "Service" as "Dropbox" (Note : You'll be asked to login to your dropbox once)

                        That's it. Worked for me like charm.
                        iPad version : 12.4

                        P.S. This is only for those lookng for just syncing the files to dropbox from Phythonista not caring about using dropbox apis.

                        cvp 1 Reply Last reply Reply Quote 1
                        • cvp
                          cvp @timmymathew last edited by cvp

                          @timmymathew If you want to send your file to Shortcuts app, there is a quicker way.
                          Actually, you tap on Tools, Share, Shortcuts, your shortcut.
                          With this way, you tap Tools, "Share to shortcut" (or the text you want, of course)

                          You have to do, once,

                          1. your shortcut, named here, My_shortcut, containing only:
                            Get Clipboard
                            Save file.....as yours shortcut
                          2. create the little script here-under and add it to Tools
                            That's all, folks
                          import clipboard
                          import editor
                          import webbrowser
                          t = editor.get_text()
                          clipboard.set(t)
                          url = 'shortcuts://run-shortcut?name=My_shortcut&input=clipboard'
                          webbrowser.open(url)
                          

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