Featurepreneur
  • Featurepreneur
  • Learning challenge and battle
  • Installation guide for Freshers
  • FAQ - ML Enthusiasts
  • Featurepreneur vs Entrepreneur
  • How to publish a feature at Featurepreneur?
  • FAQ - Employers
  • Featurepreneur Benefits
  • Intern Graduation Criteria
  • Tact Coins
  • Spin Time - Winners
  • Spin Time - Title Nominations
  • Featurepreneur of the Week
  • Junior-Featurepreneur of the week
  • Writer of the week
  • Learner of the Week
  • Mentor of the Week
  • Meme Developer of the week
  • Learning Team of the Week
  • Tool Researcher of the Week
  • Intern of the week
  • Learning Challenge Tournament
  • Featurethon - Season 1
  • Featurethon Season 2
  • Scapanza
  • Featurepreneur Kickout Rule
  • Error Bee of the Week
  • Game: TactSay
  • TactSay Winners
  • Crossword Solver of the Week
  • Secret Admirers
  • Game Coins
  • Training Program (ML & MaaMs)
  • Mentor
  • Junior Mentor
  • FPR Royalty
  • Netflix Shift
  • Mission TactCommerce 007
  • Public Feature Requirements
  • Public Feature Requirements - II
  • Public Feature Requirements III
  • Public Feature Requirements IV
  • Public Feature Requirements V
  • Public Feature Requirements Jr
  • Newbie Feature Requirements
  • Research Requirements
  • Mission99
  • Mission F25
  • EduMemeTech
  • Vlad and CSP Education Fund
  • Gaming Requirements
  • IMLF
  • Badges
  • GLS
  • Top 8 Wish List
  • Linux Evangelism
  • Flask Requirements
  • AWS Requiements
  • Docker Requirements
  • CircleCI Requirements
  • Kubernetes Requirements
  • Ubuntu Installation Issues
  • Javascript Best Resources
  • AWS Lambda Requirements
  • AWS Beanstalk Requirements
  • AWS ECS Requirements
  • Starbuck Fund
  • PM2 Requirements
  • Shadow Articles
  • 5$ Challenge
  • Game: Pronounce Bee
  • Universities with Advanced Research options
  • Online Resumes/Profiles
  • Prime Numbers
  • Open Source Projects
  • Various Audio Research and Work
  • NLP Repositories
  • ML Interview Questions
  • ML Interview Questions (In house collection)
  • ML Interview Questions - Gamified version
  • ML/DL Repositories / Libraries
  • Tact Effects
  • EdWish
  • SWIFT
  • CrowdEngine
  • ML Time
  • Bootcamp - Python Dev
  • Bootcamp - MLOps
  • Bootcamp - ML Engineering 101
  • Bootcamp Projects
  • Python 101
  • ML 101
  • Fun with Python
  • Python Advanced with AWS
  • Featurepreneur YouTube
  • AMA Sessions
    • S1 : AMA with Jatin
    • S2 : AMA with Muthu Revanth
  • Trivia Time
  • Random Fun Exam
  • Bed with Numpy
  • PyTorch Interview Questions
  • Brain Storming
  • Equality Essay Contest
  • Eat Sleep Code Contest
  • AWS Scholarship
  • Tact Lingo
  • Workshop Add-ons
  • Modularization
  • Article Request
  • Smalltics
  • MoU
  • SEAD
  • You run the world, Girl!
  • Reading Club
  • AWS Certification Training
  • NGO Coding
  • Effort Levels
  • AWS Certifications
  • Azure Certifications
  • Job Shadowing as a Certificate (JSaaC)
  • Statistics Topics
  • Topic Researcher
  • Privacy
  • Terms and Conditions
  • MongoDB Certification
  • Tact Tech Component (TTC)
  • Zero Slides Policy
  • Random Challenge
  • YT Download Notes
  • Featurepreneur SWAGS
  • IT Lingo
  • My Book Visual
  • Features History
  • Tool of the week
  • Research of the week
  • Bootcamp Analyzer
  • Random ML Feeds
  • Conda Installation History
  • Bootcamp Intro Session Topics
  • Skills Test
  • Commonality Test
  • Tact Pronunciation Test
  • Tact Intern
  • Leadership Training
  • Project SICAdian 772
  • EiBE
  • Tact AWS Scholarship
  • Chat Movie/TVShow Lines
  • Typing Test
  • Regular Events
  • ZUFÄRIELLE
  • Fivonacci
  • Ubuntu Kid
  • Rapid Duck
  • FPR Dev FAQ
  • ML Tools
  • Hidden Stocks
  • Real-Time Data Scenarios
    • Learning Challenge
Powered by GitBook
On this page

Was this helpful?

Flask Requirements

This flask has Python in it, not java!

PreviousLinux EvangelismNextAWS Requiements

Last updated 4 years ago

Was this helpful?

  1. Do a simple Hello

  2. Do a simple math

  3. Use try/except in Flask

  4. How to change port number in Flask

  5. How to enable debugging in Flask

  6. How to add logger in Flask

  7. How to get environment variable in Flask

  8. How to return a dict in the Flask API

  9. Create two same API end points and see whether it works or not

  10. Try to accept only float in Request param

  11. Try to get city in the Flask request param

  12. Try to consume an API () in Flask API itself

  13. Come up with a small decorator to validate the reqeust parameters

  14. Create a post method in Flask with 2 inputs (name, city) and print them

  15. Create a simple Flask api to return the reversed string (when I input "hello", it should return "olleh")

  16. Return the current IP by using some IP utils in Flask API

  17. Translate any word from English to Spanish by using Googletrans python library in Flask API.

  18. Create a simple form in Jinja template and access them via Flask API

  19. Upload a simple text file in Flask API and Jinja

  20. Write one line file in a text file and upload them in Flask by using Jinja. Flask API has to return how many words in the text file.

  21. Have some city names in a text file (see below)

Chennai
Toronto
Montreal
Madurai
Chennai
Montreal
Toronto

You need to upload the file via Jinja and then it should return the unique cities as a list like below:

{
    "result" : [
        "Chennai",
        "Toronto",
        "Montreal",
        "Madurai"
    ]
}

22. abd

23. abc

https://reqres.in/api/users/2