aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/docs/mutual_friends.md
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2021-05-04 00:50:07 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2021-05-04 00:50:07 +0300
commitf1a4bf0ce674b0b8ea3f05bd2d3605e19097244a (patch)
tree13fa56e9fa3b40d97097007e009053025785e101 /docs/mutual_friends.md
parentworkflows/test: tweak step names (diff)
downloadvk-scripts-f1a4bf0ce674b0b8ea3f05bd2d3605e19097244a.tar.gz
vk-scripts-f1a4bf0ce674b0b8ea3f05bd2d3605e19097244a.zip
README: update
Diffstat (limited to 'docs/mutual_friends.md')
-rw-r--r--docs/mutual_friends.md46
1 files changed, 0 insertions, 46 deletions
diff --git a/docs/mutual_friends.md b/docs/mutual_friends.md
deleted file mode 100644
index 39ee76f..0000000
--- a/docs/mutual_friends.md
+++ /dev/null
@@ -1,46 +0,0 @@
-mutual_friends.py
-=================
-
-Learn who your ex and her new boyfriend are both friends with.
-
-Usage
------
-
-Run from the top-level directory using `python -m`:
-
- > python -m bin.mutual_friends -h
- usage: mutual_friends.py [-h] [-f {csv,json}] [-o PATH] UID [UID ...]
- ...
-
-For example (using made up user IDs/"screen names"),
-
- > python -m bin.mutual_friends john.doe jane.doe
- 89497105,John,Smith
- 3698577,Jane,Smith
-
-In the example above, both "John Doe" and "Jane Doe" are friends with "John
-Smith" and "Jane Smith", whose user IDs are 89497105 and 3698577 respectively.
-
-The output format is CSV (comma-separated values) by default.
-You can also get a JSON document:
-
- > python -m bin.mutual_friends --format json john.doe jane.doe
- [
- {
- "uid": 89497105,
- "first_name": "John",
- "last_name": "Smith"
- },
- {
- "uid": 3698577,
- "first_name": "Jane",
- "last_name": "Smith"
- }
- ]
-
-See also
---------
-
-* [License]
-
-[License]: ../README.md#license