-
-
Notifications
You must be signed in to change notification settings - Fork 794
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed 1 site, PyInstaller workflow, Google Colab example (#1558)
* Updated example colab file (Due to latest update) * Fix RobertsSpaceIndustries URI * Fix PyInstaller workflow * Fix example.ipynb (read desc.) Currently the version installed via pip3 doesn't appear to contain the latest data.json file, resulting in many false positives.. * Fix non-existant users (read desc.) Fixed non-existant usernames for the following: Telegram (t.me) TikBuddy (tikbuddy.com) FurAffinity (furaffinity.net)
- Loading branch information
Showing
3 changed files
with
45 additions
and
70 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,68 +1,43 @@ | ||
{ | ||
"cells": [ | ||
{ | ||
"cell_type": "code", | ||
"execution_count": null, | ||
"metadata": { | ||
"id": "8v6PEfyXb0Gx" | ||
}, | ||
"outputs": [], | ||
"source": [ | ||
"# clone the repo\n", | ||
"!git clone https://github.com/soxoj/maigret\n", | ||
"!pip3 install -r maigret/requirements.txt" | ||
] | ||
"nbformat": 4, | ||
"nbformat_minor": 0, | ||
"metadata": { | ||
"colab": { | ||
"provenance": [] | ||
}, | ||
"kernelspec": { | ||
"name": "python3", | ||
"display_name": "Python 3" | ||
}, | ||
"language_info": { | ||
"name": "python" | ||
} | ||
}, | ||
{ | ||
"cell_type": "code", | ||
"execution_count": null, | ||
"metadata": { | ||
"id": "cXOQUAhDchkl" | ||
}, | ||
"outputs": [], | ||
"source": [ | ||
"# help\n", | ||
"!python3 maigret/maigret.py --help" | ||
] | ||
}, | ||
{ | ||
"cell_type": "code", | ||
"execution_count": null, | ||
"metadata": { | ||
"id": "SjDmpN4QGnJu" | ||
}, | ||
"outputs": [], | ||
"source": [ | ||
"# search\n", | ||
"!python3 maigret/maigret.py user" | ||
] | ||
} | ||
], | ||
"metadata": { | ||
"colab": { | ||
"collapsed_sections": [], | ||
"include_colab_link": true, | ||
"name": "maigret.ipynb", | ||
"provenance": [] | ||
}, | ||
"kernelspec": { | ||
"display_name": "Python 3", | ||
"language": "python", | ||
"name": "python3" | ||
}, | ||
"language_info": { | ||
"codemirror_mode": { | ||
"name": "ipython", | ||
"version": 3 | ||
}, | ||
"file_extension": ".py", | ||
"mimetype": "text/x-python", | ||
"name": "python", | ||
"nbconvert_exporter": "python", | ||
"pygments_lexer": "ipython3", | ||
"version": "3.7.10" | ||
} | ||
}, | ||
"nbformat": 4, | ||
"nbformat_minor": 1 | ||
"cells": [ | ||
{ | ||
"cell_type": "code", | ||
"execution_count": null, | ||
"metadata": { | ||
"id": "acxNWJOUmLc4" | ||
}, | ||
"outputs": [], | ||
"source": [ | ||
"!git clone https://github.com/soxoj/maigret\n", | ||
"!pip3 install ./maigret/\n", | ||
"from IPython.display import clear_output\n", | ||
"clear_output()\n", | ||
"username = str(input(\"Username >> \"))\n", | ||
"!maigret {username} -a -n 10" | ||
] | ||
}, | ||
{ | ||
"cell_type": "code", | ||
"source": [], | ||
"metadata": { | ||
"id": "S3SmapMHmOoD" | ||
}, | ||
"execution_count": null, | ||
"outputs": [] | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters