-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
40 additions
and
52 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,4 @@ | ||
# TURKANIME İNDİRİCİ | ||
Türkanime için terminal video oynatıcı ve indirici. İtinayla her bölümü indirir & oynatır. | ||
- Yığın bölüm indirebilir | ||
- Animu izleyebilir | ||
- Çözünürlük seçebilir | ||
- Uygulama içinden arama yapabilir | ||
- Bir yandan izlerken bir yandan animeyi kaydedebilir | ||
|
||
#### Desteklenen kaynaklar: | ||
```Sibnet, Odnoklassinki, Sendvid, Mail.ru, VK, Google+, Myvi, GoogleDrive, Yandisk, Vidmoly, Yourupload, Dailymotion``` | ||
|
||
#### İndirme bölümü: | ||
https://github.com/KebabLord/turkanime-downloader/releases/tag/v3 | ||
|
||
### İndirme | ||
![indirme.gif](ss_indir.gif) | ||
|
||
### İzleme | ||
![indirme.gif](ss_izle.gif) | ||
|
||
### Yapılacaklar: | ||
- ~~Domain güncellemesinden beridir kod stabil çalışmıyor, düzeltilecek.~~ | ||
- ~~Kod çorba gibi, basitleştirilecek.~~ | ||
- ~~Navigasyon ve indirme algoritması http talepleriyle sağlanacak.~~ | ||
- ~~Zaman bloğu olarak sleep'den kurtulunacak, elementin yüklenmesi beklenecek.~~ | ||
# Windows için PyInstaller ile build | ||
``` | ||
pyinstaller --noconfirm --onefile --console --icon "ta.ico" --name "TurkAnimu" --add-binary "geckodriver.exe;." --add-binary "mpv.exe;." --add-binary "youtube-dl.exe;." "turkanime.py" | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
import os | ||
import sys | ||
|
||
def dosya(relative_path): | ||
""" PyInstaller için gömülü dosyaların dizinini getir """ | ||
try: | ||
base_path = sys._MEIPASS | ||
except Exception: | ||
base_path = os.path.abspath(".") | ||
|
||
return os.path.join(base_path, relative_path) | ||
|
||
def get_config(): | ||
""" Kullanıcı klasöründe eğer yoksa TurkAnimu.ini dosyasın oluştur """ | ||
confdir = os.path.join( os.path.expanduser("~"), "TurkAnimu.ini" ) | ||
if not os.path.isfile( confdir ): | ||
with open(confdir,"w") as f: | ||
f.write( | ||
"[TurkAnime]\n"+ | ||
"izlerken kaydet = False\n"+ | ||
"indirilenler = .\n" | ||
) | ||
return confdir |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters