Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,13 @@ page with an interesting URL, you can click the bookmarklet and see the URL "unf

After Unfurl is installed, you can run use it via the web app or command-line:

1. Run `python unfurl_app.py`
1. Run `unfurl_app`
1. Browse to localhost:5000/ (editable via config file)
1. Enter the URL to unfurl in the form, and 'Unfurl!'

OR

1. Run `python unfurl_cli.py https://twitter.com/_RyanBenson/status/1205161015177961473`
1. Run `unfurl https://twitter.com/_RyanBenson/status/1205161015177961473`
1. Output:
```
[1] https://twitter.com/_RyanBenson/status/1205161015177961473
Expand All @@ -59,9 +59,9 @@ OR
```

If the URL has special characters (like "&") that your shell might interpret as a command, put the URL in quotes.
Example: `python unfurl_cli.py "https://www.google.com/search?&ei=yTLGXeyKN_2y0PEP2smVuAg&q=dfir.blog&oq=dfir.blog&ved=0ahUKEwisk-WjmNzlAhV9GTQIHdpkBYcQ4dUDCAg"`
Example: `unfurl "https://www.google.com/search?&ei=yTLGXeyKN_2y0PEP2smVuAg&q=dfir.blog&oq=dfir.blog&ved=0ahUKEwisk-WjmNzlAhV9GTQIHdpkBYcQ4dUDCAg"`

`unfurl_cli` has a number of command line options to modify its behavior:
`unfurl` has a number of command line options to modify its behavior:
```
optional arguments:
-h, --help show this help message and exit
Expand Down
2 changes: 1 addition & 1 deletion unfurl/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# limitations under the License.

__author__ = "Ryan Benson"
__version__ = "20250312"
__version__ = "20250810"
__email__ = "[email protected]"

import logging
Expand Down
Loading