I'm trying to use the kairos facial recognition API, and I need to upload a local file. The api documentation says that the image parameter needs to be a "Publicly accessible URL or Base64 encoded photo." In the example code, they use the data parameter for urllib2.request, and to this they pass the values string which I think is json. My question is, how can I give them a local file instead of the url "http://media.kairos.com/kairos-elizabeth.jpg"?
How to upload a file in a urllib2 request
1.1k Views Asked by Minecat40 At
1
There are 1 best solutions below
Related Questions in PYTHON
- How to store a date/time in sqlite (or something similar to a date)
- Instagrapi recently showing HTTPError and UnknownError
- How to Retrieve Data from an MySQL Database and Display it in a GUI?
- How to create a regular expression to partition a string that terminates in either ": 45" or ",", without the ": "
- Python Geopandas unable to convert latitude longitude to points
- Influence of Unused FFN on Model Accuracy in PyTorch
- Seeking Python Libraries for Removing Extraneous Characters and Spaces in Text
- Writes to child subprocess.Popen.stdin don't work from within process group?
- Conda has two different python binarys (python and python3) with the same version for a single environment. Why?
- Problem with add new attribute in table with BOTO3 on python
- Can't install packages in python conda environment
- Setting diagonal of a matrix to zero
- List of numbers converted to list of strings to iterate over it. But receiving TypeError messages
- Basic Python Question: Shortening If Statements
- Python and regex, can't understand why some words are left out of the match
Related Questions in REQUEST
- Handling both JSON and form values in POST request body with unknown values in Golang
- beautifulsoup library not showing below #document data inside iframe tag in python
- Trouble Extracting Request Body in Flask-Lambda Application Deployed on AWS Lambda via AWS SAM
- pagination, next page with scrapy
- Can we pass a hostname/IP address as a query string in a GET request in REST API
- How to properly extend the generic interface with a new generic parametr using decration merging in Typescript?
- ReadTimeout error when downloading images on AWS EC2 but not locally
- How to intercept a request made by a form submit in JavaScript?
- Unregistered urls in flask logs
- Masking in logback.xml with all request and responses
- Making a POST to a folder are recived as a GET
- Changing PHP code which uses PHPs $_REQUEST super global
- How to send huge JSON with PDF encoded over HTTPS in JMeter?
- i have intergrated daraja api with by booking app coded in java but in payments page it toasts an error message Error:Failed to initiate payment
- Can input arguments be passed to an httpyac file?
Related Questions in URLLIB2
- Stop urllib following HTTP redirects in python3
- Receiving an error when attempting to open a url link with urlopen
- I'm getting error "urllib.error.HTTPError: HTTP Error 400: Bad Request" for programmatic access to NCBI Entrez
- Python urllib2 -> urllib3 request.urlopen
- urllib.error.HTTPError: HTTP Error 404: Not Found Issue when Trying to read url from Yahoo Finance given Stock Symbol
- How do I pass a user-agent to panda's pd.read_html()?
- Get Network Error (dns_unresolved_hostname) using Requests, Urllib and Pandas
- Why does I get SSLV3_ALERT_HANDSHAKE_FAILURE error when requesting a website?
- get status_code for http.urlopen
- add authentication info for urllib.request
- Can't get header location from HTTP request python
- Forge app problem downloading with Urllib2 Authentication failed because the remote party has closed the transport stream
- How do I open all the links and save the images into a folder in a specific directory on my pc?
- python3(lambda function) failing to send response back to cloud formation template
- urllib.error.HTTPError: HTTP Error 403: Forbidden with urllib.requests
Related Questions in KAIROS-API
- Is it possible to query the latest datapoint in kairosdb for a specific tag?
- Kairos subscription for android using Rapid API
- Kairos json to firebase database - Object of type Response is not JSON serializable
- Kairosdb accepts only get request from node app
- While loop for Kairos to only capture every 1 minute
- How to parse json data with Alamofire?
- How does data retrieval happen in KairosDb?
- Kairos enroll API returns confidence in the response. What does it mean?
- Which API has better performance in Kairos, /verify or /recognize?
- How to handle ServiceRequestError in Python
- How to enroll image on Kairos Cloud using Java?
- Detect live face on camera using react native
- Kairos API : subject_id one or more required parameters are missing
- Kairos API - gallery_name is not a valid parameter
- How to upload a file in a urllib2 request
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
You can read the local image and do a base64 encoding. You can then pass it as "image" key-value pair in "values" that you form.
Below is a sample code. It does not use urllib2. But its not too different.
You can pass this "values" as "data" in you request. It should work.