Sort Score
Result 10 results
Languages All
Labels All
Results 11 - 20 of 22 for

rb

(0.03 sec)
  1. Merge PDF files in Python using GroupDocs.Merger

    Explore the process of merging PDF files in Python, utilizing the powerful GroupDocs.Merger library without any third-party software....sample_pdf return open(file_path, "rb" ) See also # Explore the full...sample_pdf return open(file_path, "rb" ) See also # Explore the full...

    blog.groupdocs.com/merger/merge-pdf-in-python/
  2. Licensing | Documentation

    Follow the instructions on this page to configure the license and find out the restrictions when using GroupDocs.Comparison for Python via .NET without a license (Evaluation Limitations)...): with open ( license_path , "rb" ) as stream : gc . License ()...

    docs.groupdocs.com/comparison/python-net/licens...
  3. Licensing and evaluation | Documentation

    GroupDocs.Redaction for Python via .NET offers flexible licensing options, including a Free Trial and a 30-day Temporary License for evaluation purposes....lic file" , "rb" ) as stream : gr . License ()...

    docs.groupdocs.com/redaction/python-net/licensi...
  4. Licensing and evaluation | Documentation

    GroupDocs.Viewer for Python offers purchase plans, a free trial, and a 30-day temporary license for evaluation....lic file" , "rb" ) as stream : gv . License ()...

    docs.groupdocs.com/viewer/python-net/licensing-...
  5. Evaluation Limitations and Licensing | Document...

    GroupDocs.Metadata for Python provides different plans for purchase or offers a Free Trial and a 30-day Temporary License for evaluation.... license_path , "rb" ) as stream : gm . License ()...

    docs.groupdocs.com/metadata/python-net/evaluati...
  6. Licensing and evaluation | Documentation

    GroupDocs.Merger for Python provides different plans for purchase or offers a Free Trial and a 30-day Temporary License for evaluation....file" with open ( license_path , "rb" ) as stream : gm . License ()...

    docs.groupdocs.com/merger/python-net/licensing-...
  7. Licensing and evaluation | Documentation

    GroupDocs.Watermark for Python provides different plans for purchase or offers a Free Trial and a 30-day Temporary License for evaluation....lic file" , "rb" ) as stream : gv . License ()...

    docs.groupdocs.com/watermark/python-net/licensi...
  8. Licensing | Documentation

    GroupDocs.Conversion for Python via .NET free conversion API version is available to evaluate the API which will be similar to licensed version but with few limitations....steam with open ( license_path , "rb" ) as license_stream : # Instantiate...

    docs.groupdocs.com/conversion/python-net/licens...
  9. Merge DOCX Files in Python using GroupDocs.Merger

    A comprehensive guide on merging DOCX files in Python. Understand the process and get practical code examples to merge Word documents....sample_docx return open(file_path, "rb" ) See also # For more details...

    blog.groupdocs.com/merger/merge-docx-in-python/
  10. How to use rspec to test GroupDocs API - Part 2

    In the first article, How to use rspec to test GroupDocs API. Part 1, we created first test for GroupDocs API. This article describes in details how tests works, what expectation and matchers are, and how to test an API with the PULL method. Expectation and Matchers So what are expectation and matchers? Lets look at a small example: string ="GroupDocs" string.should have(9).characters string.should\_not have(5).characters Expectations are defined by should and the negative form should_not....rb file that we created in the last...Create a file called sample_spec.rb with the following code: describe...

    blog.groupdocs.com/total/how-to-use-rspec-to-te...