Straightforward pastebin software.
Project description
pinnwand
About
pinnwand
is Python pastebin software that tried to keep it simple but got
a little more complex.
Prerequisites
- Python >= 3.8
- Tornado
- sqlalchemy
- click
- docutils
- tomli
- pygments-better-html
- a database driver
Usage
Web
Enter text, click "Paste", easy enough.
steck
steck is a command line client to pinnwand instances:
€ pip install --user steck
...
€ steck paste *
You are about to paste the following 7 files. Do you want to continue?
- LICENSE
- mypy.ini
- poetry.lock
- pyproject.toml
- README.rst
- requirements.txt
- steck.py
Continue? [y/N] y
Completed paste.
View link: https://localhost:8000/W5
Removal link: https://localhost:8000/remove/TS2AFFIEHEWUBUV5HLKNAUZFEI
curl
pinnwand
has a direct endpoint for curl
users:
€ echo "foo" | curl -X POST http://localhost:8000/curl -F 'raw=<-'
Paste URL: http://localhost:8000/OE
Raw URL: http://localhost:8000/raw/GU
Removal URL: http://localhost:8000/remove/GQBHGJYKRWIS34D6FNU6CJ3B5M
€ curl http://localhost:8000/raw/GU
foo%
This will preselect the lexer
and expiry
arguments to be text
and
1day
respectively. You can provide those to change them.
API
pinnwand
provides a straight forward JSON API, here's an example using the
common requests library:
>>> requests.post(
... "http://localhost:8000/api/v1/paste",
... json={
... "expiry": "1day",
... "files": [
... {"name": "spam", "lexer": "python", "content": "eggs"},
... ],
... }
... ).json()
{'link': 'http://localhost:8000/74', 'removal': 'http://localhost:8000/remove/KYXQLPZQEWV2L4YZM7NYGTR7TY'}
More information about this API is available in the documentation.
More ways to use pinnwand
Various deprecated ways of posting are still supported, don't implement these for any new software but if you are maintaining old software and want to know how they used to work you can read our documentation_.
If you do use a deprecated endpoint to post a warning will be shown below any pastes that are created this way.
Reporting bugs
Bugs are reported best at pinnwand
's project page on github. If you just
want to hang out and chat about pinnwand
then I'm available in the
#pinnwand
channel on Freenode IRC.
License
pinnwand
is distributed under the MIT license. See LICENSE
for details.
History
This pastebin has quite a long history which isn't reflected entirely in its repository.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file pinnwand-1.5.0.tar.gz
.
File metadata
- Download URL: pinnwand-1.5.0.tar.gz
- Upload date:
- Size: 46.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8b15b6c98c77fa2d44fa21737c69b237a03e05777528039fddd0b0c46e46ca69 |
|
MD5 | 02329f254f7675066322ed6f8d882f30 |
|
BLAKE2b-256 | 878445e5b6eae158b664fd2c9d89451798cd022e0b3624836b34c8bb51fa4d44 |
File details
Details for the file pinnwand-1.5.0-py3-none-any.whl
.
File metadata
- Download URL: pinnwand-1.5.0-py3-none-any.whl
- Upload date:
- Size: 51.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7ebf42504e5bdf49f7ff7e0af3461f4b10cb64e71c83c804568aa1aa5887eb43 |
|
MD5 | 28d12c60996a236e03b1ec0b3ae299c1 |
|
BLAKE2b-256 | 8c1705507631d042a898f0618959d2f362a404c5406555ef34aeba06db870001 |