diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2021-05-03 21:24:16 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2021-05-03 21:24:16 +0300 |
commit | 9a724815823e034e384f7a0d2de946ef6e090487 (patch) | |
tree | b030ade43356b7ce50b2a1c50a2e6f940d584b94 /vk/mutuals.py | |
parent | README: fix badge link (diff) | |
download | vk-scripts-9a724815823e034e384f7a0d2de946ef6e090487.tar.gz vk-scripts-9a724815823e034e384f7a0d2de946ef6e090487.zip |
move scripts from bin/ to vk/
This is done in preparation to moving to PyPI. TODO:
* update docs,
* merge/rename some scripts.
Diffstat (limited to '')
-rw-r--r-- | vk/mutuals.py (renamed from bin/mutual_friends.py) | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/bin/mutual_friends.py b/vk/mutuals.py index 550d957..644baf8 100644 --- a/bin/mutual_friends.py +++ b/vk/mutuals.py @@ -11,8 +11,7 @@ import sys from vk.api import API from vk.user import UserField - -from .utils import io +from vk.utils import io _OUTPUT_USER_FIELDS = UserField.UID, UserField.FIRST_NAME, UserField.LAST_NAME |