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