Skip to content

Latest commit

 

History

History
16 lines (13 loc) · 558 Bytes

README.md

File metadata and controls

16 lines (13 loc) · 558 Bytes

sf6rs

A rust library for interfacing with various types of Street Fighter 6 data like frame data via web-scraping SuperCombo.gg.

Frame Data

This library requests, scrapes, parses, and collects character frame data:

// Loading all data
let data = framedata::load_all().await;

// Loading moves
let load = framedata::load(&character::RYU).await;

// Searching for moves
let move_found = data.find_move("ryu", "5lp");
let another_move_found = data.find_move_character(&character::RYU, "623HP");