gusmobile

python gemini client library
git clone https://git.clttr.info/gusmobile.git
Log (Feed) | Files | Refs (Tags) | README | LICENSE

README.md (532B)


      1 # gusmobile
      2 
      3 This is a client library for the Gemini protocol. It is intended to provide a
      4 programming interface that will be familiar to the users of the `requests'
      5 library, though much simpler.
      6 
      7 It is largely extracted from the code of [AV-98](https://tildegit.org/solderpunk/AV-98), the command-line Gemini client by solderpunk, the initiator of the Gemini protocol project.
      8 
      9 ## requirements
     10 - Python >= 3.10
     11 
     12 ## usage
     13 
     14 ```
     15 import gusmobile
     16 
     17 url = "gemini://geminispace.info"
     18 
     19 response = gusmobile.fetch(url)
     20 print response
     21 ```
     22