
Research
/Security News
Critical Vulnerability in NestJS Devtools: Localhost RCE via Sandbox Escape
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
This Python package allows you to easily fetch and process event data from the Ticketmaster API. It's designed to be simple to use and customize for your specific needs.
pip install events-scraper
python from events_scraper import EventsFetcher
Initialize the EventsFetcher with your Ticketmaster API key
fetcher = EventsFetcher(api_key='your_api_key_here') Fetch events events = fetcher.get_events(city='New York', days_ahead=60, limit=20)
Process the events
for event in events: print(f"Event: {event['name']}") print(f"Date: {event['date']}") print(f"Venue: {event['venue']}") print(f"Price Range: {event['price_range']}") print("---")
EventsFetcher(api_key: str)
Initialize the EventsFetcher with your Ticketmaster API key.
get_events(city: str = 'San Francisco', days_ahead: int = 30, limit: int = 15) -> List[Dict[str, Any]]
Fetch events based on the given parameters.
city
: The city to fetch events for (default: 'San Francisco')days_ahead
: Number of days ahead to fetch events for (default: 30)limit
: Maximum number of events to fetch (default: 15)Returns a list of dictionaries containing event information.
Contributions are welcome! Please feel free to submit a Pull Request.
This project is licensed under the MIT License.
FAQs
A Python package to fetch events using Ticketmaster API
We found that events-scraper 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 flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
Product
Customize license detection with Socket’s new license overlays: gain control, reduce noise, and handle edge cases with precision.
Product
Socket now supports Rust and Cargo, offering package search for all users and experimental SBOM generation for enterprise projects.