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 960cb42

Browse files
committed
Initial commit of the nftlabs python package
0 parents  commit 960cb42

File tree

5 files changed

+21
-0
lines changed

5 files changed

+21
-0
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# python venv
2+
.env
3+
4+
**/__pycache__

README.md

Whitespace-only changes.

main.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
from nftlabs import NftlabsSdk
2+
3+
client = NftlabsSdk()
4+
5+
client.print_something()

nftlabs/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
from nftlabs.sdk import NftlabsSdk

nftlabs/sdk.py

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
2+
class NftlabsSdk():
3+
"""
4+
Instance of the NftlabsSdk
5+
"""
6+
def constructor():
7+
print("Created Nftlabs SDK!")
8+
9+
10+
def print_something(self):
11+
print("something")

0 commit comments

Comments
 (0)