Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6909967
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T08:45:20+00:00 2026-05-27T08:45:20+00:00

I have a python script running fine on my localhost. Its not an enterprise

  • 0

I have a python script running fine on my localhost. Its not an enterprise app or anything, just something I’m playing around with. It uses the “bottle” library. The app basically consumes an XML file (stored either locally or online) which contains elements with their own unique IDs, as well as some coordinates, eg mysite.com/23 will bring back the lat/long of element 23. I’m sure you’re all familiar with REST at this stage anyway.

Now, I want to put this online, but have had trouble finding a host that supports “bottle”. I have, however, found a host that has django installed.

So, my question is, how hard would it be to convert the following code from bottle to django? And can someone give me some pointers? I’ve tried to use common python libraries.

thanks.

from xml.dom.minidom import parseString
from bottle import route, run
import xml
import urllib

file = open('myfile.xml','r')
data = file.read()
dom = parseString(data)
@route('/:number')
def index(number="1"):
    rows = dom.getElementsByTagName("card")[0].getElementsByTagName("markers")[0].getElementsByTagName("marker")
    for row in rows:
        if row.getAttribute("number") == str(number):
             return str(xml.dumps({'long': row.getAttribute("lng"), 'lat': row.getAttribute("lat")}, sort_keys=True, indent=4))
    return "Not Found"


run(host='localhost', port=8080)
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T08:45:21+00:00Added an answer on May 27, 2026 at 8:45 am

    I took your question as an opportunity to learn a bit more about Django. I used The Django Book as a reference.

    Starting with an empty Django site (django-admin.py startproject testsite), I’ve changed urls.py to this:

    from django.conf.urls.defaults import patterns, include, url
    from testsite.views import index
    
    urlpatterns = patterns('',
        url(r'^(\d+)$', index),
    )
    

    And views.py to this:

    from django.http import HttpResponse
    from xml.dom.minidom import parseString
    import xml
    import urllib
    
    def index(request, number):
        data = open('myfile.xml', 'r').read()
        dom = parseString(data)
        rows = (dom.getElementsByTagName("card")[0]
                   .getElementsByTagName("markers")[0]
                   .getElementsByTagName("marker"))
    
        for row in rows:
            if row.getAttribute("number") == str(number):
                 return HttpResponse(str(xml.dumps({'long': row.getAttribute("lng"), 
                        'lat': row.getAttribute("lat")}, sort_keys=True, indent=4)))
        return HttpResponse("Not Found")
    

    Caveat: I’ve not tested the XML code, only Django-related one, which I’ve tested via python manage.py runserver.

    The Django Book contains a lot of information, including how to deploy this on a production server.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a Python script that is running a few ls commands. This script
I have a python script that ends with running a program (iexpress.exe) in a
Problem: I have a python script that I have running as a service. It's
I have a python script running in background, and I want to log all
Does anyone know if it is possible to have a Python script running in
I have a web crawling python script running in terminal for several hours, which
Well, I have a python script running on Mac OS X. Now I need
I have a Python CGI script script.py running on a server. It produces a
We have a server running Windows 7 Pro. I have several Python script I'd
Hey I have a windows server running python CGI scripts and I'm having a

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.