Metadata-Version: 2.4
Name: masto2pelican
Version: 0.0.3
Summary: Convert mastodon export archive into data for pelican static site generator
Author-email: lou <lou@jellycopter.net>
Project-URL: Homepage, https://masto2pelican.jellycopter.net/
Project-URL: Repository, https://codeberg.org/gkrnours/masto2pelican
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: System Administrators
Requires-Python: >=3.11
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# masto2pelican

Tool to convert a mastodon export archive into data for pelican static site generator

## Usage

masto2pelican <path/to/archive.zip>

-d/--dest to write files somewhere other than ./content/
-f/--force to overwrite existing files

## Pelican's config

All attachment, like images, are saved in a media_attachment folder.
As such, the configuration for pelican should have the following:

```
STATIC_PATHS = ["media_attachments"]
```
