├── .gitignore ├── LICENSE ├── README.md ├── requirements.txt └── script.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techcentaur/PyLex/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techcentaur/PyLex/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techcentaur/PyLex/HEAD/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests 2 | argparse 3 | bs4 4 | click 5 | lxml 6 | -------------------------------------------------------------------------------- /script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techcentaur/PyLex/HEAD/script.py --------------------------------------------------------------------------------