Skip to content

Commit dae51da

Browse files
committed
Adding @evancheval to contributors
1 parent 5cbde35 commit dae51da

File tree

6 files changed

+20
-8
lines changed

6 files changed

+20
-8
lines changed

.zenodo.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,10 @@
5656
"orcid": "0000-0003-4074-2976",
5757
"affiliation": "médialab - Sciences Po",
5858
"name": "Béatrice Mazoyer"
59+
},
60+
{
61+
"affiliation":"médialab - Sciences Po",
62+
"name": "Evan Chevalerias"
5963
}
6064
],
6165
"access_right": "open",

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ _How to cite?_
2626

2727
You can cite it thusly:
2828

29-
> Guillaume Plique, Pauline Breteau, Jules Farjas, Héloïse Théro, Jean Descamps, Amélie Pellé, Laura Miguel, César Pichon, Kelly Christensen, Julien Pontoire, & Béatrice Mazoyer. (2025, Mai 14). Minet, a webmining CLI tool & library for python. (4.1.0). Zenodo. https://doi.org/10.5281/zenodo.15411918
29+
> Guillaume Plique, Pauline Breteau, Jules Farjas, Héloïse Théro, Jean Descamps, Amélie Pellé, Laura Miguel, César Pichon, Kelly Christensen, Julien Pontoire, Béatrice Mazoyer, & Evan Chevalerias. (2025, Mai 14). Minet, a webmining CLI tool & library for python. (4.1.0). Zenodo. https://doi.org/10.5281/zenodo.15411918
3030
3131
## Whirlwind tour
3232

docs/cli.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5427,7 +5427,7 @@ how to use the command with a CSV file?
54275427
```
54285428
Usage: minet telegram channel-messages [-h] [--throttle THROTTLE] [--silent]
54295429
[--refresh-per-second REFRESH_PER_SECOND]
5430-
[--simple-progress] [-i INPUT]
5430+
[--simple-progress] [--desc] [-i INPUT]
54315431
[--explode EXPLODE] [-s SELECT]
54325432
[--total TOTAL] [-o OUTPUT]
54335433
channel_name_or_channel_name_column
@@ -5443,6 +5443,8 @@ Positional Arguments:
54435443
when using -i/--input.
54445444

54455445
Optional Arguments:
5446+
--desc Whether to collect data in reverse chronological
5447+
order instead of default chronological order.
54465448
--throttle THROTTLE Throttling time, in seconds, to wait between
54475449
each request. Defaults to `0.5`.
54485450
-s, --select SELECT Columns of -i/--input CSV file to include in the
@@ -5552,7 +5554,7 @@ Optional Arguments:
55525554
MINET_TIKTOK_API_KEY env variable.
55535555
--max-date MAX_DATE The end of the time range during which the
55545556
commercial contents were published. Defaults to
5555-
today.
5557+
`2025-12-02`.
55565558
--min-date MIN_DATE Needs to be after October 1st, 2022. Defaults to
55575559
`2022-10-01`.
55585560
--secret SECRET Tiktok API identification secret. Can also be
@@ -5610,7 +5612,7 @@ Optional Arguments:
56105612
MINET_TIKTOK_API_KEY env variable.
56115613
--max-date MAX_DATE The end of the time range during which the
56125614
commercial contents were published. Defaults to
5613-
today.
5615+
`20251201`.
56145616
--min-date MIN_DATE Needs to be after October 1st, 2022. Defaults to
56155617
`20221001`.
56165618
--secret SECRET Tiktok API identification secret. Can also be

minet/bluesky/urls.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,9 @@ def post_quotes(
4040
def refresh_session(self) -> str:
4141
return self.format(path="com.atproto.server.refreshSession")
4242

43-
def post_liked_by(self, post_uri: str, cursor: Optional[str] = None, limit: int = 100) -> str:
43+
def post_liked_by(
44+
self, post_uri: str, cursor: Optional[str] = None, limit: int = 100
45+
) -> str:
4446
return self.format(
4547
path="app.bsky.feed.getLikes",
4648
args={"uri": post_uri, "cursor": cursor, "limit": limit},

minet/cli/bluesky/profiles.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,9 @@
2929
def action_normalize(cli_args, enricher: Enricher, loading_bar: LoadingBar):
3030
client = BlueskyHTTPClient(cli_args.identifier, cli_args.password)
3131

32-
def mixed_handles_and_dids_to_dids(profiles: Iterable[str]) -> Iterator[Optional[str]]:
32+
def mixed_handles_and_dids_to_dids(
33+
profiles: Iterable[str],
34+
) -> Iterator[Optional[str]]:
3335
for profile in profiles:
3436
if profile.startswith("did:"):
3537
yield profile
@@ -69,7 +71,9 @@ def action_raw(cli_args, loading_bar: LoadingBar):
6971

7072
params = reader.cells(cli_args.column, with_rows=False)
7173

72-
def mixed_handles_and_dids_to_dids(profiles: Iterable[str]) -> Iterator[Optional[str]]:
74+
def mixed_handles_and_dids_to_dids(
75+
profiles: Iterable[str],
76+
) -> Iterator[Optional[str]]:
7377
for profile in profiles:
7478
if profile.startswith("did:"):
7579
yield profile

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
long_description=long_description,
2020
long_description_content_type="text/markdown",
2121
url="http://github.com/medialab/minet",
22-
author="Guillaume Plique, Pauline Breteau, Jules Farjas, Héloïse Théro, Jean Descamps, Amélie Pellé, Laura Miguel, César Pichon, Kelly Christensen, Julien Pontoire, Béatrice Mazoyer",
22+
author="Guillaume Plique, Pauline Breteau, Jules Farjas, Héloïse Théro, Jean Descamps, Amélie Pellé, Laura Miguel, César Pichon, Kelly Christensen, Julien Pontoire, Béatrice Mazoyer, Evan Chevalerias",
2323
keywords="webmining",
2424
license="GPL-3.0",
2525
python_requires=">=3.8",

0 commit comments

Comments
 (0)