Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Very simple and pythonic way to extract data from VK.
Install package via pip
pip install vk_getter
Use your access token, and get posts from any public group. You can get token here.
from vk_getter import VKGetter
getter = VKGetter("TOKEN")
# get 200 latest posts from https://www.vk.com/vk
posts = getter.get_posts("vk", 200)
# get 150 posts with offset of 50
posts = getter.get_posts("lol", 150, 50)
You can specify different settings:
posts = getter.get_latest_posts("https://www.vk.com/vk",
count=120,
offset=20,
pinned=False,
allow_no_attachments=False,
ads=False,
copyright=False)
All posts are retrieved as a Python dataclasses, but can also be returned as dicts.
posts = getter.get_latest_posts(group_domain="vk",
count=1,
as_dict=True)
# posts[0] =
# {
# "id": 1320761,
# "date": "15.09.2022",
# "time": "14:15:11",
# "text": "...",
# "attachments": {
# "photo": [],
# "video": [
# "..."
# ],
# "audio": [],
# "other": []
# },
# "comments": 858,
# "likes": 1150,
# "reposts": 371,
# "views": 518953
# }
You can download gathered attachments to your local system.
from vk_getter import VKGetter
getter = VKGetter("TOKEN")
posts = getter.get_posts("lol", 150)
# download all of the 4 types
path = "lol"
getter.download_all(posts, path)
# or specify one
getter.download(posts, "photo", path)
getter.download(posts, "video", path)
getter.download(posts, "audio", path)
getter.download(posts, "other", path)
Or you can extract them as links.
from vk_getter import VKGetter
getter = VKGetter("TOKEN")
posts = getter.get_posts("lol", 150)
# extract all of the 4 types
# returns a dataclass Attachments object with 4 fields
attachments = getter.extract_all(posts)
# or specify one
photos = getter.extract(posts, "photo")
videos = getter.extract(posts, "video")
audios = getter.extract(posts, "audio")
others = getter.extract(posts, "other")
*Note:
do NOT use as_dict
in the get_posts method.
FAQs
Getting data from vk.com in a pythonic way.
We found that vk-getter demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.