diff options
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")) |