About • Installation • Features • Docs • Contributing • Credits • License
PasteMyst-Pas is an API wrapper written in FreePascal for pastemyst, a powerful website for storing and sharing text and code snippets. completely free and open source. PasteMyst is created by CodeMyst. This library contains pre-defined, easy-to-use functions which uses an HTTPClient to interact with the API. - Billy |
Program example;
// using the pastemyst unit
Uses pastemyst;
// Pastemyst ID of the paste to fetch
Const paste_id = 'id here';
// Main Program
Begin
// fetching the paste with give ID,
// and printing it to the console
Write(get_paste(paste_id), ^M);
End.
Feature | Support | Feature | Support |
---|---|---|---|
Get pastes | ✔️ | Delete pastes | ✔️ |
Get private pastes | ✔️ | Get Users | ✔️ |
Create pastes | ✔️ | Check if a user exists | ✔️ |
Create Private pastes | ✔️ | Get a language by name | ✔️ |
Edit pastes | ✔️ | Get a language by extension | ✔️ |