<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: kevincarroll</title>
    <description>The latest articles on DEV Community by kevincarroll (@kevincarroll85).</description>
    <link>https://dev.to/kevincarroll85</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3967995%2F75dc3a50-4b0c-45b9-a69c-d67bce4f2f42.png</url>
      <title>DEV Community: kevincarroll</title>
      <link>https://dev.to/kevincarroll85</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/kevincarroll85"/>
    <language>en</language>
    <item>
      <title>How I Built a Python Script to Find Budget-Friendly Cabinet Handles</title>
      <dc:creator>kevincarroll</dc:creator>
      <pubDate>Thu, 11 Jun 2026 07:18:23 +0000</pubDate>
      <link>https://dev.to/kevincarroll85/how-i-built-a-python-script-to-find-budget-friendly-cabinet-handles-2pld</link>
      <guid>https://dev.to/kevincarroll85/how-i-built-a-python-script-to-find-budget-friendly-cabinet-handles-2pld</guid>
      <description>&lt;p&gt;As a developer, I'm always optimizing workflows. For a kitchen renovation project, I wrote a Python script to compare cabinet handle styles by price and material. Here's a function that filters products from an API response:&lt;/p&gt;

&lt;p&gt;python&lt;br&gt;
def filter_handles(products, max_price, material):&lt;br&gt;
    filtered = []&lt;br&gt;
    for product in products:&lt;br&gt;
        if product['price'] &amp;lt;= max_price and product['material'] == material:&lt;br&gt;
            filtered.append(product)&lt;br&gt;
    return filtered&lt;/p&gt;

&lt;h1&gt;
  
  
  Example data from a cabinet furniture collection
&lt;/h1&gt;

&lt;p&gt;cabinet_products = [&lt;br&gt;
    {'name': 'Brushed Nickel Pull', 'price': 4.99, 'material': 'Zinc Alloy'},&lt;br&gt;
    {'name': 'Antique Brass Knob', 'price': 3.49, 'material': 'Brass'},&lt;br&gt;
    {'name': 'Matte Black Handle', 'price': 5.99, 'material': 'Steel'}&lt;br&gt;
]&lt;/p&gt;

&lt;p&gt;budget_friendly = filter_handles(cabinet_products, 5.00, 'Brass')&lt;br&gt;
print(budget_friendly)&lt;/p&gt;

&lt;p&gt;This helps narrow down durable options without breaking the bank. The craftsmanship in modern cabinet hardware is impressive—zinc alloys offer great value. How do you approach selecting drawer pulls for a cohesive look?&lt;/p&gt;

</description>
      <category>python</category>
      <category>handles</category>
      <category>productivity</category>
      <category>react</category>
    </item>
    <item>
      <title>Find Low-Competition Keywords Faster Using Python and SERPSpur</title>
      <dc:creator>kevincarroll</dc:creator>
      <pubDate>Wed, 10 Jun 2026 07:50:40 +0000</pubDate>
      <link>https://dev.to/kevincarroll85/find-low-competition-keywords-faster-using-python-and-serpspur-5467</link>
      <guid>https://dev.to/kevincarroll85/find-low-competition-keywords-faster-using-python-and-serpspur-5467</guid>
      <description>&lt;p&gt;I needed to analyze keyword opportunities for a new content strategy. Here's a Python script that uses the &lt;strong&gt;&lt;a href="https://serpspur.com/tool/keyword-research-tool" rel="noopener noreferrer"&gt;SERPSpur Keyword Research Tool&lt;/a&gt;&lt;/strong&gt; API to get search volume, difficulty, and CPC data:&lt;/p&gt;

&lt;p&gt;python&lt;br&gt;
import requests&lt;/p&gt;

&lt;p&gt;API_KEY = "your_api_key_here"&lt;/p&gt;

