Skip to content

Commit

Permalink
Fix a readme issue (#369)
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-yixie committed Jun 7, 2022
1 parent 396f105 commit aadea70
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
The Snowpark library provides intuitive APIs for querying and processing data in a data pipeline.
Using this library, you can build applications that process data in Snowflake without having to move data to the system where your application code runs.

[Source code][source code] | [Developer guide][developer guide] | [API reference][api references] | [Product documentation][snowpark] | [Samples](#samples)
[Source code][source code] | [Developer guide][developer guide] | [API reference][api references] | [Product documentation][snowpark] | [Samples][samples]

## Getting started

Expand All @@ -22,7 +22,7 @@ pip install snowflake-snowpark-python
```
Optionally, you need to install pandas in the same environment if you want to use pandas-related features:
```bash
pip install snowflake-snowpark-python[pandas]
pip install "snowflake-snowpark-python[pandas]"
```

### Create a session and use the APIs
Expand Down Expand Up @@ -53,7 +53,7 @@ The [Developer Guide][developer guide] and [API references][api references] have

## Logging
Configure logging level for `snowflake.snowpark` for Snowpark Python API logs.
Snowpark uses the the [Snowflake Python Connector][python connector].
Snowpark uses the [Snowflake Python Connector][python connector].
So you may also want to configure the logging level for `snowflake.connector` when the error is in the Python Connector.
For instance,
```python
Expand All @@ -68,7 +68,7 @@ for logger_name in ('snowflake.snowpark', 'snowflake.connector'):
```

## Contributing
Please refer to [CONTRIBUTING.md](CONTRIBUTING.md).
Please refer to [CONTRIBUTING.md][contributing].

[add other sample code repo links]: # (Developer advocacy is open-sourcing a repo that has excellent sample code. The link will be added here.)

Expand All @@ -84,3 +84,5 @@ Please refer to [CONTRIBUTING.md](CONTRIBUTING.md).
[python connector]: https://pypi.org/project/snowflake-connector-python/
[use snowflake channel]: https://docs.snowflake.com/en/LIMITEDACCESS/udf-python-packages.html#local-development-and-testing
[snowflake lab sample code]: https://github.com/Snowflake-Labs/snowpark-python-demos
[samples]: https://github.com/snowflakedb/snowpark-python/blob/main/README.md#samples
[contributing]: https://github.com/snowflakedb/snowpark-python/blob/main/CONTRIBUTING.md

0 comments on commit aadea70

Please sign in to comment.