Skip to content

Commit 4a6342d

Browse files
Merge pull request #79 from runpod/1.0.0-docs
1.0.0 docs
2 parents 7515476 + 01c53a7 commit 4a6342d

File tree

1 file changed

+16
-12
lines changed

1 file changed

+16
-12
lines changed

README.md

Lines changed: 16 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -13,32 +13,36 @@
1313

1414
</div>
1515

16-
Official Python library for RunPod API &amp; SDK.
16+
Welcome to the official Python library for RunPod API &amp; SDK.
1717

1818
## Table of Contents
1919

2020
- [Table of Contents](#table-of-contents)
21-
- [Installation](#installation)
22-
- [SDK - Serverless Worker](#sdk---serverless-worker)
21+
- [💻 | Installation](#--installation)
22+
- [⚡ | Serverless Worker (SDK)](#--serverless-worker-sdk)
2323
- [Quick Start](#quick-start)
2424
- [Local Test Worker](#local-test-worker)
25-
- [API Language Library (GraphQL Wrapper)](#api-language-library-graphql-wrapper)
25+
- [📚 | API Language Library (GraphQL Wrapper)](#--api-language-library-graphql-wrapper)
2626
- [Endpoints](#endpoints)
2727
- [GPU Cloud (Pods)](#gpu-cloud-pods)
28-
- [Directory](#directory)
29-
- [Community and Contributing](#community-and-contributing)
28+
- [📁 | Directory](#--directory)
29+
- [🤝 | Community and Contributing](#--community-and-contributing)
3030

31-
## Installation
31+
## 💻 | Installation
3232

3333
```bash
3434
# Install the latest release version
3535
pip install runpod
3636

37+
# or
38+
3739
# Install the latest development version (main branch)
3840
pip install git+https://github.com/runpod/runpod-python.git
3941
```
4042

41-
## SDK - Serverless Worker
43+
*Python 3.10 or higher is required to use the latest version of this package.*
44+
45+
## ⚡ | Serverless Worker (SDK)
4246

4347
This python package can also be used to create a serverless worker that can be deployed to RunPod as a custom endpoint API.
4448

@@ -79,7 +83,7 @@ You can also test your worker locally before deploying it to RunPod. This is use
7983
python my_worker.py --rp_serve_api
8084
```
8185

82-
## API Language Library (GraphQL Wrapper)
86+
## 📚 | API Language Library (GraphQL Wrapper)
8387

8488
When interacting with the RunPod API you can use this library to make requests to the API.
8589

@@ -138,21 +142,21 @@ runpod.start_pod(pod.id)
138142
runpod.terminate_pod(pod.id)
139143
```
140144

141-
## Directory
145+
## 📁 | Directory
142146

143147
```BASH
144148
.
145149
├── docs # Documentation
146150
├── examples # Examples
147151
├── runpod # Package source code
148152
│ ├── api_wrapper # Language library - API (GraphQL)
149-
| ├── cli # Command Line Interface Functions
153+
├── cli # Command Line Interface Functions
150154
│ ├── endpoint # Language library - Endpoints
151155
│ └── serverless # SDK - Serverless Worker
152156
└── tests # Package tests
153157
```
154158

155-
## Community and Contributing
159+
## 🤝 | Community and Contributing
156160

157161
We welcome both pull requests and issues on [GitHub](https://github.com/runpod/runpod-python). Bug fixes and new features are encouraged.
158162

0 commit comments

Comments
 (0)