Skip to content

Commit 7cb6dd5

Browse files
committed
chore: update urls
1 parent b876689 commit 7cb6dd5

File tree

7 files changed

+14
-15
lines changed

7 files changed

+14
-15
lines changed

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2021 Sean Breckenridge
3+
Copyright (c) 2021 purarue
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ pip install malexport
2929

3030
For your MyAnimeList [API Info](https://myanimelist.net/apiconfig), you can use 'other' as the 'App Type', 'hobbyist' as 'Purpose of Use', and `http://localhost` as the redirect URI. This only requires a Client ID, not both a Client ID and a Secret
3131

32-
Since this uses selenium, that requires a `chromedriver` binary somewhere on your system. That's typically available in package repositories, else see [here](https://gist.github.com/seanbreckenridge/709a824b8c56ea22dbf4e86a7804287d). If this isn't able to find the file, set the `MALEXPORT_CHROMEDRIVER_LOCATION` environment variable, like: `MALEXPORT_CHROMEDRIVER_LOCATION=C:\\Downloads\\chromedriver.exe malexport ...`
32+
Since this uses selenium, that requires a `chromedriver` binary somewhere on your system. That's typically available in package repositories, else see [here](https://gist.github.com/purarue/709a824b8c56ea22dbf4e86a7804287d). If this isn't able to find the file, set the `MALEXPORT_CHROMEDRIVER_LOCATION` environment variable, like: `MALEXPORT_CHROMEDRIVER_LOCATION=C:\\Downloads\\chromedriver.exe malexport ...`
3333

3434
I left some shell functions I commonly use to query my data in `malexport.sh`, to use that set the `MAL_USERNAME` variable to your account name, and then `source malexport.sh` in your shell startup. Should work on both `bash`/`zsh`
3535

@@ -65,7 +65,7 @@ If you use 2FA you can set the `MALEXPORT_2FA` variable, like `MALEXPORT_2FA=1 m
6565

6666
### parse
6767

68-
I generally don't interface with the CLI interface here and instead use the `my.mal.export` in [HPI](https://github.com/seanbreckenridge/HPI). That handles configuring accounts/locating my data on disk
68+
I generally don't interface with the CLI interface here and instead use the `my.mal.export` in [HPI](https://github.com/purarue/HPI). That handles configuring accounts/locating my data on disk
6969

7070
The `parse` subcommand includes corresponding commands which take the saved data, clean it up a bit into easier to manipulate representations. Those each have python functions which can be imported from `malexport.parse`, or called from the CLI to produce JSON.
7171

@@ -205,7 +205,7 @@ This requires [`hpi`](https://pypi.org/project/HPI/) to automatically unzip file
205205

206206
`malexport recover-deleted backup`, saves to `~/.local/share/malexport_zips` (can overwrite default location with `MALEXPORT_ZIP_BACKUPS`)
207207

208-
To figure out which entries are deleted, this uses [mal-id-cache](https://github.com/seanbreckenridge/mal-id-cache). To update the local cache of IDs, run:
208+
To figure out which entries are deleted, this uses [mal-id-cache](https://github.com/purarue/mal-id-cache). To update the local cache of IDs, run:
209209

210210
```bash
211211
$ malexport recover-deleted approved-update
@@ -248,7 +248,7 @@ python3 -m malexport recover-deleted recover -F \
248248

249249
None of those IDs exist anymore on MAL, so these backups are the only way to get metadata or my history/data for them
250250

251-
I backup my list once every 3 days, and have a corresponding [`bleanser`](https://github.com/seanbreckenridge/bleanser/blob/master/src/bleanser_sean/modules/mal_zips.py) (backup cleanser) file to remove redundant backups (ones that don't introduce 'new deleted' entries).
251+
I backup my list once every 3 days, and have a corresponding [`bleanser`](https://github.com/purarue/bleanser/blob/master/src/bleanser_pura/modules/mal_zips.py) (backup cleanser) file to remove redundant backups (ones that don't introduce 'new deleted' entries).
252252

253253
### manual-history
254254

malexport.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ mal_list() {
2121
return 1
2222
fi
2323
args+=("python" -m malexport parse list -s "${DIR}/${MAL_USERNAME}/${TYPE}list.json")
24-
# optional line-based caching using https://github.com/seanbreckenridge/fzfcache
24+
# optional line-based caching using https://github.com/purarue/fzfcache
2525
if [[ -n "$LISTCACHED" ]]; then
2626
args=(fzfcache "${args[@]}")
2727
fi

malexport/parse/recover_deleted_entries.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
class Approved(NamedTuple):
1818
"""
19-
Uses https://github.com/seanbreckenridge/mal-id-cache to fetch a list
19+
Uses https://github.com/purarue/mal-id-cache to fetch a list
2020
of approved MAL IDs
2121
"""
2222

@@ -39,7 +39,7 @@ def git_clone() -> Repo:
3939

4040
else:
4141
return Repo.clone_from(
42-
"https://github.com/seanbreckenridge/mal-id-cache", repo_dir
42+
"https://github.com/purarue/mal-id-cache", repo_dir
4343
)
4444

4545
@classmethod

scripts/auth_repl.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
from malexport.exporter import Account
1010

1111
try:
12-
from my.config.seanb.malexport_secret import * # type: ignore
12+
from my.config.pura.malexport_secret import * # type: ignore
1313
except ImportError:
1414
pass
1515

scripts/bot_sources.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env bash
22
# should be used in bash/zsh
3-
# quite personal as it uses sources collated by my https://github.com/seanbreckenridge/mal-notify-bot
3+
# quite personal as it uses sources collated by my https://github.com/purarue/mal-notify-bot
44
# this should be sourced into shell environment
55
#
66
# this lists any items that are currently on my 'Currently Watching'
@@ -162,8 +162,8 @@ mal_sources_list() {
162162
# open the corresponding MAL page by extracting it from
163163
# the filename
164164
mal_mpv_open_currently_playing() {
165-
# https://github.com/seanbreckenridge/seanb-utils/blob/main/shellscripts/openurl
166-
# https://github.com/seanbreckenridge/mpv-sockets
165+
# https://github.com/purarue/pura-utils/blob/main/shellscripts/openurl
166+
# https://github.com/purarue/mpv-sockets
167167
local id
168168
id="$(basename "$(mpv-currently-playing)" | cut -d"_" -f1 | cut -d"." -f1)"
169169
[[ -n "$id" ]] && echo "$id" | mal_anime_links | openurl

setup.cfg

+2-3
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,8 @@ version = 0.1.5
44
description = backs up info from your MAL account
55
long_description = file: README.md
66
long_description_content_type = text/markdown
7-
url = https://github.com/seanbreckenridge/malexport
8-
author = Sean Breckenridge
9-
author_email = "seanbrecke@gmail.com"
7+
url = https://github.com/purarue/malexport
8+
author = purarue
109
license = MIT
1110
license_files = LICENSE
1211
classifiers =

0 commit comments

Comments
 (0)