How to run my webscraper with a Flask REST API without waiting for it to finish before returning a response? [duplicate] Unicorn Meta Zoo #1: Why another podcast? Announcing the arrival of Valued Associate #679: Cesar Manara Data science time! April 2019 and salary with experience The Ask Question Wizard is Live!How to use threading in Python?Running background Celery task in FlaskHow to make a Python script standalone executable to run without ANY dependency?How to return images in flask response?Return JSON response from Flask viewHow do I get Flask to run on port 80?Flask with mod_wsgi - Cannot call my modulesAPI serving up old responses in flaskCan't make Restplus Flask API run using uWSGIFlask multiprocessing does not return the response until a process is finishedrunning Docker SDK from Gunicorn/Nginx WSGI API Permission errorHow to use a webscraper running on an EC2 instance with lambda functions?

Suing a Police Officer Instead of the Police Department

Can gravitational waves pass through a black hole?

How would it unbalance gameplay to rule that Weapon Master allows for picking a fighting style?

When speaking, how do you change your mind mid-sentence?

What is the purpose of the side handle on a hand ("eggbeater") drill?

What is the numbering system used for the DSN dishes?

/bin/ls sorts differently than just ls

How did Elite on the NES work?

Determinant of a matrix with 2 equal rows

Is Bran literally the world's memory?

Marquee sign letters

Does using the Inspiration rules for character defects encourage My Guy Syndrome?

France's Public Holidays' Puzzle

What is a 'Key' in computer science?

How would you suggest I follow up with coworkers about our deadline that's today?

Why do people think Winterfell crypts is the safest place for women, children & old people?

Retract an already submitted Recommendation Letter (written for an undergrad student)

Is it appropriate to mention a relatable company blog post when you're asked about the company?

to see a doctor

What were wait-states, and why was it only an issue for PCs?

What is the definining line between a helicopter and a drone a person can ride in?

Why aren't road bicycle wheels tiny?

Getting AggregateResult variables from Execute Anonymous Window

What's parked in Mil Moscow helicopter plant?



How to run my webscraper with a Flask REST API without waiting for it to finish before returning a response? [duplicate]



Unicorn Meta Zoo #1: Why another podcast?
Announcing the arrival of Valued Associate #679: Cesar Manara
Data science time! April 2019 and salary with experience
The Ask Question Wizard is Live!How to use threading in Python?Running background Celery task in FlaskHow to make a Python script standalone executable to run without ANY dependency?How to return images in flask response?Return JSON response from Flask viewHow do I get Flask to run on port 80?Flask with mod_wsgi - Cannot call my modulesAPI serving up old responses in flaskCan't make Restplus Flask API run using uWSGIFlask multiprocessing does not return the response until a process is finishedrunning Docker SDK from Gunicorn/Nginx WSGI API Permission errorHow to use a webscraper running on an EC2 instance with lambda functions?



.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








0
















This question already has an answer here:



  • How to use threading in Python?

    17 answers



  • Running background Celery task in Flask

    1 answer



I have a RESTFUL API that I built with Flask which runs a webscraper to download files.



I want to host it on a linux EC2 instance and serve it using NGINX and Gunicorn.



I have been testing my API with postman but because the scraper takes about 10 minutes to finish postman hangs waiting for a response.



My flask app looks something like this:



from flask import Flask

application = Flask(__name__)

@application.route('/scraper/run', methods=['POST'])
def init_scrape():
data = request.json
command = './web_scrape.py -us "0" -p "1" -url "2"'.format(data['username'], data['password'], data['url'])

# This takes about 10 minutes
output = subprocess.check_output(['bash','-c', command])

return jsonify('Scraping this site: ': request.json["url"]), 201

if __name__ == '__main__':
application.run(host="0.0.0.0", port="8080")


Is there a way I can run my scraper without having to wait for it to finish before returning some data to postman?










share|improve this question













marked as duplicate by davidism flask
Users with the  flask badge can single-handedly close flask questions as duplicates and reopen them as needed.

StackExchange.ready(function()
if (StackExchange.options.isMobile) return;

$('.dupe-hammer-message-hover:not(.hover-bound)').each(function()
var $hover = $(this).addClass('hover-bound'),
$msg = $hover.siblings('.dupe-hammer-message');

$hover.hover(
function()
$hover.showInfoMessage('',
messageElement: $msg.clone().show(),
transient: false,
position: my: 'bottom left', at: 'top center', offsetTop: -7 ,
dismissable: false,
relativeToBody: true
);
,
function()
StackExchange.helpers.removeMessages();

);
);
);
Mar 22 at 15:04


