<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:media="http://search.yahoo.com/mrss/" >

<channel>
	<title>Flask API &#8211; Dakidarts® Hub</title>
	<atom:link href="https://hub.dakidarts.com/tag/flask-api/feed/" rel="self" type="application/rss+xml" />
	<link>https://hub.dakidarts.com</link>
	<description>Where creativity meets innovation.</description>
	<lastBuildDate>Sun, 10 Nov 2024 16:38:24 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	

<image>
	<url>https://cdn.dakidarts.com/image/dakidarts-dws.svg</url>
	<title>Flask API &#8211; Dakidarts® Hub</title>
	<link>https://hub.dakidarts.com</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>How to Shorten URLs Using Python: Build a URL Shortener Flask API</title>
		<link>https://hub.dakidarts.com/how-to-shorten-urls-using-python-build-a-url-shortener-flask-api/</link>
					<comments>https://hub.dakidarts.com/how-to-shorten-urls-using-python-build-a-url-shortener-flask-api/#respond</comments>
		
		<dc:creator><![CDATA[Dakidarts]]></dc:creator>
		<pubDate>Sun, 10 Nov 2024 16:36:50 +0000</pubDate>
				<category><![CDATA[Coding 👨‍💻]]></category>
		<category><![CDATA[How To 👨‍🏫]]></category>
		<category><![CDATA[Python 🪄]]></category>
		<category><![CDATA[Flask API]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[URL Shortener]]></category>
		<guid isPermaLink="false">https://hub.dakidarts.com/?p=10173</guid>

					<description><![CDATA[Discover how to build a URL shortener in Python with our comprehensive guide. Learn how to set up a Flask API, test it using cURL, Postman, and browser scripts, and create easy-to-share links for social media and more.]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">



<p class="wp-block-paragraph">In this tutorial, we’ll explore a quick and efficient way to create shortened URLs in <a href="https://hub.dakidarts.com/tag/python/">Python</a>, a handy solution for sharing long links on social media, emails, or text messages. </p>



<p class="wp-block-paragraph">Plus, we&#8217;ll go the extra mile and package it as a simple Flask <a href="https://shop.dakidarts.com/product/custom-api-development/" target="_blank" rel="noopener">API</a>, allowing users to shorten URLs on the fly!</p>


<div class="wp-block-image">
<figure class="aligncenter size-large"><img  decoding="async"  src="https://res.cloudinary.com/ds64xs2lp/image/upload/v1731256366/shortAnimate_crwj4j.gif"  alt="How to Shorten URLs Using Python: Build a URL Shortener Flask API"  title="How to Shorten URLs Using Python: Build a URL Shortener Flask API" ></figure>
</div>


<h2 id="why-use-a-url-shortener" class="wp-block-heading">Why Use a URL Shortener?</h2>



<p class="wp-block-paragraph">Long URLs can look messy and take up a lot of space, especially on platforms with character limits. A URL shortener can:</p>



<ul class="wp-block-list">
<li>Improve link appearance and readability.</li>



<li>Track link clicks for analytics.</li>



<li>Simplify sharing on social platforms and in messages.</li>
</ul>



<p class="wp-block-paragraph"><strong>Common Use Cases:</strong></p>



<p class="wp-block-paragraph">Simplified URLs for mobile sharing or <a href="https://hub.dakidarts.com/how-to-generate-qr-codes-using-python-step-by-step-guide-flask-api-bonus/" data-type="post" data-id="10131">QR codes</a></p>



<p class="wp-block-paragraph">Marketing and promotional links</p>



<p class="wp-block-paragraph">Trackable social media links</p>



<h2 id="setting-up-the-project-environment" class="wp-block-heading">Setting Up the Project Environment</h2>



<p class="wp-block-paragraph">We&#8217;ll use the <code data-enlighter-language="generic" class="EnlighterJSRAW">pyshorteners</code> library to handle URL shortening easily. First, install the required libraries:</p>



<pre class="EnlighterJSRAW" data-enlighter-language="generic" data-enlighter-theme="" data-enlighter-highlight="" data-enlighter-linenumbers="" data-enlighter-lineoffset="" data-enlighter-title="" data-enlighter-group="">pip install pyshorteners flask</pre>



<h2 id="creating-the-url-shortening-script-in-python" class="wp-block-heading">Creating the URL Shortening Script in Python</h2>



<p class="wp-block-paragraph">The <code data-enlighter-language="generic" class="EnlighterJSRAW">pyshorteners</code> library offers a streamlined way to shorten URLs using various services (e.g., TinyURL, Bitly). Here’s how to shorten a URL:</p>



<pre class="EnlighterJSRAW" data-enlighter-language="python" data-enlighter-theme="" data-enlighter-highlight="" data-enlighter-linenumbers="" data-enlighter-lineoffset="" data-enlighter-title="" data-enlighter-group="">import pyshorteners

def shorten_url(long_url):
    s = pyshorteners.Shortener()
    short_url = s.tinyurl.short(long_url)
    return short_url

# Example usage:
long_url = "https://example.com/some/very/long/url"
print("Shortened URL:", shorten_url(long_url))</pre>



<h2 id="building-a-flask-api-for-url-shortening" class="wp-block-heading">Building a Flask API for URL Shortening</h2>



<p class="wp-block-paragraph">We’ll now create a Flask API that takes a URL as input and returns a shortened version.</p>



<h4 id="initialize-the-flask-app" class="wp-block-heading">Initialize the Flask App:</h4>



<pre class="EnlighterJSRAW" data-enlighter-language="python" data-enlighter-theme="" data-enlighter-highlight="" data-enlighter-linenumbers="" data-enlighter-lineoffset="" data-enlighter-title="" data-enlighter-group="">from flask import Flask, request, jsonify
import pyshorteners

app = Flask(__name__)

# URL shortening function
def shorten_url(long_url):
    s = pyshorteners.Shortener()
    return s.tinyurl.short(long_url)

# Flask route for URL shortening
@app.route('/shorten', methods=['POST'])
def api_shorten_url():
    data = request.json
    long_url = data.get("url")

    if not long_url:
        return jsonify({"error": "URL is required"}), 400

    try:
        short_url = shorten_url(long_url)
        return jsonify({"short_url": short_url}), 200
    except Exception as e:
        return jsonify({"error": str(e)}), 500

if __name__ == "__main__":
    app.run(debug=True)</pre>



<h4 id="testing-the-flask-api" class="wp-block-heading">Testing the Flask API</h4>



<p class="wp-block-paragraph">Once the Flask API is up and running, you can test it in a few different ways:</p>



<p class="wp-block-paragraph">1. Using <strong>cURL</strong>:</p>



<p class="wp-block-paragraph">To shorten a URL via <code data-enlighter-language="generic" class="EnlighterJSRAW">cURL</code>, open your terminal and execute the following command:</p>



<pre class="EnlighterJSRAW" data-enlighter-language="bash" data-enlighter-theme="" data-enlighter-highlight="" data-enlighter-linenumbers="" data-enlighter-lineoffset="" data-enlighter-title="" data-enlighter-group="">curl -X POST http://127.0.0.1:5000/shorten -H "Content-Type: application/json" -d '{"url": "https://example.com/some/very/long/url"}'</pre>



<p class="wp-block-paragraph">This command sends a POST request to the API endpoint with a JSON payload containing the URL you want to shorten. If the request is successful, you’ll see a JSON response similar to this:</p>



<pre class="EnlighterJSRAW" data-enlighter-language="json" data-enlighter-theme="" data-enlighter-highlight="" data-enlighter-linenumbers="" data-enlighter-lineoffset="" data-enlighter-title="" data-enlighter-group="">{
    "short_url": "https://tinyurl.com/xyz123"
}</pre>



<p class="wp-block-paragraph">2. Using a <strong>Web Browser and API Testing Tools</strong></p>



<p class="wp-block-paragraph">If you prefer not to use the terminal, you can test the API using a browser extension like <strong>Postman</strong> or <strong>Insomnia</strong>. Here’s how:</p>



<p class="wp-block-paragraph"><strong>Postman Setup</strong>:</p>



<p class="wp-block-paragraph">Paste the JSON body:</p>



<p class="wp-block-paragraph">Open Postman and create a new POST request.</p>



<p class="wp-block-paragraph">Enter <code data-enlighter-language="generic" class="EnlighterJSRAW">http://127.0.0.1:5000/shorten</code> as the request URL.</p>



<p class="wp-block-paragraph">In the &#8220;Body&#8221; tab, select &#8220;raw&#8221; and choose &#8220;JSON&#8221; from the dropdown menu.</p>



<pre class="EnlighterJSRAW" data-enlighter-language="json" data-enlighter-theme="" data-enlighter-highlight="" data-enlighter-linenumbers="" data-enlighter-lineoffset="" data-enlighter-title="" data-enlighter-group="">{
    "url": "https://example.com/some/very/long/url"
}</pre>



<p class="wp-block-paragraph">Click <strong>Send</strong> to see the API&#8217;s response, which will contain the shortened URL.</p>



<p class="wp-block-paragraph">3. Accessing the API from a <strong>Web Browser Script</strong></p>



<p class="wp-block-paragraph">You can even use JavaScript to test the API by running this code in the browser’s console:</p>



<pre class="EnlighterJSRAW" data-enlighter-language="js" data-enlighter-theme="" data-enlighter-highlight="" data-enlighter-linenumbers="" data-enlighter-lineoffset="" data-enlighter-title="" data-enlighter-group="">fetch('http://127.0.0.1:5000/shorten', {
    method: 'POST',
    headers: {
        'Content-Type': 'application/json'
    },
    body: JSON.stringify({ url: 'https://example.com/some/very/long/url' })
})
.then(response => response.json())
.then(data => console.log('Shortened URL:', data.short_url))
.catch(error => console.error('Error:', error));
</pre>



<p class="wp-block-paragraph">This script sends a POST request to the API and logs the shortened URL to the console.</p>



<p class="wp-block-paragraph">The API will respond with a JSON object containing the shortened URL.</p>



<h2 id="expanding-the-project" class="wp-block-heading">Expanding the Project</h2>



<p class="wp-block-paragraph"><strong>Analytics</strong>: Track the number of times each shortened URL is accessed.</p>



<p class="wp-block-paragraph"><strong>Custom URL Shortening</strong>: Use services like Bitly or set up your own custom domain for shortened URLs.</p>



<p class="wp-block-paragraph"><strong>Database Storage</strong>: Use a database to keep track of original URLs and their shortened versions.</p>



<h3 id="conclusion" class="wp-block-heading">Conclusion</h3>



<p class="wp-block-paragraph">Creating a URL shortener in Python is a fantastic way to learn about <a href="https://shop.dakidarts.com/product/custom-api-development/" target="_blank" rel="noopener">API development</a> while building a useful tool. </p>



<p class="wp-block-paragraph">This method can be expanded to create custom URL shorteners or analytics-backed services!</p>



<p class="wp-block-paragraph"><a href="https://shop.dakidarts.com/product-category/downloads/ebook/" class="dws-sgp-ls" target="_blank" rel="noopener">
<img  decoding="async"  src="https://res.cloudinary.com/ds64xs2lp/image/upload/v1758338082/X-cover_ptewri.jpg"  alt="Discover Books By our founder Etuge Anselm."  title="How to Shorten URLs Using Python: Build a URL Shortener Flask API" >
</a>
]]></content:encoded>
					
					<wfw:commentRss>https://hub.dakidarts.com/how-to-shorten-urls-using-python-build-a-url-shortener-flask-api/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<media:content url="https://i3.wp.com/res.cloudinary.com/ds64xs2lp/image/upload/v1731254727/How-to-Shorten-URLs-Using-Python_vtggac.jpg?ssl=1" medium="image"></media:content>
            	</item>
		<item>
		<title>How to Generate QR Codes Using Python: Step-by-Step Guide &#038; Flask API Bonus</title>
		<link>https://hub.dakidarts.com/how-to-generate-qr-codes-using-python-step-by-step-guide-flask-api-bonus/</link>
					<comments>https://hub.dakidarts.com/how-to-generate-qr-codes-using-python-step-by-step-guide-flask-api-bonus/#respond</comments>
		
		<dc:creator><![CDATA[Dakidarts]]></dc:creator>
		<pubDate>Fri, 08 Nov 2024 16:04:29 +0000</pubDate>
				<category><![CDATA[Python 🪄]]></category>
		<category><![CDATA[Coding 👨‍💻]]></category>
		<category><![CDATA[How To 👨‍🏫]]></category>
		<category><![CDATA[Flask API]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[QR Code]]></category>
		<guid isPermaLink="false">https://hub.dakidarts.com/?p=10131</guid>

					<description><![CDATA[Learn to create custom QR codes in Python with our easy-to-follow guide. Discover the benefits, explore real-world applications, and get a bonus tutorial on building a QR Code generator API using Flask!]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">In today’s fast-paced digital world, QR codes have become an invaluable tool for sharing information quickly and effortlessly. </p>



<p class="wp-block-paragraph">From linking to websites and connecting to Wi-Fi networks, to sending payment details and contact information, QR codes make information accessible in a single scan. </p>



<p class="wp-block-paragraph">In this tutorial, we’ll guide you through creating your own QR codes using <a href="https://hub.dakidarts.com/tag/python/">Python</a>. With just a few lines of code, you’ll be able to generate scannable, customizable QR codes that are ready for any application.</p>



<p class="wp-block-paragraph">Plus, we’ll show you how to create a QR code generator <a href="https://shop.dakidarts.com/product/custom-api-development/" target="_blank" rel="noopener">API</a>, so you can add this functionality to your applications and services.</p>



<p class="wp-block-paragraph">QR codes are an easy and popular way to share information in a scannable format. Let’s dive into how to generate one with Python, using the <code data-enlighter-language="python" class="EnlighterJSRAW">qrcode</code> library.</p>


<div class="wp-block-image">
<figure class="aligncenter size-large"><img  decoding="async"  src="https://res.cloudinary.com/ds64xs2lp/image/upload/v1731080299/How_to_Generate_QR_Codes_Using_Python-_Step-by-Step_Guide_Flask_API_Bonus_z51yv0.gif"  alt="How to Generate QR Codes Using Python: Step-by-Step Guide &amp; Flask API Bonus"  title="How to Generate QR Codes Using Python: Step-by-Step Guide &amp; Flask API Bonus" ></figure>
</div>


<h2 id="step-1-install-required-libraries" class="wp-block-heading">Step 1: Install Required Libraries</h2>



<p class="wp-block-paragraph">First, install the <code data-enlighter-language="generic" class="EnlighterJSRAW">qrcode</code> and <code data-enlighter-language="generic" class="EnlighterJSRAW">Pillow</code> (PIL) libraries. <code data-enlighter-language="generic" class="EnlighterJSRAW">qrcode</code> generates QR codes, while <code data-enlighter-language="generic" class="EnlighterJSRAW">Pillow</code> handles image operations.</p>



<pre class="EnlighterJSRAW" data-enlighter-language="generic" data-enlighter-theme="" data-enlighter-highlight="" data-enlighter-linenumbers="" data-enlighter-lineoffset="" data-enlighter-title="" data-enlighter-group="">pip install qrcode[pil]</pre>



<h2 id="step-2-generate-a-basic-qr-code" class="wp-block-heading">Step 2: Generate a Basic QR Code</h2>



<p class="wp-block-paragraph">Create a simple Python script to generate a QR code:</p>



<pre class="EnlighterJSRAW" data-enlighter-language="python" data-enlighter-theme="" data-enlighter-highlight="" data-enlighter-linenumbers="" data-enlighter-lineoffset="" data-enlighter-title="" data-enlighter-group="">import qrcode

# Define data to encode
data = "https://example.com"

# Create QR code instance
qr = qrcode.QRCode(
    version=1,  # Controls size (1 is 21x21, higher is bigger)
    error_correction=qrcode.constants.ERROR_CORRECT_L,
    box_size=10,
    border=4,
)

# Add data to the instance
qr.add_data(data)
qr.make(fit=True)

# Create and save the image
img = qr.make_image(fill_color="black", back_color="white")
img.save("qrcode.png")
</pre>



<h3 id="explanation-of-parameters" class="wp-block-heading"><strong>Explanation of Parameters:</strong></h3>



<ul class="wp-block-list">
<li><code data-enlighter-language="generic" class="EnlighterJSRAW">version</code>: Defines the complexity of the QR code (1–40).</li>



<li><code data-enlighter-language="generic" class="EnlighterJSRAW">error_correction</code>: Adds error-correction capability, ensuring QR code readability even if damaged.</li>



<li><code data-enlighter-language="generic" class="EnlighterJSRAW">box_size</code>: Specifies how many pixels each box of the QR code should be.</li>



<li><code data-enlighter-language="generic" class="EnlighterJSRAW">border</code>: Controls the width of the border around the QR code.</li>
</ul>



<p class="wp-block-paragraph">This code generates a QR code that links to <code data-enlighter-language="generic" class="EnlighterJSRAW">https://example.com</code> and saves it as an image file called <code data-enlighter-language="generic" class="EnlighterJSRAW">qrcode.png</code>.</p>



<h2 id="bonus-turning-this-into-a-flask-api" class="wp-block-heading"><strong>Bonus: Turning This Into a Flask API</strong></h2>



<p class="wp-block-paragraph">To make this functionality accessible via an API, let’s use Flask. This API will allow users to submit text or URLs for QR code generation, with the result returned as an image file.</p>



<h3 id="step-1-install-flask" class="wp-block-heading">Step 1: Install Flask</h3>



<p class="wp-block-paragraph">Install Flask with:</p>



<pre class="EnlighterJSRAW" data-enlighter-language="generic" data-enlighter-theme="" data-enlighter-highlight="" data-enlighter-linenumbers="" data-enlighter-lineoffset="" data-enlighter-title="" data-enlighter-group="">pip install Flask</pre>



<h3 id="step-2-set-up-the-flask-api" class="wp-block-heading">Step 2: Set Up the Flask API</h3>



<p class="wp-block-paragraph">Here’s how to create a basic Flask API that generates QR codes from user input:</p>



<pre class="EnlighterJSRAW" data-enlighter-language="python" data-enlighter-theme="" data-enlighter-highlight="" data-enlighter-linenumbers="" data-enlighter-lineoffset="" data-enlighter-title="" data-enlighter-group="">from flask import Flask, request, send_file
import qrcode
import io

app = Flask(__name__)

@app.route('/generate_qr', methods=['POST'])
def generate_qr():
    data = request.json.get("data", None)
    if not data:
        return {"error": "No data provided"}, 400

    # Create QR code
    qr = qrcode.QRCode(
        version=1,
        error_correction=qrcode.constants.ERROR_CORRECT_L,
        box_size=10,
        border=4,
    )
    qr.add_data(data)
    qr.make(fit=True)
    img = qr.make_image(fill_color="black", back_color="white")

    # Save the QR code image in memory
    img_io = io.BytesIO()
    img.save(img_io, 'PNG')
    img_io.seek(0)

    return send_file(img_io, mimetype='image/png')

if __name__ == '__main__':
    app.run(debug=True)
</pre>



<h3 id="explanation-of-the-api" class="wp-block-heading"><strong>Explanation of the API</strong></h3>



<ol class="wp-block-list">
<li><strong>Route</strong>: <code data-enlighter-language="generic" class="EnlighterJSRAW">/generate_qr</code> &#8211; Accepts POST requests with JSON data.</li>



<li><strong>Data Input</strong>: Expects a JSON body with a <code data-enlighter-language="generic" class="EnlighterJSRAW">data</code> key containing the text or URL to encode.</li>



<li><strong>Image Output</strong>: Returns a generated QR code image as a PNG.</li>
</ol>



<h4 id="testing-the-api" class="wp-block-heading">Testing the API</h4>



<p class="wp-block-paragraph">Run the Flask app:</p>



<pre class="EnlighterJSRAW" data-enlighter-language="generic" data-enlighter-theme="" data-enlighter-highlight="" data-enlighter-linenumbers="" data-enlighter-lineoffset="" data-enlighter-title="" data-enlighter-group="">python app.py</pre>



<p class="wp-block-paragraph">Test the API with a tool like Postman or <code data-enlighter-language="generic" class="EnlighterJSRAW">curl</code>:</p>



<pre class="EnlighterJSRAW" data-enlighter-language="bash" data-enlighter-theme="" data-enlighter-highlight="" data-enlighter-linenumbers="" data-enlighter-lineoffset="" data-enlighter-title="" data-enlighter-group="">curl -X POST -H "Content-Type: application/json" -d '{"data": "https://example.com"}' http://127.0.0.1:5000/generate_qr --output qrcode.png
</pre>



<p class="wp-block-paragraph">The command above sends a POST request to your API and saves the output as <code data-enlighter-language="generic" class="EnlighterJSRAW">qrcode.png</code>. </p>



<h2 id="benefits-of-using-qr-codes" class="wp-block-heading">Benefits of Using QR Codes</h2>



<p class="wp-block-paragraph"><strong>Instant Access to Information</strong>: QR codes bridge the gap between offline and online, instantly directing users to websites, forms, or contact information.</p>



<p class="wp-block-paragraph"><strong>Enhanced User Experience</strong>: They make it easy for customers to access content with one scan, saving time and effort.</p>



<p class="wp-block-paragraph"><strong>Wide Application Range</strong>: QR codes support a variety of data types, from URLs to encrypted information, making them versatile across different needs.</p>



<p class="wp-block-paragraph"><strong>Customizable for Branding</strong>: QR codes can be personalized with colors, logos, and shapes, adding a branded touch to promotional material.</p>



<h2 id="use-cases-for-qr-codes" class="wp-block-heading">Use Cases for QR Codes</h2>



<p class="wp-block-paragraph"><strong>Marketing Campaigns</strong>: Direct users to specific promotions, product pages, or social media channels by embedding links in QR codes on printed materials.</p>



<p class="wp-block-paragraph"><strong>Event Check-ins</strong>: Simplify registration and access control at events by providing digital tickets as QR codes that can be scanned on entry.</p>



<p class="wp-block-paragraph"><strong>Payments</strong>: Use QR codes to facilitate secure, contactless payments, especially popular in retail and food service industries.</p>



<p class="wp-block-paragraph"><strong>Contactless Menus</strong>: Restaurants can offer digital menus by placing QR codes on tables, letting patrons scan to view without needing a physical menu.</p>



<p class="wp-block-paragraph"><strong>Networking</strong>: Business professionals can share contact details quickly by using QR codes on business cards, which link directly to contact information.</p>



<p class="wp-block-paragraph">And that’s it! You now have a Python script and a Flask <a href="https://shop.dakidarts.com/product/custom-api-development/" target="_blank" rel="noopener">API</a> to generate QR codes.</p>



<p class="wp-block-paragraph"><a href="https://shop.dakidarts.com/product-category/downloads/ebook/" class="dws-sgp-ls" target="_blank" rel="noopener">
<img  decoding="async"  src="https://res.cloudinary.com/ds64xs2lp/image/upload/v1758338082/X-cover_ptewri.jpg"  alt="Discover Books By our founder Etuge Anselm."  title="How to Generate QR Codes Using Python: Step-by-Step Guide &amp; Flask API Bonus" >
</a>
]]></content:encoded>
					
					<wfw:commentRss>https://hub.dakidarts.com/how-to-generate-qr-codes-using-python-step-by-step-guide-flask-api-bonus/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<media:content url="https://i3.wp.com/res.cloudinary.com/ds64xs2lp/image/upload/v1731080284/How-to-Generate-QR-Codes-Using-Python--Step-by-Step-Guide-_-Flask-API-Bonus_vkdovr.jpg?ssl=1" medium="image"></media:content>
            	</item>
	</channel>
</rss>
