https://github.com/pyk/lory
An easy-to-use Rust library for accessing the Twitter API
https://github.com/pyk/lory
rust twitter-api
Last synced: 10 months ago
JSON representation
An easy-to-use Rust library for accessing the Twitter API
- Host: GitHub
- URL: https://github.com/pyk/lory
- Owner: pyk
- License: other
- Created: 2020-03-16T15:06:04.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-03-18T13:14:27.000Z (over 6 years ago)
- Last Synced: 2025-02-07T17:22:29.268Z (over 1 year ago)
- Topics: rust, twitter-api
- Language: Rust
- Homepage: https://docs.rs/lory
- Size: 69.3 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
lory is an easy-to-use Rust library for accessing the Twitter API.
## Documentation
- [Quickstart Tutorial][quickstart tutorial]
- [API Reference]
[API Reference]: https://docs.rs/lory
## Usage
Add this to your `Cargo.toml`:
```toml
[dependencies]
lory = "*"
```
and this to your crate root:
```rust
use lory::prelude::*;
```
To get started using lory, read the [quickstart tutorial].
[quickstart tutorial]: https://docs.rs/lory#quickstart-tutorial
## Development
Clone the repository using the following command:
```sh
git clone https://github.com/pyk/lory.git --depth=1
cd lory/
```
To build the project, use the following command:
```sh
cargo build
```
To run the tests, use the following command:
```sh
cargo test
```
## Getting help
Feel free to start discussion at [GitHub issues].
[Github issues]: https://github.com/pyk/lory/issues/new/choose
## License
lory is licensed under the [Apache-2.0](./LICENSE) license.
## Contribution
Unless you explicitly state otherwise, any contribution intentionally
submitted for inclusion in lory by you, as defined in the Apache-2.0
license, shall be licensed as above, without
any additional terms or conditions.