![PyPI Now Supports iOS and Android Wheels for Mobile Python Development](https://cdn.sanity.io/images/cgdhsj6q/production/96416c872705517a6a65ad9646ce3e7caef623a0-1024x1024.webp?w=400&fit=max&auto=format)
Security News
PyPI Now Supports iOS and Android Wheels for Mobile Python Development
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
nestjs-telegram-bot-api
Advanced tools
Telegram API wrapper for the Telegram Bots API made to work with the Nest framework.
$ npm install nestjs-telegram
// Inside of your module imports
@Module({
imports: [TelegramModule.forRoot({
botKey: 'YourBotApiToken'
})]
})
// Or async
@Module({
imports: [
TelegramModule.forRootAsync({
useFactory: async (configService: ConfigService) => {
return {
botKey: configService.get('Telegram_API_Key')
};
inject: [ConfigService]
})
],
})
In your service class you can inject the service like so and then use it in any function as you would any other service
@Injectable()
export class MyService {
constructor(private readonly telegram: TelegramService) {}
testBot(): Observable<TelegramUser> {
return this.telegram.getMe();
}
}
Currently, the service only returns Observables
as the HttpModule
does. If you want to use Promises
just call .toPromise()
on the function.
If any bugs are found in the API wrapper, please open an issue on GitHub, or a Pull Request if you want to fix it yourself! Please be as explicit as possible and provide a minimum reproducing repository if at all possible, as it helps track down what went wrong.
All documentation for this wrapper comes from the Telegram Bot API documentation, if there are any typos, please let me know or open a PR to fix it.
Nestjs-telegram is MIT licensed.
FAQs
A NestJS Module for Telegram Bots
We found that nestjs-telegram-bot-api demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.