


python flask html/css mysql BAE creates a CSDN resume automatic generation system (with complete source code of the website)_html/css_WEB-ITnose
1. Background
I have always wanted to write a web app for fun. A few days ago, I saw a web-app automatically generated by github resume, so I started to copy it. A csdn resume generator. The structure is very simple, the front end is an html/css file (this imitates the github web page, because the blogger doesn't know much about the front end). The background is a crawler software that can crawl personal information from csdn, display it, and finally deploy it to Baidu Cloud. Baidu's cloud database is really a scam. I have been debugging it for a long time, but I still can't insert data. Okay, let’s take a picture first, the project address is http://resumecsdn.duapp.com/.
(2) Generated Resume
(1) Front-end
(2) flask
flask is a relatively lightweight python web framework. The blogger originally planned to use Douban That one (Douban’s backend is written in python), but found it too difficult, so I switched to flask. The benefits of flask are very straightforward.
Like this, you can directly obtain the web page path using app.route, and render_template('index.html') opens the index page. You can take a look at its file structure. All HTML is stored in the template folder, and css configuration files and databases can be placed in the static folder.
The advantage of this framework is that you can start working on it just by looking at the examples. I recommend a website: http://maximebf.com/blog/2012/10/building-websites-in- python-with-flask/
@app.route('/')def home(): #mysql_manager.sql_connect() return render_template('index.html')@app.route('/signup', methods=['POST'])def signup(): #session['username'] = request.form['username'] session['message'] = request.form['message'] return redirect(url_for('message'))
(3) crawler
(4) Deploy to BAE
headers = { 'User-Agent':'Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.6) Gecko/20091201 Firefox/3.5.6' } req = urllib2.Request( url='http://blog.csdn.net/'+name, headers = headers )
Usage: Register an account, and then it will give you a git address and clone it locally. Then you can modify it. Of course, you have to push it after the modification. You have to click "Quick Publish" every time you modify it.
Here are some things to note:
1. First is app.conf, and add an asterisk to the url.
handlers: - url : /.* script: __init__.py
flaskMySQL-python
Local debugging The running program is the following statement in the __init__.py file, and then you can view it in the browser
if __name__ == '__main__': app.run()
4. Pay attention to killing the thread after each local debugging. The method is in the shell Here:
from bae.core.wsgi import WSGIApplication application = WSGIApplication(app)
lsof -i:5000
-------------------------------------------------- -------------------------------------------------- -------------------------------------------------- -----
Almost that these are enough. If you want to know a deeper understanding, you can go to the project to see the GitHub address project demonstration address
When you are troubled by everyone, give a STAR, have Star100 project It has always been my dream
/********************************
* Please indicate the source for reprinting: http://blog.csdn. net/buptgshengod
****************************************** ****/

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics











HTML is suitable for beginners because it is simple and easy to learn and can quickly see results. 1) The learning curve of HTML is smooth and easy to get started. 2) Just master the basic tags to start creating web pages. 3) High flexibility and can be used in combination with CSS and JavaScript. 4) Rich learning resources and modern tools support the learning process.

WebdevelopmentreliesonHTML,CSS,andJavaScript:1)HTMLstructurescontent,2)CSSstylesit,and3)JavaScriptaddsinteractivity,formingthebasisofmodernwebexperiences.

HTML defines the web structure, CSS is responsible for style and layout, and JavaScript gives dynamic interaction. The three perform their duties in web development and jointly build a colorful website.

GiteePages static website deployment failed: 404 error troubleshooting and resolution when using Gitee...

AnexampleofastartingtaginHTMLis,whichbeginsaparagraph.StartingtagsareessentialinHTMLastheyinitiateelements,definetheirtypes,andarecrucialforstructuringwebpagesandconstructingtheDOM.

To achieve the effect of scattering and enlarging the surrounding images after clicking on the image, many web designs need to achieve an interactive effect: click on a certain image to make the surrounding...

HTML, CSS and JavaScript are the three pillars of web development. 1. HTML defines the web page structure and uses tags such as, etc. 2. CSS controls the web page style, using selectors and attributes such as color, font-size, etc. 3. JavaScript realizes dynamic effects and interaction, through event monitoring and DOM operations.

The Y-axis position adaptive algorithm for web annotation function This article will explore how to implement annotation functions similar to Word documents, especially how to deal with the interval between annotations...
