Merge branch 'master' of https://github.com/lasseedfast/fb-scraper
commit
f69de458f1
5 changed files with 86 additions and 52 deletions
@ -1,18 +1,27 @@ |
|||||||
|
|
||||||
|
# Blandat |
||||||
/.DS_Store |
/.DS_Store |
||||||
/.venv |
*.venv |
||||||
/.vscode |
/.vscode |
||||||
/__pycache__ |
/__pycache__ |
||||||
*.json |
*.json |
||||||
*.pkl |
*.pkl |
||||||
facebook/test.py |
|
||||||
/data/* |
/data/* |
||||||
*.html |
*.html |
||||||
*.code-workspace |
*.code-workspace |
||||||
workspace.code-workspace |
workspace.code-workspace |
||||||
password_arango.txt |
password_arango.txt |
||||||
*.gexf |
*.gexf |
||||||
facebook/mrkoll. |
|
||||||
*.pyc |
*.pyc |
||||||
|
*.sqlite3 |
||||||
|
|
||||||
|
#facebook |
||||||
/facebook |
/facebook |
||||||
!/facebook/*.py |
!/facebook/*.py |
||||||
*.sqlite3 |
facebook/test.py |
||||||
|
facebook/mrkoll. |
||||||
|
|
||||||
|
# docker |
||||||
|
/stats/* |
||||||
|
!/stats/*.py |
||||||
|
|
||||||
|
|||||||
@ -0,0 +1,15 @@ |
|||||||
|
FROM python:alpine |
||||||
|
|
||||||
|
WORKDIR / |
||||||
|
|
||||||
|
RUN apk add --update --no-cache g++ gcc libxslt-dev |
||||||
|
|
||||||
|
COPY requirements.txt . |
||||||
|
|
||||||
|
RUN pip install -r requirements.txt |
||||||
|
|
||||||
|
ADD . . |
||||||
|
|
||||||
|
ENTRYPOINT [ "python", "stats.py" ] |
||||||
|
|
||||||
|
# docker buildx build --file docker/stats/Dockerfile --platform linux/arm64,linux/amd64 -t mrkoll . |
||||||
@ -0,0 +1,27 @@ |
|||||||
|
black==21.8b0 |
||||||
|
certifi==2020.6.20 |
||||||
|
chardet==4.0.0 |
||||||
|
click==8.0.1 |
||||||
|
httplib2==0.18.1 |
||||||
|
idna==2.10 |
||||||
|
mypy-extensions==0.4.3 |
||||||
|
packaging==21.0 |
||||||
|
pathspec==0.9.0 |
||||||
|
platformdirs==2.3.0 |
||||||
|
#pycurl==7.43.0.6 |
||||||
|
PyJWT==2.1.0 |
||||||
|
pyparsing==2.4.7 |
||||||
|
PySimpleSOAP==1.16.2 |
||||||
|
#python-apt==2.2.1 |
||||||
|
python-arango==7.2.0 |
||||||
|
python-debian==0.1.39 |
||||||
|
python-debianbts==3.1.0 |
||||||
|
regex==2021.8.28 |
||||||
|
#reportbug==7.10.3 |
||||||
|
requests==2.25.1 |
||||||
|
requests-toolbelt==0.9.1 |
||||||
|
setuptools-scm==6.3.1 |
||||||
|
six==1.16.0 |
||||||
|
tomli==1.2.1 |
||||||
|
typing-extensions==3.10.0.2 |
||||||
|
urllib3==1.26.5 |
||||||
@ -1,21 +1,12 @@ |
|||||||
beautifulsoup4==4.9.3 |
certifi==2021.5.30 |
||||||
certifi==2020.12.5 |
charset-normalizer==2.0.4 |
||||||
cffi==1.14.5 |
idna==3.2 |
||||||
chardet==4.0.0 |
packaging==21.0 |
||||||
idna==2.10 |
PyJWT==2.1.0 |
||||||
lxml |
pyparsing==2.4.7 |
||||||
pycparser==2.20 |
python-arango==7.2.0 |
||||||
PyJWT==2.0.1 |
requests==2.26.0 |
||||||
#PyNaCl==1.4.0 |
|
||||||
PySocks==1.7.1 |
|
||||||
python-arango==7.1.0 |
|
||||||
requests==2.25.1 |
|
||||||
requests-toolbelt==0.9.1 |
requests-toolbelt==0.9.1 |
||||||
robobrowser==0.5.3 |
setuptools-scm==6.3.1 |
||||||
setuptools-scm==5.0.2 |
tomli==1.2.1 |
||||||
six==1.15.0 |
urllib3==1.26.6 |
||||||
soupsieve==2.2 |
|
||||||
toml==0.10.2 |
|
||||||
urllib3==1.26.3 |
|
||||||
Werkzeug==1.0.1 |
|
||||||
json2html |
|
||||||
|
|||||||
Loading…
Reference in new issue