8000 fix: removes C-style semicolons and slash comments by telpirion · Pull Request #59 · googleapis/python-documentai · GitHub
[go: up one dir, main page]

Skip to content
This repository was archived by the owner on Sep 20, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions samples/snippets/process_document_sample_v1beta3.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@
# [START documentai_process_document]

# TODO(developer): Uncomment these variables before running the sample.
# project_id= 'YOUR_PROJECT_ID';
# location = 'YOUR_PROJECT_LOCATION'; // Format is 'us' or 'eu'
# processor_id = 'YOUR_PROCESSOR_ID'; // Create processor in Cloud Console
# file_path = '/path/to/local/pdf';
# project_id= 'YOUR_PROJECT_ID'
# location = 'YOUR_PROJECT_LOCATION' # Format is 'us' or 'eu'
# processor_id = 'YOUR_PROCESSOR_ID' # Create processor in Cloud Console
# file_path = '/path/to/local/pdf'


def process_document_sample(
Expand Down
8 changes: 4 additions & 4 deletions samples/snippets/quickstart_sample_v1beta3.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@
# [START documentai_quickstart]

# TODO(developer): Uncomment these variables before running the sample.
# project_id= 'YOUR_PROJECT_ID';
# location = 'YOUR_PROJECT_LOCATION'; # Format is 'us' or 'eu'
# processor_id = 'YOUR_PROCESSOR_ID'; # Create processor in Cloud Console
# file_path = '/path/to/local/pdf';
# project_id= 'YOUR_PROJECT_ID'
# location = 'YOUR_PROJECT_LOCATION' # Format is 'us' or 'eu'
# processor_id = 'YOUR_PROCESSOR_ID' # Create processor in Cloud Console
# file_path = '/path/to/local/pdf'


def quickstart(project_id: str, location: str, processor_id: str, file_path: str):
Expand Down
0