This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
























    0
















    This question already has an answer here:



    • How to use threading in Python?

      17 answers



    • Running background Celery task in Flask

      1 answer



    I have a RESTFUL API that I built with Flask which runs a webscraper to download files.



    I want to host it on a linux EC2 instance and serve it using NGINX and Gunicorn.



    I have been testing my API with postman but because the scraper takes about 10 minutes to finish postman hangs waiting for a response.



    My flask app looks something like this:



    from flask import Flask

    application = Flask(__name__)

    @application.route('/scraper/run', methods=['POST'])
    def init_scrape():
    data = request.json
    command = './web_scrape.py -us "0" -p "1" -url "2"'.format(data['username'], data['password'], data['url'])

    # This takes about 10 minutes
    output = subprocess.check_output(['bash','-c', command])

    return jsonify('Scraping this site: ': request.json["url"]), 201

    if __name__ == '__main__':
    application.run(host="0.0.0.0", port="8080")


    Is there a way I can run my scraper without having to wait for it to finish before returning some data to postman?










    share|improve this question













    marked as duplicate by davidism flask
    Users with the  flask badge can single-handedly close flask questions as duplicates and reopen them as needed.

    StackExchange.ready(function()
    if (StackExchange.options.isMobile) return;

    $('.dupe-hammer-message-hover:not(.hover-bound)').each(function()
    var $hover = $(this).addClass('hover-bound'),
    $msg = $hover.siblings('.dupe-hammer-message');

    $hover.hover(
    function()
    $hover.showInfoMessage('',
    messageElement: $msg.clone().show(),
    transient: false,
    position: my: 'bottom left', at: 'top center', offsetTop: -7 ,
    dismissable: false,
    relativeToBody: true
    );
    ,
    function()
    StackExchange.helpers.removeMessages();

    );
    );
    );
    Mar 22 at 15:04


    This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.




















      0












      0








      0









      This question already has an answer here:



      • How to use threading in Python?

        17 answers



      • Running background Celery task in Flask

        1 answer



      I have a RESTFUL API that I built with Flask which runs a webscraper to download files.



      I want to host it on a linux EC2 instance and serve it using NGINX and Gunicorn.



      I have been testing my API with postman but because the scraper takes about 10 minutes to finish postman hangs waiting for a response.



      My flask app looks something like this:



      from flask import Flask

      application = Flask(__name__)

      @application.route('/scraper/run', methods=['POST'])
      def init_scrape():
      data = request.json
      command = './web_scrape.py -us "0" -p "1" -url "2"'.format(data['username'], data['password'], data['url'])

      # This takes about 10 minutes
      output = subprocess.check_output(['bash','-c', command])

      return jsonify('Scraping this site: ': request.json["url"]), 201

      if __name__ == '__main__':
      application.run(host="0.0.0.0", port="8080")


      Is there a way I can run my scraper without having to wait for it to finish before returning some data to postman?










      share|improve this question















      This question already has an answer here:



      • How to use threading in Python?

        17 answers



      • Running background Celery task in Flask

        1 answer



      I have a RESTFUL API that I built with Flask which runs a webscraper to download files.



      I want to host it on a linux EC2 instance and serve it using NGINX and Gunicorn.



      I have been testing my API with postman but because the scraper takes about 10 minutes to finish postman hangs waiting for a response.



      My flask app looks something like this:



      from flask import Flask

      application = Flask(__name__)

      @application.route('/scraper/run', methods=['POST'])
      def init_scrape():
      data = request.json
      command = './web_scrape.py -us "0" -p "1" -url "2"'.format(data['username'], data['password'], data['url'])

      # This takes about 10 minutes
      output = subprocess.check_output(['bash','-c', command])

      return jsonify('Scraping this site: ': request.json["url"]), 201

      if __name__ == '__main__':
      application.run(host="0.0.0.0", port="8080")


      Is there a way I can run my scraper without having to wait for it to finish before returning some data to postman?





      This question already has an answer here:



      • How to use threading in Python?

        17 answers



      • Running background Celery task in Flask

        1 answer







      python flask






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Mar 22 at 14:53









      Connor McCannConnor McCann

      12510




      12510




      marked as duplicate by davidism flask
      Users with the  flask badge can single-handedly close flask questions as duplicates and reopen them as needed.

      StackExchange.ready(function()
      if (StackExchange.options.isMobile) return;

      $('.dupe-hammer-message-hover:not(.hover-bound)').each(function()
      var $hover = $(this).addClass('hover-bound'),
      $msg = $hover.siblings('.dupe-hammer-message');

      $hover.hover(
      function()
      $hover.showInfoMessage('',
      messageElement: $msg.clone().show(),
      transient: false,
      position: my: 'bottom left', at: 'top center', offsetTop: -7 ,
      dismissable: false,
      relativeToBody: true
      );
      ,
      function()
      StackExchange.helpers.removeMessages();

      );
      );
      );
      Mar 22 at 15:04


      This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.









      marked as duplicate by davidism flask
      Users with the  flask badge can single-handedly close flask questions as duplicates and reopen them as needed.

      StackExchange.ready(function()
      if (StackExchange.options.isMobile) return;

      $('.dupe-hammer-message-hover:not(.hover-bound)').each(function()
      var $hover = $(this).addClass('hover-bound'),
      $msg = $hover.siblings('.dupe-hammer-message');

      $hover.hover(
      function()
      $hover.showInfoMessage('',
      messageElement: $msg.clone().show(),
      transient: false,
      position: my: 'bottom left', at: 'top center', offsetTop: -7 ,
      dismissable: false,
      relativeToBody: true
      );
      ,
      function()
      StackExchange.helpers.removeMessages();

      );
      );
      );
      Mar 22 at 15:04


      This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
























          0






          active

          oldest

          votes

















          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes

          Popular posts from this blog

          Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

          SQL error code 1064 with creating Laravel foreign keysForeign key constraints: When to use ON UPDATE and ON DELETEDropping column with foreign key Laravel error: General error: 1025 Error on renameLaravel SQL Can't create tableLaravel Migration foreign key errorLaravel php artisan migrate:refresh giving a syntax errorSQLSTATE[42S01]: Base table or view already exists or Base table or view already exists: 1050 Tableerror in migrating laravel file to xampp serverSyntax error or access violation: 1064:syntax to use near 'unsigned not null, modelName varchar(191) not null, title varchar(191) not nLaravel cannot create new table field in mysqlLaravel 5.7:Last migration creates table but is not registered in the migration table

          은진 송씨 목차 역사 본관 분파 인물 조선 왕실과의 인척 관계 집성촌 항렬자 인구 같이 보기 각주 둘러보기 메뉴은진 송씨세종실록 149권, 지리지 충청도 공주목 은진현