A cross-platform tool to archive an ask.fm user profile.
The tool archives a user profile and extracts all textual information and any attachment in the answer or the question section. The only information it skips are polls.
The tool can also generate a markdown file of the parsed data that can be converted to HTML or PDF (using another tool). An example pdf that was created from the generated markdown file and the provided css file markdown-pdf.css
can be found in the example
folder.
File | Description |
---|---|
askfmArchiver-linux-x64.zip | Linux x64 binary with all the necessary runtime dependencies. |
askfmArchiver-win-x64.zip | Windows x64 binary with all the necessary runtime dependencies. |
askfmArchiver-osx-x64.zip | MacOS (10.12+) binary with all the necessary runtime dependencies. |
The downloaded zip file can be extracted using a tool like 7zip.
docker run --rm -v $(pwd):/data 'ghcr.io/selbetar/askfmarchiver:latest' --db /data/data.db --out /data/askfm-output [OPTIONS]
Execute the following commands to build the master branch locally:
$ git clone https://github.com/selbetar/askfmArchiver.git
$ cd askfmArchiver
$ dotnet publish --configuration Release --output="./bin-out" "-p:DebugSymbols=false;DebugType=none" ./askfmArchiver/askfmArchiver.csproj
The generated binary should be under ./askfmArchiver/bin-out
.
In the binary directory, execute the following command:
Unix:
./askfmArchiver -u <user> [OPTIONS]
Windows:
./askfmArchiver.exe -u <user> [OPTIONS]
-u, --user Required. The userid of the askfm profile
-o, --out (Default: ) Specify the output folder where any downloaded or generated files will be saved.
-c, --config (Default: ) Specify the config folder where the app configuration file is located.
-d, --db Path to the database file.
--help Display this help screen.
--version Display version information.
-a, --archive Required. Execute an archival job for the specified user.
-p, --page (Default: ) The page iterator (id) at which archiving should start. Useful if extraction was interrupted.
-s, --stop-at The date at which extraction should stop. Date should be in the following format: yyyy''MM''ddTHH''mm''ss
-m, --markdown Required. Generate markdown file(s) for the specified user.
-D, --descending (Default: false) Specify output folder where any downloaded or generated files will be saved.
-r, --reset (Default: false) Specify output folder where any downloaded or generated files will be saved.