&lt;p&gt;def analyze_keywords(keywords, country):&lt;br&gt;
    results = {}&lt;br&gt;
    for kw in keywords:&lt;br&gt;
        response = requests.get(&lt;br&gt;
            "&lt;a href="https://api.serpspur.com/v1/keyword-research" rel="noopener noreferrer"&gt;https://api.serpspur.com/v1/keyword-research&lt;/a&gt;",&lt;br&gt;
            headers={"Authorization": f"Bearer {API_KEY}"},&lt;br&gt;
            params={"keyword": kw, "country": country}&lt;br&gt;
        )&lt;br&gt;
        data = response.json()&lt;br&gt;
        results[kw] = {&lt;br&gt;
            "volume": data.get("search_volume", 0),&lt;br&gt;
            "difficulty": data.get("keyword_difficulty", 0),&lt;br&gt;
            "cpc": data.get("cpc", 0)&lt;br&gt;
        }&lt;br&gt;
    return results&lt;/p&gt;

&lt;h1&gt;
  
  
  Example usage
&lt;/h1&gt;

&lt;p&gt;keywords = ["SEO tips", "content marketing", "link building"]&lt;br&gt;
analysis = analyze_keywords(keywords, "US")&lt;br&gt;
for kw, metrics in analysis.items():&lt;br&gt;
    print(f"{kw}: Volume={metrics['volume']}, Difficulty={metrics['difficulty']}, CPC=${metrics['cpc']}")&lt;/p&gt;

&lt;p&gt;This helped prioritize low-difficulty, high-volume terms. &lt;strong&gt;How do you typically evaluate keyword opportunities in your SEO workflow?&lt;/strong&gt;&lt;/p&gt;

</description>
      <category>python</category>
      <category>keyword</category>
      <category>programming</category>
      <category>beginners</category>
    </item>
    <item>
      <title>How to Monitor International SEO Rankings with a Simple Python Script</title>
      <dc:creator>kevincarroll</dc:creator>
      <pubDate>Sat, 06 Jun 2026 07:28:22 +0000</pubDate>
      <link>https://dev.to/kevincarroll85/how-to-monitor-international-seo-rankings-with-a-simple-python-script-5cl7</link>
      <guid>https://dev.to/kevincarroll85/how-to-monitor-international-seo-rankings-with-a-simple-python-script-5cl7</guid>
      <description>&lt;p&gt;Need to check if your site is ranking for a specific keyword in different countries? I wrote a quick Python script that uses the SERPSpur API to check rankings across multiple locations:&lt;/p&gt;

&lt;p&gt;python&lt;br&gt;
import requests&lt;/p&gt;

&lt;p&gt;API_KEY = "your_api_key_here"&lt;/p&gt;

&lt;p&gt;def check_rankings(domain, keyword, locations):&lt;br&gt;
    results = {}&lt;br&gt;
    for location in locations:&lt;br&gt;
        response = requests.get(&lt;br&gt;
            "&lt;a href="https://api.serspur.com/v1/search" rel="noopener noreferrer"&gt;https://api.serspur.com/v1/search&lt;/a&gt;",&lt;br&gt;
            headers={"Authorization": f"Bearer {API_KEY}"},&lt;br&gt;
            params={"q": keyword, "location": location, "num": 100}&lt;br&gt;
        )&lt;br&gt;
        data = response.json()&lt;br&gt;
        for i, result in enumerate(data['organic_results'], 1):&lt;br&gt;
            if domain in result['link']:&lt;br&gt;
                results[location] = i&lt;br&gt;
                break&lt;br&gt;
        else:&lt;br&gt;
            results[location] = "Not in top 100"&lt;br&gt;
    return results&lt;/p&gt;

&lt;h1&gt;
  
  
  Example usage
&lt;/h1&gt;

&lt;p&gt;locations = ["United States", "United Kingdom", "Canada"]&lt;br&gt;
ranks = check_rankings("example.com", "SEO tools", locations)&lt;br&gt;
for loc, rank in ranks.items():&lt;br&gt;
    print(f"{loc}: Position {rank}")&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fhtscnuuleb2ihubu1mdi.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fhtscnuuleb2ihubu1mdi.png" alt=" " width="800" height="800"&gt;&lt;/a&gt;&lt;br&gt;
This helps me quickly identify international SEO issues without manually searching each region. &lt;strong&gt;How do you handle multi-location ranking checks?&lt;/strong&gt;&lt;/p&gt;

</description>
      <category>sql</category>
      <category>python</category>
      <category>google</category>
      <category>github</category>
    </item>
  </channel>
</rss>
