Skip to content

Commit

Permalink
The first public release (#22)
Browse files Browse the repository at this point in the history
* remove debug comments

* prepared deploy reqs

* prepared procfile

* comment change

* added opus

* bug fix: empty queue on request betw waiting times

* bug fix

* removed exe file

* forced IPv4 to avoid 426 error

* remove lag and age restriction

* cookie changes

* cookie change

* cookie change

* getting creds from environment

* add cookies.txt

* add cookies

* Update README.md

* [FIX] now the default codec is h264 and aac with .mp4 and .m4a exts

* update requirements

* update requirements

* add file delay apology

* update notifying system

* [ASYNC] make all blocking funcs non blocking

* better format finding and prevent bash glitch

* made filename shell escaped

* add delete after to micro messages

* add concurrency and hoping to fix memory error

* Update README.md

* [BETA] added instagram private feature

* made all youtubedl extract info async

* [PATCH] fixed problem with add-playlist

* [PATCH] fixed memory leaque in check_queue

* added timeouts to download interactions

* add prefetcher

* remove login.json

* added command for cookie file fetch

* delete credentials

* add default fetcher

* update yt search in play

* remove procfile

* better refetch

* better queuelocks

* reformated code

* [FIX] add-playlist "eventloop is already running"

* [REFORMAT] using cogs

* added help notes

* add current player command

* update requirements

* [FEATURE] add help command

* update help for download

* Update README.md

* fixed a ,

* update help

* Update README.md

* update help

* add copyright notice

* modified checks and added activity to bot

* update alias mechanism in help

* update requirements

* add filename restriction to downloaded files

* remove excessive raw data

* move from filebin to gofile

* added select disable for download feature

* better gofile upload

* update docs to new upcomming command `shuffle`

* fix glitching with multivideo downloads

* better code formatting in download

* better error and case handling

* remove dirty timeout traceback

* add spotify support to add-playlist

* add shuffle command

* enhance audio searching

* update readme for spotify support

* better addsong

* create new paginator, separate vars, fix requirements

* Update README.md

* fix playlist problem for download.py

* restrict multi video downloads

* cleanup help

* Update README.md
  • Loading branch information
pritam20ps05 authored Jul 26, 2022
1 parent f837322 commit 1a9b782
Show file tree
Hide file tree
Showing 15 changed files with 1,587 additions and 841 deletions.
8 changes: 6 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
bot-env
__pycache__
*-env
__pycache__
*test.py
*.json
*.txt
*.mp4
1 change: 0 additions & 1 deletion NeodiumDownload/__init__.py

This file was deleted.

168 changes: 0 additions & 168 deletions NeodiumDownload/download.py

This file was deleted.

19 changes: 19 additions & 0 deletions NeodiumUtils/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
"""
copyright (c) 2021 pritam20ps05(Pritam Das)
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
"""
from .download import Downloader, YTdownload, INSdownload, private_login, ydl_async, YDL_OPTIONS
from .helpcommand import NeodiumHelpCommand
from .paginator import Paginator
from .prefetch import getCookieFile
from .spotify import SpotifyClient
from .vars import *
Loading

0 comments on commit 1a9b782

Please sign in to comment.