Skip to content

dheeraj-326/fetch_coding

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Unique Email Finder

This is a very simple Flask web application written in Python which removes irrelevant characters like '.' and '+' from the emails given to it and returns the number of unique email addresses.

Sample cURL Request:

curl --location --request POST 'http://127.0.0.1:5000/uniqueemails' \
--header 'Content-Type: application/json' \
--data-raw '{
    "emails": [
        "[email protected]",
        "[email protected]",
        "[email protected]"
    ]
}'

How do I run this locally?

  1. This application was developed using Python 3.8 and hence the same version is recommended although any version of Python 3 should work fine.
  2. Go to the root path of the project
  3. Run pip install -r requirements.txt
  4. cd src
  5. flask run

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages