Browse Source

Merge branch 'master' of github.com:weskerfoot/DeleteFB into handle-grid-layout

pull/51/head
Wesley Kerfoot 5 years ago
parent
commit
ecec68de93
  1. 2
      README.md
  2. 9
      deletefb/deletefb.py

2
README.md

@ -22,7 +22,7 @@ You have several options to run it.
1) Install from PyPI with `pip install --user delete-facebook-posts`
2) Clone this repo and run `pip install --user .` or do `pip install --user
git+https://github.com/weskerfoot/DeleteFB.git`
3) Set up a Python virtualenv, activate it, and run `pip install -r requirements.txt`, then you can just run `python deletefb` in the DeleteFB directory.
3) Set up a Python virtualenv, activate it, and run `pip install -r requirements.txt`, then you can just run `python -m deletefb.deletefb` in the DeleteFB directory.
## How To Use It

9
deletefb/deletefb.py

@ -6,11 +6,10 @@ import json
import os
import sys
from config import settings
from tools.common import logger
from tools.login import login
from tools.wall import delete_posts
from tools.likes import unlike_pages
from .tools.common import logger
from .tools.login import login
from .tools.wall import delete_posts
from .tools.likes import unlike_pages
LOG = logger("deletefb")

Loading…
Cancel
Save