Jump to content

tarun7si2

Members
  • Posts

    8
  • Joined

  • Last visited

Posts posted by tarun7si2

  1.  

    I was on johnny before it crashed.

     

    Domain name : tarun7singh.heliohost.org

    username : tarun7si

     

    Can i now signup for tommy?

     

    Does tommy have Python support?

     

    Best wishes for getting johnny back up fast.

    That username and domain are free now.

    As far as I know, Python isn't running on Tommy.

    can you please move my domain to tommy. and my username was changed by administrator, why?

    https://www.heliohost.org/status says no account present on this email, why?

  2. I was on johnny before it crashed.

     

    Domain name : tarun7singh.heliohost.org

    username : tarun7si

     

    Can i now signup for tommy?

     

    Does tommy have Python support?

     

    Best wishes for getting johnny back up fast.

  3. Thanks for processing this request, and it is working now.

     

    http://tarun7singh.heliohost.org/test.cgi

     

    For all others trying to import modules that are not available, i found a workaround for it.

     

    I will try to explain it as best as i can (I tested it on Ubuntu) -

     

    1. download and install module on your computer (let's say tweepy)

     

    2. upload all the files related to a folder with name of module (for this case tweepy)

     

    3. add these lines before your code. (for enabling debugging)

    #enable debugging
    import cgitb
    cgitb.enable()

    4. now import sys module and append path to your library. (in this case my module folder was in public_html)

    import sys
    sys.path.append("/tweepy")
    import tweepy

    5. You have to do this for all the other libraries required by your library. It will start working.

     

    Hope this helps.

×
×
  • Create New...