🤖Have you ever tried Chat.M5Stack.com before asking??😎
    M5Stack Community
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Register
    • Login

    [MicroPython] Add urllib.parse to base firmware to enable web services

    Scheduled Pinned Locked Moved Features Wish List
    2 Posts 1 Posters 7.1k Views 1 Watching
    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.
    • M Offline
      mb
      last edited by

      I am currently playing around with some web services and libraries, it mostly fails because most of those MicroPython programs require urllib.parse to be installed, mostly for urlencode().

      It would be great to get urllib.parse and its dependencies into the base firmware image.

      Cheers
      Mike

      1 Reply Last reply Reply Quote 0
      • M Offline
        mb
        last edited by mb

        Adding upip to the firmware image would make developer's live much easier.

        How to manually install the urllib.parse library.

        Create folder /upip and add files upip.py and upip_utarfile.py manually.

        Install the library with upip:

        %cd /flash/upip
        import upip
        upip.install("micropython-urllib.parse", "/flash/lib")
        

        To get it working, remove re.py and ffilib.py from lib. Hat-tip to Andreas.

        Finally you can encode URL parameters for GET requests:

        %cd /flash/lib
        import urllib.parse
        urllib.parse.urlencode({"a":1, "b": 2})
        
        => 'a=1&b=2'
        
        1 Reply Last reply Reply Quote 1

        Hello! It looks like you're interested in this conversation, but you don't have an account yet.

        Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.

        With your input, this post could be even better 💗

        Register Login
        • First post
          Last post