KO
|
EN
gitlite — search
Search
#python
#java
#python3
#arduino
#golang
#machine-learning
#rust
#html
#flask
#javascript
#seismology
#nodejs
furbooru
★ 11
Open GitHub ↗
Furbooru API client in Rust
Download README (.md)
Explore Similar Repositories
revenuecat_python
:
A Python client library for RevenueCat REST API. Supports async/await.
finetune_huggingface_t5
:
FineTune HuggingFace's T5 implementation on NMT
WHURS_19_Data_structure_practice
:
武大遥感院19级数据结构实习 包含1)CSV格式数据文件的读写 2)图的创建(邻接矩阵或邻接表) 3)图的遍历(广度优先或深度优先) 4)图的最短路径,并具体给出(A到B)的最短路径及其数值 5)最短路径的地图可视化展示 6)算法的时间和空间复杂度分析
Learning_App
:
An app which students can use to capture their work-based experiences and share these learning experiences with other students through text(chatting), audio, video, pdfs, images.
hex
:
No description available.
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
furbooru
?
Download (.md)
# furbooru [](https://builtwithnix.org)   [](https://crates.io/crates/furbooru) [](https://docs.rs/furbooru) A [Furbooru](https://furbooru.org) and [Derpibooru](https://derpibooru.org) client written in Rust. The APIs for these two sites are near identical, so this crate can work with both; however it is optimized for Furbooru. Any time Furbooru diverges from Derpibooru, this crate will follow the Furbooru changes first. Usage is simple: ```rust let user_agent = format!( "{}/{} ({}, +{})", env!("CARGO_PKG_NAME"), env!("CARGO_PKG_VERSION"), std::env::var("API_USERNAME").unwrap(), env!("CARGO_PKG_REPOSITORY"), ); let cli = furbooru::Client::new( user_agent, std::env::var("API_TOKEN").unwrap(), )? ``` Set the environment variables `API_USERNAME` and `API_TOKEN` to your Furbooru/Derpibooru username and API token respectively. Adding the username associated with your bot to each request can help the booru staff when your bot does unwanted things like violating rate limits. See the examples for more ideas.