Python Web Scraping Snippets
🌐 Collection of Sublime Text snippets for web scraping in Python
Details
Installs
- Total 710
- Win 452
- Mac 86
- Linux 172
Nov 21 | Nov 20 | Nov 19 | Nov 18 | Nov 17 | Nov 16 | Nov 15 | Nov 14 | Nov 13 | Nov 12 | Nov 11 | Nov 10 | Nov 9 | Nov 8 | Nov 7 | Nov 6 | Nov 5 | Nov 4 | Nov 3 | Nov 2 | Nov 1 | Oct 31 | Oct 30 | Oct 29 | Oct 28 | Oct 27 | Oct 26 | Oct 25 | Oct 24 | Oct 23 | Oct 22 | Oct 21 | Oct 20 | Oct 19 | Oct 18 | Oct 17 | Oct 16 | Oct 15 | Oct 14 | Oct 13 | Oct 12 | Oct 11 | Oct 10 | Oct 9 | Oct 8 | Oct 7 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 2 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 2 | 1 | 3 |
Mac | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Linux | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 |
Readme
- Source
- raw.githubusercontent.com
🌐 Python Web Scraping Snippets
Python Web Scraping Snippets is a collection of Sublime Text snippets for web scraping and HTML parsing in Python.
💻 Installation
The easiest way to install Python Web Scraping Snippets is through Package Control. After it is enabled inside Sublime Text, open the command palette and find Package Control: Install Package and press ENTER
. Then, find Python Web Scraping Snippets in the list. Press ENTER
again, and this package is installed!
📈 Snippets
Imports
Import snippets start with i
followed by the import alias.
Trigger | Description |
---|---|
ibs |
from bs4 import BeautifulSoup |
irequests |
import requests |
iAsyncHTMLSession |
from requests_html import AsyncHTMLSession |
iHTMLSession |
from requests_html import HTMLSession |
BeautifulSoup4
Trigger | Description |
---|---|
bs |
bs4.BeautifulSoup |
find |
bs4.BeautifulSoup.find |
find_all |
bs4.BeautifulSoup.find_all |
prettify |
bs4.BeautifulSoup.prettify |
select |
bs4.BeautifulSoup.select |
select_one |
bs4.BeautifulSoup.select_one |
Requests
Trigger | Description |
---|---|
delete |
requests.delete |
get |
requests.get |
head |
requests.head |
patch |
requests.patch |
post |
requests.post |
put |
requests.put |
request |
requests.request |
Requests-HTML
Trigger | Description |
---|---|
AsyncHTMLSession |
requests_html.AsyncHTMLSession |
HTMLSession |
requests_html.HTMLSession |
The snippet files are in the snippets
folder of this GitHub repository.