[go: up one dir, main page]

Skip to content

Open Any Url/File in the default App / WebBrowser - based on nim std/browsers

License

MIT, MIT licenses found

Licenses found

MIT
LICENSE
MIT
LICENSE.txt
Notifications You must be signed in to change notification settings

foxoman/openurl

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

openurl

  _                   _
 / \ ._   _  ._  | | |_) |
 \_/ |_) (/_ | | |_| | \ |_
     |            @FOXOMAN

Open Any Url/File in the default App / WebBrowser Sultan Al Isaee ~ foxoman @2022

See MIT LICENSE.txt for details of the license.

Support for MacOS, Windows, Haiku, android/termux, Unix/Linux.

Install

nimble install openurl

API

openurl(PATH) PATH can be a file/folder url or a website or even empty to open blank page in a browser.

  • use raw string for file/folder path ie: openurl(r"c:\dev\folder")
  • url for a website should start with http or https
  • compile with -d:droid to have support for android activity,in termux no need to do that as unix open is supported.

Example

import openurl

when isMainModule:
 echo """
 _                   _
/ \ ._   _  ._  | | |_) |
\_/ |_) (/_ | | |_| | \ |_
    |            @FOXOMAN
"""

 if paramCount() > 0:
   echo "[✔] Open: $1" % [prepare paramStr(1)]
   openUrl(paramStr(1))
 else:
   echo "[✖] No URL input, a blank page will open."
   openUrl()

About

Open Any Url/File in the default App / WebBrowser - based on nim std/browsers

Topics

Resources

License

MIT, MIT licenses found

Licenses found

MIT
LICENSE
MIT
LICENSE.txt

Stars

Watchers

Forks

Languages