# SDK user features > Learn about SDK user features in Fern-generated client libraries including installation, error handling, webhook verification, and customization options. Fern-generated SDKs provide a consistent set of features across all languages to help developers interact with your API. Usage information is auto-generated in your SDK's `README.md`, [which you can customize](./readme). For a complete example of a generated SDK README, see [Intercom's Python SDK](https://github.com/intercom/python-intercom/blob/3aac991a92cefe34cf437f8f5ca46c97c04c1a6c/README.md). ## Installation and basic usage Users install SDKs using standard package managers (npm for TypeScript, pip for Python, Maven/Gradle for Java, etc.) from language-specific registries. Users initialize the client with your API's base URL and any required authentication, then call methods on the client to interact with your API. Generated SDKs support modern runtimes across languages. ## Reference The `README.md` file links to an auto-generated `reference.md` file ([example](https://github.com/intercom/python-intercom/blob/HEAD/reference.md)) that lists all available API methods organized by resource, including method signatures with parameter types, usage examples, and request/response structures for each endpoint. ## IDE support and IntelliSense Fern-generated SDKs include full type definitions that enable rich IDE support. When developers use your SDK in editors like VS Code, they get autocomplete, inline documentation, and type information. The inline documentation comes from your API definition. During the SDK generation process, Fern embeds your parameter descriptions, return types, and code examples directly in the code as docstrings (Python), JSDoc (TypeScript), Javadoc (Java), etc.