How to match face in python [closed] - python

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 2 years ago.
Improve this question
I am developing a system where the user at the time of registration will take a photo of the face.
Then this user will try to authenticate, using the face (just like on the iPhone X).
Which library do I use for this?
I want to make a 1: N match.
Is there a pattern for extracting minutiae from a face, as in digital biometrics?
I found this lib https://github.com/ageitgey/face_recognition, but I'm in doubt if it is meant to be used for user authentication.
If there is an online or offline service that does this, it will also help me.

Take a look at DeepFace, they reference several possible models you can use including: VGG-Face , Google FaceNet, OpenFace and Facebook DeepFace. Read up on them and find the best one for your application.

Related

direct messages in flask python [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 2 years ago.
Improve this question
so I'm developing python flask app where users can see other user's profile then they can click on a bottom where they can send real time direct messages using. (like twitter direct messages).
can someone lead me to w website or source to start with.
Dose even flask can do that ?
BIG Thanks in advance.
For this, you will need to use sockets. Flask-SocketIO is what you should use for this. Here's a decent guide on how to set it up, specifically for using for chat.
https://codeburst.io/building-your-first-chat-application-using-flask-in-7-minutes-f98de4adfa5d
It's for building a chat room, not private messages, but I think it's a good base and you can work out what you need to change to do private messages from here.

Interact with web pages using python [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
I am quite fluent in Python, but have only really used it for data analysis.
I would like to learn how I can interact with webpages. For instance, I want to start by writing a code that will press a button on a webpage for me.
I just don't know where to start or what to google to find resources about this.
Could anyone point me out in the right directions, or suggest some key words that I could search for?
Thanks.
Have you tried to use the pyautogui module, which allows you to programmatically control the mouse and the keyboard?
An example of an automatic form filler on a webpage is available in chapter 18 of the Automate the Boring Stuff with Python book.

twitter API for python with modifying favorites and other features [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I want to make a python program which has functionality like all possible twitter operations mainly creating and deleting favorites .
There are many packages like tweepy , python-twitter ,TweetPony ,Python Twitter Tools ,twitter-gobject.
Which python package is best among above, with respect to maintance , speed , features.
I don't see any reason to use package here.
The twitter api is quite straight forward, use the requests library with its oauth1 support.
You will need to do some small work to get the initial tokens, but after that, its only straight HTTP calls.

How to upload/publish products to Amazon via Amazon MWS API? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I heard SubmitFeed API is for adding products. But i didn't find any example.
By the way, i need a Python solution.
Thanks a lot.
The general gist of it is you use SubmitFeed to send your product list. Then you must check the status of the submission. Once the submission is complete you can then get the results. You have to repeat these steps for images, pricing and availability.
It's a bit of a pain to get started with it, Amazon supply a LOT of useful information but it is everywhere and not particulary very easy to understand at first. Experiment with just adding products to your inventory and go from there. Make use of the scratchpad too, very handy tool indeed.
As for python I can't help you there I'm afraid but I think there is sample code within the python download available from Amazon.

Sample python code for using Google books api [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 2 years ago.
Improve this question
I m working on a library project where users can add books into their library. So I tried finding some sample code that will help me get started but could not find any. So I want to know how to use Google Book API to get Title,Description,Book Cover image and ISBN code of the queried book? btw I want the python code example. Eagerly await your assistance. Thank You.

Categories

Resources