Merge pull request #31 from soxoj/v1.0.11

Bump version to 1.0.11
This commit is contained in:
soxoj
2021-01-16 17:25:39 +03:00
committed by GitHub
7 changed files with 4800 additions and 9 deletions
+4 -2
View File
@@ -1,8 +1,10 @@
# Changelog # Changelog
## [Unreleased] ## [Unreleased]
* tags bugfix
* custom data checks bugfix ## [0.1.11] - 2021-01-16
* tags and custom data checks bugfixes
* added parsing activation logic
## [0.1.10] - 2021-01-13 ## [0.1.10] - 2021-01-13
* added report static resources into package * added report static resources into package
+11 -4
View File
@@ -47,14 +47,19 @@ $ pip3 install .
```bash ```bash
maigret user maigret user
maigret user1 user2 user3 --print-not-found # make HTML and PDF reports
maigret user --html --pdf
maigret user4 --top-sites 2000 # search on sites marked with tags photo & dating
maigret user --tags photo,dating
# search for three usernames on all available sites
maigret user1 user2 user3 -a
maigret user5 --tags photos,images
``` ```
Run options are documented in [the Maigret Wiki](https://github.com/soxoj/maigret/wiki/Command-line-options). Run `maigret --help` to get arguments description. Also options are documented in [the Maigret Wiki](https://github.com/soxoj/maigret/wiki/Command-line-options).
With Docker: With Docker:
``` ```
@@ -65,6 +70,8 @@ docker run maigret user
## Demo with page parsing and recursive username search ## Demo with page parsing and recursive username search
[PDF report](./static/report_alexaimephotographycars.pdf), [HTML report](./static/report_alexaimephotographycars.html)
```bash ```bash
maigret alexaimephotographycars maigret alexaimephotographycars
``` ```
+1 -1
View File
@@ -30,7 +30,7 @@ from .report import save_csv_report, save_xmind_report, save_html_report, save_p
from .result import QueryResult, QueryStatus from .result import QueryResult, QueryStatus
from .sites import MaigretDatabase, MaigretSite from .sites import MaigretDatabase, MaigretSite
__version__ = '0.1.10' __version__ = '0.1.11'
supported_recursive_search_ids = ( supported_recursive_search_ids = (
'yandex_public_id', 'yandex_public_id',
+1 -1
View File
@@ -28,7 +28,7 @@ reportlab==3.5.59
requests==2.25.1 requests==2.25.1
requests-futures==1.0.0 requests-futures==1.0.0
six==1.15.0 six==1.15.0
socid-extractor>0.0.2 socid-extractor>=0.0.4
soupsieve==2.1 soupsieve==2.1
stem==1.8.0 stem==1.8.0
torrequest==0.1.0 torrequest==0.1.0
+1 -1
View File
@@ -12,7 +12,7 @@ with open('requirements.txt') as rf:
requires = rf.read().splitlines() requires = rf.read().splitlines()
setup(name='maigret', setup(name='maigret',
version='0.1.10', version='0.1.11',
description='Collect a dossier on a person by username from a huge number of sites', description='Collect a dossier on a person by username from a huge number of sites',
long_description=long_description, long_description=long_description,
long_description_content_type="text/markdown", long_description_content_type="text/markdown",
File diff suppressed because it is too large Load Diff
File diff suppressed because one or more lines are too long