Sunum yükleniyor. Lütfen bekleyiniz

Sunum yükleniyor. Lütfen bekleyiniz

Python ve Cgi Scripting Giriş

Benzer bir sunumlar


... konulu sunumlar: "Python ve Cgi Scripting Giriş"— Sunum transkripti:

1 Python ve Cgi Scripting Giriş

2 Python CGI ile Programlama
Common Gateway Interface, veya CGI, HTTP sunucuları gibi bilgi sunucuları ile arabirim harici ağ geçidi programları için bir standarttır. CGI (Common Gateway Interface), Web Servisleri ile bu servislerin dışındaki programlar arasında etkileşim (ortak çalışma) platformu oluşturmak için geliştirilmiş bir standarttır. CGI, Web'in statik yapısına, HTML kodu içinden çağrılan CGI programları dinamik bir nitelik kazandıran programdır.

3 CGI programları “çalıştırılabilir” kodlar olduğundan, bir başkası, sizin sisteminizde program çalıştırabilir

4 Python klasörünün altında cgi-bin oluşturun. İçine hello.py koyun.
print 'Content-Type: text/html' print print '<html>' print '<head><title>Hello from Python</title></head>' print '<body>' print '<h2>Hello from Python</h2>' print '</body></html>‘

5 Cmd prompttan Python –m http.server –cgi Yazın. Web browser açın: yazın

6 Request Handler Kullanmak
import textwrap from six.moves.BaseHTTPServer import BaseHTTPRequestHandler, HTTPServer class HelloRequestHandler(BaseHTTPRequestHandler): def do_GET(self): if self.path != '/': self.send_error(404, "Object not found") return self.send_response(200) self.send_header('Content-type', 'text/html; charset=utf-8') self.end_headers() response_text = textwrap.dedent('''\ <html> <head> <title>Greetings to the world</title> </head> <body> <h1>Greetings to the world</h1> <p>Hello, world!</p> </body> </html> ''') self.wfile.write(response_text.encode('utf-8')) server_address = ('', 8000) httpd = HTTPServer(server_address, HelloRequestHandler) httpd.serve_forever() Request Handler Kullanmak

7 Flask ile CGI (pip install flask)
from flask import Flask app = def hello(): return "Hello World!" if __name__ == "__main__": app.run()

8 App.py from flask def hello(name=None): return render_template('index.html', name=name)

9 İndex.html <!doctype html> <title>Hello from Flask</title> {% if name %} <h1>Hello {{ name }}!</h1> {% else %} <h1>Hello, World!</h1> {% endif %}

10 Örnek :Flask Paketi kullanan KlasörYapısı
/hello_flask.py /templates/                basepage.html                middle.html                result.html /static/               main.css

11 basepage.html <!doctype html> <html> <head>
        <title>{{ page_title }}</title>         <link rel="stylesheet" href="static/main.css"/>     </head>     <body>         {% block body %}         {% endblock %}     </body> </html>

12 middle.html {% extends 'basepage.html' %} {% block body %}
<h2>{{ page_title }}</h2> <form method='POST' action='/sum'> <table> <p>Sum of two values</p> <tr><td>First Value:</td><td><input name="firstValue" type="TEXT" width="10"</td></tr> <tr><td>Second Value:</td><td><input name="secondValue" type="TEXT" width="10"</td></tr> </table> <p><input value="Calculate" type="SUBMIT"></p> </form> {% endblock %}

13 result.html {% extends "basepage.html" %} {% block body %}
<h2>{{ page_title }}</h2> <p>You submitted the following data:</p> <table>     <tr><td>First:</td><td>{{ first_value }}</td></tr>     <tr><td>Second:</td><td>{{ second_value }}</td></tr> </table> <p>Result</p> <h3>{{ sum_result }}</h3> {% endblock %}

14 hello_plask.py from flask import Flask, render_template,request
app=Flask(__name__) @app.route('/') def entry_page()->'html':     return render_template('einstein.html',page_title='Wellcome to Little Einstein Project') @app.route('/sum',methods=['POST']) def sum()->'html':     x=int(request.form['firstValue'])     y=int(request.form['secondValue'])     return render_template('result.html',page_title='Calculation result',sum_result=(x+y),first_value=x,second_value=y,) app.run(debug=True)

15


"Python ve Cgi Scripting Giriş" indir ppt

Benzer bir sunumlar


Google Reklamları