Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: googleapis/google-api-python-client
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v2.0.0
Choose a base ref
...
head repository: googleapis/google-api-python-client
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v2.0.1
Choose a head ref
  • 3 commits
  • 3 files changed
  • 2 contributors

Commits on Mar 4, 2021

  1. Configuration menu
    Copy the full SHA
    b85da5b View commit details
    Browse the repository at this point in the history
  2. fix: add static discovery docs (#1216)

    Fixes #1214 
    
    The [MANIFEST.in](https://packaging.python.org/guides/using-manifest-in/) controls which files are included in the published package.
    
    You can verify that this fixes the problem (missing discovery docs leading to failing `discovery.build()` calls) by building the package and installing the library from the tarfile.
    
    
    - `python3 -m venv env`
    - `source env/bin/activate`
    - `python3 -m setup.py sdist`
    - `python3 -m pip install dist/google-api-python-client-2.0.0.tar.gz`
    
    
    ```
    (env) busunkim@busunkim:~/github/google-api-python-client$ python3
    Python 3.6.9 (default, Feb 24 2020, 21:10:07) 
    [GCC 9.2.1 20190909] on linux
    Type "help", "copyright", "credits" or "license" for more information.
    >>> import googleapiclient
    >>> from googleapiclient import discovery
    >>> client = discovery.build("cloudprofiler", "v2")
    >>> 
    ```
    busunkim96 authored Mar 4, 2021
    Configuration menu
    Copy the full SHA
    b5d33d6 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    401c05e View commit details
    Browse the repository at this point in the history
Loading