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

Skip to content
This repository was archived by the owner on May 3, 2024. It is now read-only.

Commit 474ea8d

Browse files
committed
Update README.md
1 parent 72e498d commit 474ea8d

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

README.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,19 @@ PyPi package found [here](https://pypi.org/project/thirdweb-sdk).
44

55
## Deprecation Notices
66

7+
> 1 of 2
8+
>
79
> The `nftlabs-sdk` pypi package will be deprecated on November 30th, 2021
810
>
911
> Please make sure you install the new `thirdweb-sdk` package found [here](https://pypi.org/project/thirdweb-sdk)
1012
>
1113
> In your code, update all imports to use the `thirdweb` package and switch to using the `ThirdwebSdk` package (instead of the `NftlabsSdk` package)
1214
15+
1316
---
1417

18+
> 2 of 2
19+
>
1520
> The `collection` module has been renamed to `bundle` and will be deprecated on November 30th, 2021
1621
>
1722
> All references to `collection` module and its associated classes should be updated to `bundle` and its newely created classes.
@@ -115,3 +120,12 @@ def my_method(self, arg1, arg2):
115120
return arg1 + arg2
116121
```
117122

123+
124+
Addtionally, each module should also have a docstring at the top of the file. This will be used as a breif descroption of the module on the [homepage of the documentation](https://python-docs.nftlabs.co/).
125+
126+
Example:
127+
```python
128+
1 """Interact with the NFT module of the app""" # docstring
129+
2 # Module code starts from here
130+
3 # ...
131+
```

0 commit comments

Comments
 (0)