Metadata-Version: 2.4
Name: pyquine
Version: 0.3
Summary: The best `import quine`
Author-email: Gramkraxor <gram@krax.dev>
License-Expression: Unlicense
Project-URL: Source, https://codeberg.org/gramkraxor/pyquine
Keywords: quine
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3
Description-Content-Type: text/markdown
License-File: UNLICENSE
Dynamic: license-file

# `python3`? More like `cat`

When imported, `pyquine` prints the source of the main module.

There's the standard:
```python
import quine
```

But `pyquine` supports any source file that manages to import it:
```python
#!/usr/bin/env python3
"""This is my quine. It prints its own source."""

import quine
```

It's cheating, but that's the point.
Because the "in Python you just import *X*" meme should work for quines.

[![xkcd #353: Python](https://imgs.xkcd.com/comics/python.png "xkcd #353: Python")](https://xkcd.com/353/)
