Skip to content
This repository has been archived by the owner on Jul 3, 2022. It is now read-only.
/ librfap Public archive

proof-of-concept file transfer protocol - client side library

License

Notifications You must be signed in to change notification settings

alexcoder04/librfap

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

37 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Archivation Note

As of now, I lost interest on this project and shifted focus to other things. That's why I have to archive librfap in an unfinished state. If you are interested in continuing this project, please email me, so I can explain some details to you or unarchive this repo and add you as contributor.


librfap

GitHub release (latest SemVer including pre-releases) GitHub top language GitHub GitHub issues GitHub pull requests GitHub commit activity GitHub contributors

Client-side Python library for the rfap protocol.

See here for protocol specifications and other compatible programs.

Installation

Stable release with pip

LOCATION=$(curl -s https://api.github.com/repos/alexcoder04/librfap/releases/latest \
    | grep "tag_name" \
    | awk '{print "https://github.com/alexcoder04/librfap/archive/" substr($2, 2, length($2)-3) ".zip"}')
curl -L -o "${TMPDIR:-/tmp}/librfap.zip" "$LOCATION"
pip3 install "${TMPDIR:-/tmp}/librfap.zip"

Or download and install manually from the releases page.

Latest version from this repo with pip

git clone https://github.com/alexcoder04/librfap
pip3 install ./librfap

Related projects