Skip to content

Commit

Permalink
change Samples
Browse files Browse the repository at this point in the history
  • Loading branch information
Ludy87 committed Jun 7, 2023
1 parent a7cd125 commit a6ee774
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions sample/main.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from pyxplora_api import pyxplora_api as PXA
from pyxplora_api.pyxplora_api import PyXploraApi


def main():
Expand All @@ -11,7 +11,7 @@ def main():
wuid: list[str] = []
email: str = "[email protected]"

xplora = PXA.PyXploraApi(
xplora = PyXploraApi(
countrycode=countryCode,
phoneNumber=phoneNummer,
password=password,
Expand Down
4 changes: 2 additions & 2 deletions sample/scanner.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from pyxplora_api import pyxplora_api as PXA
from pyxplora_api.pyxplora_api import PyXploraApi
from pyxplora_api.status import UserContactType

german_area_codes = [
Expand Down Expand Up @@ -38,7 +38,7 @@


def main():
xplora = PXA.PyXploraApi()
xplora = PyXploraApi()
xplora.init(signup=False)
for i in range(0, 99999999):
if i < 1000000:
Expand Down

0 comments on commit a6ee774

Please sign in to comment.