├── .github └── workflows │ └── codeql-analysis.yml ├── .gitignore ├── .pylintrc ├── LICENSE ├── README.md ├── grablinks.py └── requirements.txt /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-real-tokai/grablinks/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-real-tokai/grablinks/HEAD/.pylintrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-real-tokai/grablinks/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-real-tokai/grablinks/HEAD/README.md -------------------------------------------------------------------------------- /grablinks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-real-tokai/grablinks/HEAD/grablinks.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests>=2 2 | beautifulsoup4>=4 --------------------------------------------------------------------------------