
Security News
Static vs. Runtime Reachability: Insights from Latio’s On the Record Podcast
The Latio podcast explores how static and runtime reachability help teams prioritize exploitable vulnerabilities and streamline AppSec workflows.
pytweetql is a simple Python package designed for developers who work with the Twitter GraphQL API
Currently it is built to parse tweet, user, and list GET responses from the Twitter GraphQL API. The function to call is based on the GraphQL endpoint. So for the UserTweets endpoint, you would import the parsing
module and use the parse_user_tweets()
function.
from pytweetql import parsing
# Given a response from GraphQL
response = {'data': {.....}}
# To pull data from a tweet response
tweets = parsing.parse_user_tweets(response=response)
# Will return a list of tweet classes, one for each tweet parsed
print(tweets.tweets)
# To pull data from a user response
users = parsing.parse_users_by_screen_name(response=response)
# Will return a list of user classes, one for each user parsed
print(users.users)
# To pull data from a list response
lists = parsing.parse_create_list(response=response)
# Will return a list of list classes, one for each list parsed
print(lists.lists)
FAQs
Easy parsing of Twitter GraphQL API responses
We found that pytweetql 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.
Security News
The Latio podcast explores how static and runtime reachability help teams prioritize exploitable vulnerabilities and streamline AppSec workflows.
Security News
The latest Opengrep releases add Apex scanning, precision rule tuning, and performance gains for open source static code analysis.
Security News
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.