I was wondering whether there's any Python-based tool/script that I can use to visualize the OCR results, in JSON format, that I got after using Microsoft Azure Read API on a PDF document.
I've found this one but it's only available for MS Windows users.
Thank you!
There is a brand new online portal provided by Microsoft to test this service, among others, without developing (but it will use your own Azure resources): https://preview.vision.azure.com/demo/OCR
The advantage is that it will directly list your available resources so you just have to pick the right one, then you test, and there are also some samples.
I tested, it works with a PDF:
Here is the link to kiosk sample on github for computer vision explorer.
Document: https://github.com/microsoft/Cognitive-Samples-IntelligentKiosk/blob/master/Documentation/VisionAPIExplorer.md
Direct download: http://aka.ms/kioskapp
Related
I was pondering the idea of a script/program that will auto upload to Youtube from cloud storage. I'm sure this has already been done and would appreciate it if someone could put me on the right path.
Thanks
Your are not giving a lot of detail informations e.g. what cloud you use? Maybe i'm keeping it way too simple though:
I guess this problem can be splited in to two parts:
Download to video to your local system. There are a lot of articles/documentation for all kind of cloud storage provider e.g. google cloud
Use the provided YouTube API documentation to upload your video you just fetched to your local system.
You may want to delete the video on your local file system.
I am looking for automating some mandane workflow at my office here. For which I would like to use the OneDrive API for python.
Assuming I have a list of files in onedrive. I would like to get the list of items in a folder from my OneDrive and would also like to generate the shareable link for each of those items using Python.
Is there an API with which I can achieve the same ?
Looking forward for some answers
You can communicate with OneDrive through Microsoft Graph APIs.
The API you're looking for is the CreateLink API, you can use it to generate a link for each item or the whole folder I believe.
There is no Microsoft Graph SDK for python as far as I know, which means you will have to do the calls manually including acquiring the access token.
Is it possible to access say a text file that I've placed in these storage accounts and use them as regular files?. I've tried with mechanize and urllib, but I'm not able to succeed. I'm not interested in using the API's because of the limitations that it may impose. Could someone suggest a way for this, or atleast a way to access the account via ftp or other methods. Thanks in advance.
For google Drive there is a very good API-Documentation:
Google Drive: https://developers.google.com/drive/web/quickstart/quickstart-python
Dropbox API: https://www.dropbox.com/developers/core/start/python
I've tested the GDrive API by myselfe, and it works like a charm, i can' say anything about Dropbox API, but shouldn't be much different.
If you mean with Limitations access Limitations google Drives Limitations are
10.000.000 Requests/Day
10 Request/Second/User
I'm working on an app which wraps Google Docs (using GAE/Python), and I want to keep track of who is viewing these docs in real-time. I can't find any APIs for this in the Google Drive SDK.
What's a good way to do this? Naively, I might imagine repeatedly polling each document individually and parsing the returned HTML. I expect there to be ~150 docs total in the system; would this be too inefficient?
Realtime api is not for using with gdocs, only for your own custom formats. Instead see the changes api in drive but you wont be able to detect viewers only modifications https://developers.google.com/drive/manage-changes
I am not sure if this meets your requirement but there is a Realtime API available in the Drive SDK.
The catch is that it is JavaScript only. It does have Events that your web client can be notified off like CollaboratorJoinedEvent and CollaboratorLeftEvent.
I am trying to build an application in GAE using python. I needs to do is give the query received from user and give it to Google search and return the answer in a formatted way to the user. I found lots of questions asked here. But couldn't get a clear answer regarding my requirements. My needs are
Needs to process large number of links. Many Google API described gives only top four links
Which module is best regarding my requirement. Whether I need to go for something like Mechanize, Urllib... I don't know whether they work in GAE. Also found a Google API, but it gives only few results
There is no official library for what you're trying to do, and the Google Terms of Service prohibit using automated tools to 'scrape' search results.