Skip to content

A web scraping program built to extract attribute data on music events from a popular event ticketing website. The program collects event data based on the specified country and city, which is then exported to a CSV file for marketing emails and stored efficiently in a local PostgreSQL database.

License

Notifications You must be signed in to change notification settings

MaxineXiong/Music-Events-Web-Scraper

Repository files navigation

Music Events Web Scraper

GitHub License: MIT Made with Python pandas PostgreSQL


Project Description

The Music Events Web Scraper is a web scraping program engineered to extract detailed information about music events from Eventbrite, a popular event management and ticketing platform. Users can specify a country and a city to gather attribute data on upcoming music events, including event names, venues, addresses, dates and times, durations, prices, booking statuses, and web URLs. The collected data is subsequently saved in a CSV file, which is then attached to a marketing email sent to designated recipients. Additionally, the data is transferred to a local PostgreSQL database for efficient storage and management.


Features

  • Web Scraping: Efficiently extracts detailed attributes of music events such as names, venues, addresses, dates and times, durations, prices, booking statuses, and URLs.
  • CSV Export: Saves the scraped data into a CSV file for easy access and analysis.
  • Email Notification: Sends a marketing email with the attached CSV file to specified recipient(s).
  • Database Storage: Transfers the collected data to a local PostgreSQL database for structured storage and retrieval.

Repository Structure

The repository is structured as follows:

MusicEventsWebScraper/
├── main.py
├── email-html-body-template.txt
├── sample outputs/
│   ├── 🎶 Unmissable Music Events Coming Up in Sydney, Australia! 🌟.eml
│   └── music-events-sydney-australia-20240609220753.csv
├── requirements.txt
├── .gitignore
├── README.md                 
└── LICENSE 
  • main.py: This file is the core script containing the Python code responsible for scraping music events data, emailing the CSV output, and handling database operations.
  • email-html-body-template.txt: The file serves as a template for the body of the output marketing email. It contains HTML markup along with placeholders (typically formatted as %s) that allow for dynamic insertion of specific content, such as the city name, at runtime.
  • sample outputs/: This directory houses example outputs from the scraper, including an output CSV file and a marketing email, showcasing the functionality of the program.
  • requirements.txt: This file lists all the required Python modules and packages necessary to run the desktop app. You can install these dependencies on your local computer by running the command pip install -r requirements.txt.
  • .gitignore: Prevents specific files and directories from being tracked by Git, maintaining the cleanliness of the repository by excluding temporary files and sensitive information.
  • README.md: Provides a detailed overview of the repository, including descriptions of its functionality, usage instructions, and information on how to contribute.
  • LICENSE: The license file for the project.

Usage

To run the web scraping program on your local computer, please follow these steps:

  1. Clone this repository to your local machine using the following command:

    git clone https://github.com/MaxineXiong/Music-Events-Web-Scraper.git
    
  2. Download and install the latest version of Python for your system. Make sure to select the "Add Python to PATH" option during the installation process.

  3. Navigate to the project folder using File Explorer, type cmd in the address bar at the top of the window, and press Enter. This will open Command Prompt in the project folder.

  4. Install the required packages by executing the following command in the Command Prompt:

    pip install -r requirements.txt
    
  5. Configure email settings: Open main.py and update the sender_email, recipient_email, and sender_password variables with your own email credentials and app password.

  6. Configure database settings: Update the [DATABASE-NAME], [USERNAME], and [PASSWORD] values in the move_to_pgDB method with your PostgreSQL database credentials.

  7. Now launch the web scraping program by entering the following command in the Command Prompt:

    python main.py
    

Contribution

Contributions are welcome! Please fork the repository and create a pull request with your changes. Ensure that your code adheres to the project’s coding standards and includes appropriate tests.


License

This project is licensed under the MIT License. See the LICENSE file for more details.


Acknowledgements

I would like to acknowledge the following organizations and technologies for their contributions to this project:

  • BeautifulSoup: For providing powerful tools for web scraping and HTML parsing, enabling the extraction of detailed event data.
  • Requests: For its robust HTTP capabilities, facilitating seamless interactions with web services.
  • Pandas: For its extensive data manipulation and analysis features, which significantly streamline the handling of structured data.
  • SMTP and Email Libraries: For their comprehensive support in email handling, allowing the scraper to dispatch notifications and attachments effectively.
  • Psycopg2: For enabling efficient interaction with PostgreSQL databases, ensuring secure and reliable data storage and retrieval.

Each of these tools has contributed to the functionality and efficiency of this project, and their ongoing development support is greatly appreciated.


Disclaimer

The data extracted by the Music Events Web Scraper is solely for project showcasing purposes. It will not be sold to any third party, nor will it be used for any commercial activities beyond the scope of project demonstration and academic presentation. All data handling will adhere to ethical guidelines and respect privacy considerations.

About

A web scraping program built to extract attribute data on music events from a popular event ticketing website. The program collects event data based on the specified country and city, which is then exported to a CSV file for marketing emails and stored efficiently in a local PostgreSQL database.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages