{"id":501,"date":"2025-05-19T11:26:42","date_gmt":"2025-05-19T11:26:42","guid":{"rendered":"https:\/\/buhave.com\/courses\/?p=501"},"modified":"2025-07-19T08:36:13","modified_gmt":"2025-07-19T08:36:13","slug":"project-work","status":"publish","type":"post","link":"https:\/\/buhave.com\/courses\/ppc\/project-work\/","title":{"rendered":"Project Work"},"content":{"rendered":"<p>&nbsp;<\/p>\n<h1> Real-World Python Projects (Based on Your Interests)<\/h1>\n<p>Explore beginner to advanced Python projects like PPC dashboards, Project Work , CLI apps, web scrapers, and automation tools. These are ideal for marketers, developers, and learners looking to build real-world tools.<\/p>\n<h2> Project 1: PPC Campaign Performance Dashboard<\/h2>\n<p>Use Python to automate and visualize PPC (Pay-Per-Click) advertising data from Google Ads or Facebook Ads.<\/p>\n<h3> What the Project Does<\/h3>\n<ul>\n<li>Connects to ad platforms via API or CSV.<\/li>\n<li>Analyzes marketing metrics like CPC, CTR, CPA, ROI.<\/li>\n<li>Visualizes campaign performance using charts.<\/li>\n<li>Sends automated reports via email.<\/li>\n<li>Supports multiple client dashboards.<\/li>\n<\/ul>\n<h3> Tools &amp; Libraries<\/h3>\n<table>\n<tbody>\n<tr>\n<th>Purpose<\/th>\n<th>Tool\/Library<\/th>\n<\/tr>\n<tr>\n<td>Data fetching<\/td>\n<td>requests, Google Ads API<\/td>\n<\/tr>\n<tr>\n<td>Data analysis<\/td>\n<td>pandas<\/td>\n<\/tr>\n<tr>\n<td>Visualization<\/td>\n<td>matplotlib, plotly, seaborn<\/td>\n<\/tr>\n<tr>\n<td>Automation<\/td>\n<td>schedule, cron, apscheduler<\/td>\n<\/tr>\n<tr>\n<td>Reporting<\/td>\n<td>xlsxwriter, pdfkit<\/td>\n<\/tr>\n<tr>\n<td>Email<\/td>\n<td>smtplib, email.mime<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<h3>\ufe0f Steps<\/h3>\n<ol>\n<li>Set up virtual environment &amp; install packages<\/li>\n<li>Connect to Google Ads API or load CSV data<\/li>\n<li>Fetch and store campaign data<\/li>\n<li>Analyze KPIs using pandas<\/li>\n<li>Create visual reports with matplotlib or plotly<\/li>\n<li>Export results to PDF or Excel<\/li>\n<li>Automate and send email reports<\/li>\n<\/ol>\n<h3> Bonus Features<\/h3>\n<ul>\n<li>Build a web dashboard with Flask or Streamlit<\/li>\n<li>Add real-time updates via Google Sheets API<\/li>\n<li>Create styled HTML reports using Jinja2<\/li>\n<\/ul>\n<h3> Reusability<\/h3>\n<ul>\n<li>Serve multiple ad accounts<\/li>\n<li>Use as a teaching tool<\/li>\n<li>Showcase in your portfolio<\/li>\n<\/ul>\n<h2>\u2705 Project 2: CLI To-Do List App<\/h2>\n<p>This beginner-friendly command-line app teaches you file handling, modular code, and data persistence.<\/p>\n<h3> Key Features<\/h3>\n<ul>\n<li>Add, view, complete, and delete tasks<\/li>\n<li>Save\/load tasks from a file<\/li>\n<li>Simple terminal UI with argparse<\/li>\n<\/ul>\n<h3> File Structure<\/h3>\n<pre>todo_app\/\r\n\u251c\u2500\u2500 todo.py\r\n\u251c\u2500\u2500 storage.py\r\n\u251c\u2500\u2500 cli.py\r\n\u2514\u2500\u2500 tasks.json<\/pre>\n<h3> Sample Code<\/h3>\n<pre><code>def add_task(tasks, description):\r\n    task = {\"description\": description, \"done\": False}\r\n    tasks.append(task)\r\n  <\/code><\/pre>\n<pre><code>def save_tasks(tasks, filename=\"tasks.json\"):\r\n    with open(filename, \"w\") as f:\r\n        json.dump(tasks, f, indent=4)\r\n  <\/code><\/pre>\n<h3> Bonus Features<\/h3>\n<ul>\n<li>Due dates and sorting<\/li>\n<li>Priority levels<\/li>\n<li>Export to PDF<\/li>\n<li>Use rich library for CLI styling<\/li>\n<\/ul>\n<h2> Project 3: Web Scraper<\/h2>\n<p>Automate the collection of public data from websites using Python.<\/p>\n<h3> Tools<\/h3>\n<table>\n<tbody>\n<tr>\n<th>Purpose<\/th>\n<th>Library<\/th>\n<\/tr>\n<tr>\n<td>HTTP requests<\/td>\n<td>requests<\/td>\n<\/tr>\n<tr>\n<td>HTML parsing<\/td>\n<td>BeautifulSoup<\/td>\n<\/tr>\n<tr>\n<td>Data structuring<\/td>\n<td>pandas<\/td>\n<\/tr>\n<tr>\n<td>Delay handling<\/td>\n<td>time, random<\/td>\n<\/tr>\n<tr>\n<td>Scheduling<\/td>\n<td>schedule, cron<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<h3> Workflow Example: Scraping Headlines<\/h3>\n<ol>\n<li>Install packages: <code>pip install requests beautifulsoup4<\/code><\/li>\n<li>Send HTTP request and parse HTML<\/li>\n<li>Use <code>soup.find_all(\"h3\")<\/code> to get headlines<\/li>\n<li>Save to CSV file<\/li>\n<li>Add delays between requests to avoid blocking<\/li>\n<\/ol>\n<h3> Ethical Tips<\/h3>\n<ul>\n<li>Check robots.txt<\/li>\n<li>Scrape only public info<\/li>\n<li>Respect site limits<\/li>\n<\/ul>\n<h3> Bonus Features<\/h3>\n<ul>\n<li>Turn into<a href=\"https:\/\/www.w3schools.com\/whatis\/whatis_cli.asp\"> CLI<\/a> or Flask app<\/li>\n<li>Use Selenium for JavaScript-heavy sites<\/li>\n<li>Schedule regular scraping jobs<\/li>\n<\/ul>\n<h2> Project 4: Data Visualizer<\/h2>\n<p>Create interactive and static charts from CSVs or APIs to visualize insights.<\/p>\n<h3> Tools<\/h3>\n<table>\n<tbody>\n<tr>\n<th>Purpose<\/th>\n<th>Library<\/th>\n<\/tr>\n<tr>\n<td>Data analysis<\/td>\n<td>pandas<\/td>\n<\/tr>\n<tr>\n<td>Static plots<\/td>\n<td>matplotlib, seaborn<\/td>\n<\/tr>\n<tr>\n<td>Interactive charts<\/td>\n<td>plotly, altair<\/td>\n<\/tr>\n<tr>\n<td>Dashboard<\/td>\n<td>Streamlit, Tkinter<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<h3> Visualizations You Can Build<\/h3>\n<ul>\n<li>Line chart \u2013 Revenue over time<\/li>\n<li>Bar chart \u2013 Sales by product<\/li>\n<li>Pie chart \u2013 Market share<\/li>\n<li>Scatter plot \u2013 Revenue vs Units Sold<\/li>\n<\/ul>\n<h3> Bonus Ideas<\/h3>\n<ul>\n<li>Streamlit dashboard for user input<\/li>\n<li>Filter by category or date<\/li>\n<li>Export visuals as images or PDFs<\/li>\n<\/ul>\n<h2>\u2699\ufe0f Project 5: Simple API or Automation Tool<\/h2>\n<p>Create a small API or automate daily tasks using Python.<\/p>\n<h3> Project Options<\/h3>\n<ul>\n<li>Flask-based quote or task API<\/li>\n<li>Daily email reports using smtplib<\/li>\n<li>File organizer or scraper automation<\/li>\n<\/ul>\n<h3> Tools<\/h3>\n<table>\n<tbody>\n<tr>\n<th>Use Case<\/th>\n<th>Library<\/th>\n<\/tr>\n<tr>\n<td>API Development<\/td>\n<td>Flask, FastAPI<\/td>\n<\/tr>\n<tr>\n<td>Automation<\/td>\n<td>os, shutil, schedule<\/td>\n<\/tr>\n<tr>\n<td>Emailing<\/td>\n<td>smtplib<\/td>\n<\/tr>\n<tr>\n<td>Parsing<\/td>\n<td>argparse, json<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<h3> Flask API Example<\/h3>\n<pre><code>from flask import Flask, jsonify\r\nimport random\r\n\r\napp = Flask(__name__)\r\n\r\n@app.route(\"\/joke\")\r\ndef get_joke():\r\n    return jsonify({\"joke\": random.choice([\"Why did the dev quit?\", \"Java devs wear glasses...\"])})\r\n\r\napp.run(debug=True)\r\n  <\/code><\/pre>\n<h3> Email Automation Example<\/h3>\n<pre><code>import schedule, time\r\n\r\nschedule.every().day.at(\"08:00\").do(send_email, \"Update\", \"Here\u2019s your daily update\", \"to@example.com\")\r\n\r\nwhile True:\r\n    schedule.run_pending()\r\n    time.sleep(60)\r\n  <\/code><\/pre>\n<h2> Final Thoughts<\/h2>\n<p>These Python projects help you build strong foundations in:<\/p>\n<ul>\n<li>Marketing analytics<\/li>\n<li>Automation scripting<\/li>\n<li>API development<\/li>\n<li>Web scraping<\/li>\n<li>Data visualization<\/li>\n<\/ul>\n<p>Use them to create portfolio-worthy work, automate real problems, or turn them into mini-courses. Need help starting? Let\u2019s build together!<\/p>\n<ul>\n<li><a href=\"https:\/\/buhave.com\/courses\/ppc\/goals-and-conversion-tracking\/\">Goals and conversion tracking<\/a><\/li>\n<\/ul>\n<p>&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>&nbsp; Real-World Python Projects (Based on Your Interests) Explore beginner to advanced Python projects like PPC dashboards, Project Work , CLI apps, web scrapers, and automation tools. These are ideal for marketers, developers, and learners looking to build real-world tools. Project 1: PPC Campaign Performance<\/p>\n","protected":false},"author":1,"featured_media":893,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[5],"tags":[],"class_list":["post-501","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-ppc"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Project Work<\/title>\n<meta name=\"description\" content=\"Project Work Practical, hands-on coding projects that apply Python skills to real-world tasks, encouraging critical thinking and creativity.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/buhave.com\/courses\/ppc\/project-work\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Project Work\" \/>\n<meta property=\"og:description\" content=\"Project Work Practical, hands-on coding projects that apply Python skills to real-world tasks, encouraging critical thinking and creativity.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/buhave.com\/courses\/ppc\/project-work\/\" \/>\n<meta property=\"og:site_name\" content=\"BUHAVE\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/BeYouHave\/\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/naveedsafdarawan\/\" \/>\n<meta property=\"article:published_time\" content=\"2025-05-19T11:26:42+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-07-19T08:36:13+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/buhave.com\/courses\/wp-content\/uploads\/2025\/05\/SOCIAL-MEDIA-MARKETING-10.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"1280\" \/>\n\t<meta property=\"og:image:height\" content=\"720\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/webp\" \/>\n<meta name=\"author\" content=\"Naveed Safdar\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Naveed Safdar\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/buhave.com\\\/courses\\\/ppc\\\/project-work\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/buhave.com\\\/courses\\\/ppc\\\/project-work\\\/\"},\"author\":{\"name\":\"Naveed Safdar\",\"@id\":\"https:\\\/\\\/buhave.com\\\/courses\\\/#\\\/schema\\\/person\\\/04fe0254e118521c9fbb3da39de5acca\"},\"headline\":\"Project Work\",\"datePublished\":\"2025-05-19T11:26:42+00:00\",\"dateModified\":\"2025-07-19T08:36:13+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/buhave.com\\\/courses\\\/ppc\\\/project-work\\\/\"},\"wordCount\":530,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/buhave.com\\\/courses\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/buhave.com\\\/courses\\\/ppc\\\/project-work\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/buhave.com\\\/courses\\\/wp-content\\\/uploads\\\/2025\\\/05\\\/SOCIAL-MEDIA-MARKETING-10.webp\",\"articleSection\":[\"PPC Course\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/buhave.com\\\/courses\\\/ppc\\\/project-work\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/buhave.com\\\/courses\\\/ppc\\\/project-work\\\/\",\"url\":\"https:\\\/\\\/buhave.com\\\/courses\\\/ppc\\\/project-work\\\/\",\"name\":\"Project Work\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/buhave.com\\\/courses\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/buhave.com\\\/courses\\\/ppc\\\/project-work\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/buhave.com\\\/courses\\\/ppc\\\/project-work\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/buhave.com\\\/courses\\\/wp-content\\\/uploads\\\/2025\\\/05\\\/SOCIAL-MEDIA-MARKETING-10.webp\",\"datePublished\":\"2025-05-19T11:26:42+00:00\",\"dateModified\":\"2025-07-19T08:36:13+00:00\",\"description\":\"Project Work Practical, hands-on coding projects that apply Python skills to real-world tasks, encouraging critical thinking and creativity.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/buhave.com\\\/courses\\\/ppc\\\/project-work\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/buhave.com\\\/courses\\\/ppc\\\/project-work\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/buhave.com\\\/courses\\\/ppc\\\/project-work\\\/#primaryimage\",\"url\":\"https:\\\/\\\/buhave.com\\\/courses\\\/wp-content\\\/uploads\\\/2025\\\/05\\\/SOCIAL-MEDIA-MARKETING-10.webp\",\"contentUrl\":\"https:\\\/\\\/buhave.com\\\/courses\\\/wp-content\\\/uploads\\\/2025\\\/05\\\/SOCIAL-MEDIA-MARKETING-10.webp\",\"width\":1280,\"height\":720,\"caption\":\"project work\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/buhave.com\\\/courses\\\/ppc\\\/project-work\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Courses\",\"item\":\"https:\\\/\\\/buhave.com\\\/courses\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"PPC Course\",\"item\":\"https:\\\/\\\/buhave.com\\\/courses\\\/learn\\\/ppc\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Project Work\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/buhave.com\\\/courses\\\/#website\",\"url\":\"https:\\\/\\\/buhave.com\\\/courses\\\/\",\"name\":\"BUHAVE\",\"description\":\"Courses - Learn Online for Free\",\"publisher\":{\"@id\":\"https:\\\/\\\/buhave.com\\\/courses\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/buhave.com\\\/courses\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/buhave.com\\\/courses\\\/#organization\",\"name\":\"BUHAVE\",\"url\":\"https:\\\/\\\/buhave.com\\\/courses\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/buhave.com\\\/courses\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/buhave.com\\\/courses\\\/wp-content\\\/uploads\\\/2025\\\/03\\\/buhave-course.webp\",\"contentUrl\":\"https:\\\/\\\/buhave.com\\\/courses\\\/wp-content\\\/uploads\\\/2025\\\/03\\\/buhave-course.webp\",\"width\":375,\"height\":75,\"caption\":\"BUHAVE\"},\"image\":{\"@id\":\"https:\\\/\\\/buhave.com\\\/courses\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/BeYouHave\\\/\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/buhave\",\"https:\\\/\\\/www.youtube.com\\\/@buhave\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/buhave.com\\\/courses\\\/#\\\/schema\\\/person\\\/04fe0254e118521c9fbb3da39de5acca\",\"name\":\"Naveed Safdar\",\"description\":\"I\u2019m Naveed Safdar - SEO Manager with over 10 years of experience in SEO and Digital Marketing. I\u2019ve had the privilege of working with leading national and international companies including Grafdom, PakWheels, Systems Limited, Confiz, Educative, and Dubizzle Labs. My expertise spans technical SEO, content strategy, organic growth, and performance analytics - helping businesses improve visibility, traffic, and ROI.\",\"sameAs\":[\"https:\\\/\\\/www.linkedin.com\\\/in\\\/naveedsafdar\\\/\",\"https:\\\/\\\/www.facebook.com\\\/naveedsafdarawan\\\/\",\"https:\\\/\\\/www.youtube.com\\\/@naveedsafdar\"],\"url\":\"https:\\\/\\\/buhave.com\\\/courses\\\/author\\\/naveed-safdar\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Project Work","description":"Project Work Practical, hands-on coding projects that apply Python skills to real-world tasks, encouraging critical thinking and creativity.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/buhave.com\/courses\/ppc\/project-work\/","og_locale":"en_US","og_type":"article","og_title":"Project Work","og_description":"Project Work Practical, hands-on coding projects that apply Python skills to real-world tasks, encouraging critical thinking and creativity.","og_url":"https:\/\/buhave.com\/courses\/ppc\/project-work\/","og_site_name":"BUHAVE","article_publisher":"https:\/\/www.facebook.com\/BeYouHave\/","article_author":"https:\/\/www.facebook.com\/naveedsafdarawan\/","article_published_time":"2025-05-19T11:26:42+00:00","article_modified_time":"2025-07-19T08:36:13+00:00","og_image":[{"width":1280,"height":720,"url":"https:\/\/buhave.com\/courses\/wp-content\/uploads\/2025\/05\/SOCIAL-MEDIA-MARKETING-10.webp","type":"image\/webp"}],"author":"Naveed Safdar","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Naveed Safdar","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/buhave.com\/courses\/ppc\/project-work\/#article","isPartOf":{"@id":"https:\/\/buhave.com\/courses\/ppc\/project-work\/"},"author":{"name":"Naveed Safdar","@id":"https:\/\/buhave.com\/courses\/#\/schema\/person\/04fe0254e118521c9fbb3da39de5acca"},"headline":"Project Work","datePublished":"2025-05-19T11:26:42+00:00","dateModified":"2025-07-19T08:36:13+00:00","mainEntityOfPage":{"@id":"https:\/\/buhave.com\/courses\/ppc\/project-work\/"},"wordCount":530,"commentCount":0,"publisher":{"@id":"https:\/\/buhave.com\/courses\/#organization"},"image":{"@id":"https:\/\/buhave.com\/courses\/ppc\/project-work\/#primaryimage"},"thumbnailUrl":"https:\/\/buhave.com\/courses\/wp-content\/uploads\/2025\/05\/SOCIAL-MEDIA-MARKETING-10.webp","articleSection":["PPC Course"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/buhave.com\/courses\/ppc\/project-work\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/buhave.com\/courses\/ppc\/project-work\/","url":"https:\/\/buhave.com\/courses\/ppc\/project-work\/","name":"Project Work","isPartOf":{"@id":"https:\/\/buhave.com\/courses\/#website"},"primaryImageOfPage":{"@id":"https:\/\/buhave.com\/courses\/ppc\/project-work\/#primaryimage"},"image":{"@id":"https:\/\/buhave.com\/courses\/ppc\/project-work\/#primaryimage"},"thumbnailUrl":"https:\/\/buhave.com\/courses\/wp-content\/uploads\/2025\/05\/SOCIAL-MEDIA-MARKETING-10.webp","datePublished":"2025-05-19T11:26:42+00:00","dateModified":"2025-07-19T08:36:13+00:00","description":"Project Work Practical, hands-on coding projects that apply Python skills to real-world tasks, encouraging critical thinking and creativity.","breadcrumb":{"@id":"https:\/\/buhave.com\/courses\/ppc\/project-work\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/buhave.com\/courses\/ppc\/project-work\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/buhave.com\/courses\/ppc\/project-work\/#primaryimage","url":"https:\/\/buhave.com\/courses\/wp-content\/uploads\/2025\/05\/SOCIAL-MEDIA-MARKETING-10.webp","contentUrl":"https:\/\/buhave.com\/courses\/wp-content\/uploads\/2025\/05\/SOCIAL-MEDIA-MARKETING-10.webp","width":1280,"height":720,"caption":"project work"},{"@type":"BreadcrumbList","@id":"https:\/\/buhave.com\/courses\/ppc\/project-work\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Courses","item":"https:\/\/buhave.com\/courses\/"},{"@type":"ListItem","position":2,"name":"PPC Course","item":"https:\/\/buhave.com\/courses\/learn\/ppc\/"},{"@type":"ListItem","position":3,"name":"Project Work"}]},{"@type":"WebSite","@id":"https:\/\/buhave.com\/courses\/#website","url":"https:\/\/buhave.com\/courses\/","name":"BUHAVE","description":"Courses - Learn Online for Free","publisher":{"@id":"https:\/\/buhave.com\/courses\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/buhave.com\/courses\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/buhave.com\/courses\/#organization","name":"BUHAVE","url":"https:\/\/buhave.com\/courses\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/buhave.com\/courses\/#\/schema\/logo\/image\/","url":"https:\/\/buhave.com\/courses\/wp-content\/uploads\/2025\/03\/buhave-course.webp","contentUrl":"https:\/\/buhave.com\/courses\/wp-content\/uploads\/2025\/03\/buhave-course.webp","width":375,"height":75,"caption":"BUHAVE"},"image":{"@id":"https:\/\/buhave.com\/courses\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/BeYouHave\/","https:\/\/www.linkedin.com\/company\/buhave","https:\/\/www.youtube.com\/@buhave"]},{"@type":"Person","@id":"https:\/\/buhave.com\/courses\/#\/schema\/person\/04fe0254e118521c9fbb3da39de5acca","name":"Naveed Safdar","description":"I\u2019m Naveed Safdar - SEO Manager with over 10 years of experience in SEO and Digital Marketing. I\u2019ve had the privilege of working with leading national and international companies including Grafdom, PakWheels, Systems Limited, Confiz, Educative, and Dubizzle Labs. My expertise spans technical SEO, content strategy, organic growth, and performance analytics - helping businesses improve visibility, traffic, and ROI.","sameAs":["https:\/\/www.linkedin.com\/in\/naveedsafdar\/","https:\/\/www.facebook.com\/naveedsafdarawan\/","https:\/\/www.youtube.com\/@naveedsafdar"],"url":"https:\/\/buhave.com\/courses\/author\/naveed-safdar\/"}]}},"_links":{"self":[{"href":"https:\/\/buhave.com\/courses\/wp-json\/wp\/v2\/posts\/501","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/buhave.com\/courses\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/buhave.com\/courses\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/buhave.com\/courses\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/buhave.com\/courses\/wp-json\/wp\/v2\/comments?post=501"}],"version-history":[{"count":2,"href":"https:\/\/buhave.com\/courses\/wp-json\/wp\/v2\/posts\/501\/revisions"}],"predecessor-version":[{"id":894,"href":"https:\/\/buhave.com\/courses\/wp-json\/wp\/v2\/posts\/501\/revisions\/894"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/buhave.com\/courses\/wp-json\/wp\/v2\/media\/893"}],"wp:attachment":[{"href":"https:\/\/buhave.com\/courses\/wp-json\/wp\/v2\/media?parent=501"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/buhave.com\/courses\/wp-json\/wp\/v2\/categories?post=501"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/buhave.com\/courses\/wp-json\/wp\/v2\/tags?post=501"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}