Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/azkadev/doodstream
https://github.com/azkadev/doodstream
dart doodstream doodstream-api doodstream-bot doodstream-video-downloader flutter
Last synced: 7 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/azkadev/doodstream
- Owner: azkadev
- License: other
- Created: 2024-06-04T04:41:03.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-10-01T17:01:39.000Z (about 1 month ago)
- Last Synced: 2024-10-03T12:40:01.077Z (about 1 month ago)
- Topics: dart, doodstream, doodstream-api, doodstream-bot, doodstream-video-downloader, flutter
- Language: HTML
- Homepage: https://azkadev.github.io/doodstream/
- Size: 6.19 MB
- Stars: 32
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Security: SECURITY.md
Awesome Lists containing this project
README
# Doodstream Client
**Doodstream Client** this open source project is free## Demo
## đī¸ Docs
1. [Documentation](/docs/)
2. [Youtube](https://youtube.com/)
3. [Telegram Support Group](https://t.me/)
4. [Contact Developer](https://github.com/) (check social media or readme profile github)## đī¸ Features
1. [x] đąī¸ **Cross Platform** support (Device, Edge Severless functions)
2. [x] đī¸ **Standarization** Style Code
3. [x] â¨ī¸ **Cli** (Terminal for help you use this library or create project)
4. [x] đĨī¸ **Api** (If you developer bot / userbot you can use this library without interact cli just add library and use đī¸)
5. [x] đ§Šī¸ **Customizable Extension** (if you want add extension so you can more speed up on development)
6. [x] â¨ī¸ **Pretty Information** (user friendly for newbie)
## âī¸ Fun Fact**This library 100%** use on every my create project (**App, Server, Bot, Userbot**)
## đī¸ Proggres
- **2024-06-03**
Starting **Release Stable** With core Features### đĨī¸ Install Library
1. **Dart**
```bash
dart pub add doodstream_client
```- from github
```bash
dart pub add doodstream_client
```## đī¸ Quick Start
Example Quickstart script minimal for insight you or make you use this library because very simple
```dart
import 'package:doodstream_client/doodstream_client.dart';
import 'package:general_lib/extension/dynamic.dart';
void main(List args) async {
String api_key = "";
DoodstreamClient doodstreamClient = DoodstreamClient(api_key: api_key);
Map res = await doodstreamClient.getMe();
res.printPretty();
}
```