diff options
| author | Fuwn <[email protected]> | 2022-03-23 01:21:26 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2022-03-23 01:21:26 -0700 |
| commit | ed05fdf034bf57c4e70e2c48c950c219aca69642 (patch) | |
| tree | d26ce225e5b68bfe364d42f152fa13f011b0399a /examples | |
| parent | feat: 0.1.0 :star: (diff) | |
| download | sen-py-main.tar.xz sen-py-main.zip | |
Diffstat (limited to 'examples')
| -rw-r--r-- | examples/sen.py | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/examples/sen.py b/examples/sen.py index 6276ad6..3713c5b 100644 --- a/examples/sen.py +++ b/examples/sen.py @@ -1,12 +1,12 @@ -import sen_py +import senpy_club -print("SENPY_CLUB_API_BASE_URL:", sen_py.SENPY_CLUB_API_BASE_URL) -print("SENPY_CLUB_API_CURRENT_VERSION:", sen_py.SENPY_CLUB_API_CURRENT_VERSION) -print("SENPY_CLUB_API_URL:", sen_py.SENPY_CLUB_API_URL) +print("SENPY_CLUB_API_BASE_URL:", senpy_club.SENPY_CLUB_API_BASE_URL) +print("SENPY_CLUB_API_CURRENT_VERSION:", senpy_club.SENPY_CLUB_API_CURRENT_VERSION) +print("SENPY_CLUB_API_URL:", senpy_club.SENPY_CLUB_API_URL) -random: sen_py.Random = sen_py.Random() +random: senpy_club.Random = senpy_club.Random() print("Random.image:", random.language) print("Random.image:", random.image) -print("languages:", sen_py.languages()) -print("language(\"C\"):", sen_py.language("C")) +print("languages:", senpy_club.languages()) +print("language(\"C\"):", senpy_club.language("C")) |