123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141 |
- from google.cloud import storage, translate, vision
- import logging
- from google.protobuf import json_format
- def asyncDetectDocument(vision_client, gcs_source_uri, gcs_destination_uri, batch_size=20):
- """
- OCR with PDF/TIFF as source files on GCS
- Args:
- vision_client:
- gcs_source_uri:
- gcs_destination_uri:
- batch_size: How many pages should be grouped into each json output file.
- Returns:
- """
- doc_title = gcs_source_uri.split('/')[-1].split('.pdf')[0]
- # Supported mime_types are: 'application/pdf' and 'image/tiff'
- mime_type = 'application/pdf'
- # Feature in vision API
- feature = vision.types.Feature(
- type=vision.enums.Feature.Type.DOCUMENT_TEXT_DETECTION)
- gcs_source = vision.types.GcsSource(uri=gcs_source_uri)
- input_config = vision.types.InputConfig(
- gcs_source=gcs_source, mime_type=mime_type)
- gcs_destination = vision.types.GcsDestination(uri=gcs_destination_uri)
- output_config = vision.types.OutputConfig(
- gcs_destination=gcs_destination, batch_size=batch_size)
- async_request = vision.types.AsyncAnnotateFileRequest(
- features=[feature], input_config=input_config,
- output_config=output_config)
- operation = vision_client.async_batch_annotate_files(
- requests=[async_request])
- #operation.result(timeout=180)
- logging.info('Text extraction from document {} is started.'.format(doc_title))
- return operation
- def readJsonResult(storage_client, bucket_name, doc_title):
- """
- Parsing the json files and extract text.
- Args:
- storage_client:
- bucket_name:
- doc_title:
- Returns:
- all_text: str - Containing all text of the document
- """
- gcs_src_prefix = 'json/' + '{}-'.format(doc_title)
- # List objects with the given prefix.
- blob_list = list(storage_client.list_blobs(bucket_or_name=bucket_name,
- prefix=gcs_src_prefix))
- all_text = ''
- for blob in blob_list:
- json_string = blob.download_as_string()
- response = json_format.Parse(
- json_string, vision.types.AnnotateFileResponse())
- # The actual response for the first page of the input file.
- for response in response.responses:
- # first_page_response = response.responses[0]
- text_response = response.full_text_annotation.text
- all_text += text_response
- all_text += ' '
- logging.info("Parsing of {} json doc was successful.".format(doc_title))
- return all_text
- def uploadBlob(storage_client, bucket_name, txt_content, destination_blob_name):
- """
- Uploads a file to the bucket.
- Args:
- storage_client:
- bucket_name:
- txt_content:
- destination_blob_name:
- Returns:
- """
- #should be fast enough;
- destination_blob_name = destination_blob_name.split('gs://{}/'.format(bucket_name))[-1]
- bucket = storage_client.bucket(bucket_name)
- blob = bucket.blob(destination_blob_name)
- blob.upload_from_string(txt_content)
- logging.info("Text uploaded to {}".format(destination_blob_name))
- def batch_translate_text(translate_client, project_id,
- input_uri="gs://YOUR_BUCKET_ID/path/to/your/file.txt",
- output_uri="gs://YOUR_BUCKET_ID/path/to/save/results/"):
- """
- Translates a batch of texts on GCS and stores the result in a GCS location.
- Args:
- translate_client
- project_id:
- input_uri:
- output_uri:
- Returns:
- """
- # Supported file types: https://cloud.google.com/translate/docs/supported-formats
- gcs_source = {"input_uri": input_uri}
- input_configs_element = {
- "gcs_source": gcs_source,
- "mime_type": "text/plain" # Can be "text/plain" or "text/html".
- }
- gcs_destination = {"output_uri_prefix": output_uri}
- output_config = {"gcs_destination": gcs_destination}
- # Only us-central1 or global are supported location
- parent = translate_client.location_path(project_id, location="us-central1")
- # Supported language codes: https://cloud.google.com/translate/docs/language
- operation = translate_client.batch_translate_text(
- parent=parent,
- source_language_code="it",
- target_language_codes=["en"], # Up to 10 language codes here.
- input_configs=[input_configs_element],
- output_config=output_config)
- return operation
|