Advertisement
ilyakanyshev

Untitled

Jul 21st, 2022
939
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 2.03 KB | None | 0 0
  1. - vk_api/
  2.     - common/
  3.         - __init__.py
  4.             + class Proxy:
  5.             + class Query:
  6.             + class Logger: (with support logging and loguru)
  7.  
  8.     - api/
  9.         + common.py
  10.             + class ListenerAttributes:
  11.                 - def __getattr__(self, name)
  12.                 - def __call__(self, *args, **kwargs)
  13.  
  14.         + api.py
  15.             + class API(common.ListenerAttributes):
  16.        
  17.         - objects.py
  18.             - class User
  19.             - class Group
  20.  
  21.             - class Chat
  22.             - class ConversationChat(Chat)
  23.             - class GroupChat(Chat)
  24.            
  25.             - class ChatMember
  26.             - class GroupChatMember(ChatMember)
  27.             - class UserChatMember(ChatMember)
  28.  
  29.             - class Message
  30.             - class AudioMessage(Message)
  31.  
  32.             - class Image
  33.             - class Document
  34.             - class Video
  35.             - class Post
  36.             - class Audio
  37.  
  38.         - buttons/
  39.             - Button
  40.             - TextButton(Button)
  41.             - OpenLinkButton(Button)
  42.             - LocationButton(Button)
  43.             - VkPayButton(Button)
  44.             - VkAppsButton(Button)
  45.             - CallbackButton(Button)
  46.  
  47.         - keyboard.py
  48.             - class Keyboard
  49.             - class InlineKeyboard
  50.  
  51.         - vkdonut.py
  52.             - class VkDonut
  53.  
  54.         - products
  55.  
  56.         - history.py
  57.             - class History:
  58.  
  59.         - payments.py
  60.             - class Order:
  61.  
  62.     - utils/
  63.         - loaders.py
  64.             - class Uploader:
  65.             - class WallPhotoUploader(Uploader):
  66.  
  67.     - bot/
  68.         - class Listener:
  69.         - class Bot:
  70.         - class MiddleWare:
  71.  
  72.     - docs/
  73.         - ... (документация)
  74.  
  75.     - examples/
  76.         - ... (примеры использования модуля)
  77.  
  78.     - test/
  79.         - ... (тесты для проверки работы модуля)
  80.  
  81.     - __init__.py
  82.  
  83. - utils/
  84.     - decorators/
  85.         - help
  86.         - error_handler
  87.  
  88.     - db/
  89.         - models.py
  90.         - connections.py
  91.  
  92.     - models
  93.         - class Cache
  94.         - class Function
  95.             - cooldown (per user, per chat)
  96.             - with/without cache and cache parameters
  97.  
  98. - functions/
  99.     - __init__.py
  100.         - def load(bot) // Importing all files from this repository except list of names
  101.  
  102.     - ... (all functions)
  103.  
  104. - instructions/
  105.     - How to install.txt
  106.  
  107. - middlewares/
  108. - config.py
  109. - bot.py
  110.  
  111.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement