Skip to content
This repository was archived by the owner on Mar 11, 2022. It is now read-only.

Commit b2dafa4

Browse files
authored
Add files via upload
1 parent 900082b commit b2dafa4

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

Basic/__init__.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
from sys import path
2+
from os.path import dirname
3+
4+
path.append(dirname(path[0]))

Basic/job.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
from login import login, double_click
2+
23
from lxml.html import fromstring
34

45
def job(server, session=""):

Basic/login.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,2 @@
1-
from sys import path
2-
from os.path import dirname
3-
4-
path.append(dirname(path[0]))
1+
import __init__
52
from Help_functions.login import *

Basic/read.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
from lxml.html import fromstring
44

5-
65
def read(server, session=""):
76
"""Reading all new msgs and notifications + accept friend requests"""
87
URL = f"https://{server}.e-sim.org/"

Basic/reshuffle_or_upgrade.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
from login import login
2+
23
from lxml.html import fromstring
34

45
def reshuffle_or_upgrade(server, action, eq_id_or_link, parameter, session=""):

Basic/sell_eqs.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
1+
import __init__
12
from login import login
2-
if __name__ == "__main__":
3-
from wear_unwear import wear_unwear
4-
else:
5-
from .wear_unwear import wear_unwear
3+
from Basic.wear_unwear import wear_unwear
64

75
def sell_eqs(server, ids, price, hours, session=""):
86
"""Sell specific EQ ID(s) & reshuffle & upgrade at auctions."""

0 commit comments

Comments
 (0)