Python Web Scraping Snippets
🌐 Collection of Sublime Text snippets for web scraping in Python
Details
Installs
- Total 133
- Win 86
- Mac 18
- Linux 29
Jun 6 | Jun 5 | Jun 4 | Jun 3 | Jun 2 | Jun 1 | May 31 | May 30 | May 29 | May 28 | May 27 | May 26 | May 25 | May 24 | May 23 | May 22 | May 21 | May 20 | May 19 | May 18 | May 17 | May 16 | May 15 | May 14 | May 13 | May 12 | May 11 | May 10 | May 9 | May 8 | May 7 | May 6 | May 5 | May 4 | May 3 | May 2 | May 1 | Apr 30 | Apr 29 | Apr 28 | Apr 27 | Apr 26 | Apr 25 | Apr 24 | Apr 23 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 2 | 1 | 1 | 1 | 1 | 0 | 0 | 2 | 2 | 0 | 0 | 1 | 1 | 2 | 0 | 1 | 0 | 1 | 2 | 2 | 1 | 1 | 0 | 4 | 2 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 |
Mac | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 2 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 2 |
Linux | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 2 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 2 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 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.