search
HomeWeb Front-endHTML Tutorialpython 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



2. Project introduction

(1) Front-end


The front-end is mainly html and css. I modified this by referring to other people’s work. It should be easier for people who have coding experience. The interaction between the front-end and the back-end is mainly by setting the method in the html first, and then transmitting the data like {{{data}}. This is relatively easy. You can understand it at a glance in the code, so I won’t go into details.

(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


Introduce the crawler file , which is the crawler file in the background. Because it is disguised as a browser browsing, a head is added to avoid some anti-crawler websites. The rest is to use urllib's function and regular matching, which is easier to do.


(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      )  
What does BAE say? There are very few mysql function documents. This makes me very unhappy. But other functions are still available, especially third-party libraries that support many Python, which can be defined in requirements.txt.
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.


2. Then, add the required third-party libraries to requirements.txt, so that bae will automatically install them for you.

handlers:  - url : /.*    script: __init__.py


3. Pay attention to the difference between local debugging and putting it in BAE

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


Put it on BAE for local debugging Comment out the statement and add in __init__.py:

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)  
Then kill the corresponding ID number

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

****************************************** ****/



Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
From Text to Websites: The Power of HTMLFrom Text to Websites: The Power of HTMLApr 13, 2025 am 12:07 AM

HTML is a language used to build web pages, defining web page structure and content through tags and attributes. 1) HTML organizes document structure through tags, such as,. 2) The browser parses HTML to build the DOM and renders the web page. 3) New features of HTML5, such as, enhance multimedia functions. 4) Common errors include unclosed labels and unquoted attribute values. 5) Optimization suggestions include using semantic tags and reducing file size.

Understanding HTML, CSS, and JavaScript: A Beginner's GuideUnderstanding HTML, CSS, and JavaScript: A Beginner's GuideApr 12, 2025 am 12:02 AM

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

The Role of HTML: Structuring Web ContentThe Role of HTML: Structuring Web ContentApr 11, 2025 am 12:12 AM

The role of HTML is to define the structure and content of a web page through tags and attributes. 1. HTML organizes content through tags such as , making it easy to read and understand. 2. Use semantic tags such as, etc. to enhance accessibility and SEO. 3. Optimizing HTML code can improve web page loading speed and user experience.

HTML and Code: A Closer Look at the TerminologyHTML and Code: A Closer Look at the TerminologyApr 10, 2025 am 09:28 AM

HTMLisaspecifictypeofcodefocusedonstructuringwebcontent,while"code"broadlyincludeslanguageslikeJavaScriptandPythonforfunctionality.1)HTMLdefineswebpagestructureusingtags.2)"Code"encompassesawiderrangeoflanguagesforlogicandinteract

HTML, CSS, and JavaScript: Essential Tools for Web DevelopersHTML, CSS, and JavaScript: Essential Tools for Web DevelopersApr 09, 2025 am 12:12 AM

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 Roles of HTML, CSS, and JavaScript: Core ResponsibilitiesThe Roles of HTML, CSS, and JavaScript: Core ResponsibilitiesApr 08, 2025 pm 07:05 PM

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.

Is HTML easy to learn for beginners?Is HTML easy to learn for beginners?Apr 07, 2025 am 12:11 AM

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.

What is an example of a starting tag in HTML?What is an example of a starting tag in HTML?Apr 06, 2025 am 12:04 AM

AnexampleofastartingtaginHTMLis,whichbeginsaparagraph.StartingtagsareessentialinHTMLastheyinitiateelements,definetheirtypes,andarecrucialforstructuringwebpagesandconstructingtheDOM.

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
3 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
3 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
3 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
WWE 2K25: How To Unlock Everything In MyRise
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)