WebTrader 1.1.0__tar.gz → 1.1.4__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- webtrader-1.1.4/MANIFEST.in +4 -0
- {webtrader-1.1.0 → webtrader-1.1.4}/PKG-INFO +12 -1
- {webtrader-1.1.0 → webtrader-1.1.4}/WebTrader.egg-info/PKG-INFO +12 -1
- {webtrader-1.1.0 → webtrader-1.1.4}/WebTrader.egg-info/SOURCES.txt +4 -1
- webtrader-1.1.4/WebTrader.egg-info/entry_points.txt +2 -0
- webtrader-1.1.4/readme.md +130 -0
- {webtrader-1.1.0 → webtrader-1.1.4}/setup.py +5 -2
- webtrader-1.1.4/webtrader/webtrader.py +16 -0
- webtrader-1.1.0/WebTrader.egg-info/entry_points.txt +0 -2
- {webtrader-1.1.0 → webtrader-1.1.4}/WebTrader.egg-info/dependency_links.txt +0 -0
- {webtrader-1.1.0 → webtrader-1.1.4}/WebTrader.egg-info/requires.txt +0 -0
- {webtrader-1.1.0 → webtrader-1.1.4}/WebTrader.egg-info/top_level.txt +0 -0
- {webtrader-1.1.0 → webtrader-1.1.4}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.2
|
2
2
|
Name: WebTrader
|
3
|
-
Version: 1.1.
|
3
|
+
Version: 1.1.4
|
4
4
|
Summary: You can quickly open websites from your computer on your phone or tablet.
|
5
5
|
Author: NecmeddinHD
|
6
6
|
Keywords: telegram bot share link device transfer
|
@@ -99,6 +99,17 @@ Web sitelerini **bilgisayarınızdan** **telefonunuza veya tabletinize** kolayca
|
|
99
99
|
|
100
100
|
pip install WebTrader
|
101
101
|
|
102
|
+
## ⚙️ Güncelleme
|
103
|
+
|
104
|
+
pip install WebTrader --upgrade
|
105
|
+
|
106
|
+
## 📼 Import etme ( İçe Aktarma )
|
107
|
+
|
108
|
+
- from webtrader import *
|
109
|
+
- from webtrader import main
|
110
|
+
|
111
|
+
|
112
|
+
|
102
113
|
## Otomasyon
|
103
114
|
- Telegram ID'nizi @userinfobot Telegram botu aracılığıyla alın
|
104
115
|
- Kodunuza bu satırı ekleyin: `webtrader.chat_id="ID"`
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.2
|
2
2
|
Name: WebTrader
|
3
|
-
Version: 1.1.
|
3
|
+
Version: 1.1.4
|
4
4
|
Summary: You can quickly open websites from your computer on your phone or tablet.
|
5
5
|
Author: NecmeddinHD
|
6
6
|
Keywords: telegram bot share link device transfer
|
@@ -99,6 +99,17 @@ Web sitelerini **bilgisayarınızdan** **telefonunuza veya tabletinize** kolayca
|
|
99
99
|
|
100
100
|
pip install WebTrader
|
101
101
|
|
102
|
+
## ⚙️ Güncelleme
|
103
|
+
|
104
|
+
pip install WebTrader --upgrade
|
105
|
+
|
106
|
+
## 📼 Import etme ( İçe Aktarma )
|
107
|
+
|
108
|
+
- from webtrader import *
|
109
|
+
- from webtrader import main
|
110
|
+
|
111
|
+
|
112
|
+
|
102
113
|
## Otomasyon
|
103
114
|
- Telegram ID'nizi @userinfobot Telegram botu aracılığıyla alın
|
104
115
|
- Kodunuza bu satırı ekleyin: `webtrader.chat_id="ID"`
|
@@ -1,7 +1,10 @@
|
|
1
|
+
MANIFEST.in
|
2
|
+
readme.md
|
1
3
|
setup.py
|
2
4
|
WebTrader.egg-info/PKG-INFO
|
3
5
|
WebTrader.egg-info/SOURCES.txt
|
4
6
|
WebTrader.egg-info/dependency_links.txt
|
5
7
|
WebTrader.egg-info/entry_points.txt
|
6
8
|
WebTrader.egg-info/requires.txt
|
7
|
-
WebTrader.egg-info/top_level.txt
|
9
|
+
WebTrader.egg-info/top_level.txt
|
10
|
+
webtrader/webtrader.py
|
@@ -0,0 +1,130 @@
|
|
1
|
+
# WebTrader
|
2
|
+
Transfer websites from your **computer** to your **phone or tablet** via **Telegram** easily.
|
3
|
+
|
4
|
+
## Project's Github Page
|
5
|
+
|
6
|
+
# [WebTrader - BY NecmeddinHD](https://github.com/NecmeddinHD/WebTrader)
|
7
|
+
|
8
|
+
## Features
|
9
|
+
|
10
|
+
- Instantly send website URLs from your computer to your phone
|
11
|
+
- Uses Telegram bot API
|
12
|
+
- Minimal configuration required
|
13
|
+
- Optional: Convert to EXE with ExeMaker
|
14
|
+
|
15
|
+
---
|
16
|
+
|
17
|
+
## 🔧 Installation
|
18
|
+
|
19
|
+
pip install WebTrader
|
20
|
+
|
21
|
+
## Automation
|
22
|
+
- Get your Telegram ID via @userinfobot telegram bot
|
23
|
+
- Add this line into your code `WebTrader.chat_id="ID"`
|
24
|
+
- Change ID with your or anyone id
|
25
|
+
- Finally Setup is done
|
26
|
+
|
27
|
+
# EN Telegram Web Transfer
|
28
|
+
|
29
|
+
**Telegram** allows you to transfer websites from your computer to your phone.
|
30
|
+
|
31
|
+
## USAGE:
|
32
|
+
1. Copy the URL of the website you want to share and run the program.
|
33
|
+
2. The Telegram bot will send the link to you directly via Telegram.
|
34
|
+
3. You can click on this link and watch it from your phone or tablet.
|
35
|
+
|
36
|
+
If you know how to run Python on your phone and have Telegram installed on your computer, you can copy the video URL from your phone and transfer it to your computer. This way, you can use it more comfortably.
|
37
|
+
|
38
|
+
## TIP:
|
39
|
+
If you right-click on a YouTube video from your computer and copy the video URL with the timestamp, you can continue from where you left off directly on your phone. If you don't do this, it will behave as if you clicked from the past, and while it may not be exact, you'll continue a few seconds behind the point where you left off and if you want run exe maker and make an exe file.
|
40
|
+
|
41
|
+
## What Else Can You Find on My GitHub Page
|
42
|
+
|
43
|
+
# [NecmeddinHD](https://github.com/NecmeddinHD/)
|
44
|
+
|
45
|
+
## Other Projects of Mine
|
46
|
+
|
47
|
+
### [TrPy - Turkish Python](https://github.com/NecmeddinHD/TrPy)
|
48
|
+
This module makes learning and teaching Python easier.
|
49
|
+
|
50
|
+
### [sc3gameFoodChainSimulator - A Smartboard-Friendly Game Designed for Schools](https://github.com/NecmeddinHD/sc3gameFoodChainSimulator)
|
51
|
+
This package is designed to be used in schools and works on any smartboard.
|
52
|
+
|
53
|
+
### [Mebcrack - This Package Removes Internet Restrictions in Some Schools](https://github.com/NecmeddinHD/Mebcrack)
|
54
|
+
Thanks to this package, you can bypass MEB internet restrictions applied in some schools and use the internet freely.
|
55
|
+
If it doesn’t work, at least there is an HTML file named *EagleCraft* inside — you can double-click on it and play a game without being blocked.
|
56
|
+
It's an old version of Minecraft.
|
57
|
+
|
58
|
+
# WebTrader
|
59
|
+
Web sitelerini **bilgisayarınızdan** **telefonunuza veya tabletinize** kolayca **Telegram** aracılığıyla aktarın.
|
60
|
+
|
61
|
+
## Projenin Github Sayfası
|
62
|
+
|
63
|
+
# [WebTrader - NecmeddinHD Tarafından](https://github.com/NecmeddinHD/WebTrader)
|
64
|
+
|
65
|
+
## Özellikler
|
66
|
+
|
67
|
+
- Web sitesi URL'lerini bilgisayarınızdan telefonunuza anında gönderin
|
68
|
+
- Telegram bot API'si kullanır
|
69
|
+
- Minimum yapılandırma gerektirir
|
70
|
+
|
71
|
+
---
|
72
|
+
|
73
|
+
## 🔧 Kurulum
|
74
|
+
|
75
|
+
pip install WebTrader
|
76
|
+
|
77
|
+
## ⚙️ Güncelleme
|
78
|
+
|
79
|
+
pip install WebTrader --upgrade
|
80
|
+
|
81
|
+
## 📼 Import etme ( İçe Aktarma )
|
82
|
+
|
83
|
+
- from webtrader import *
|
84
|
+
- from webtrader import main
|
85
|
+
|
86
|
+
|
87
|
+
|
88
|
+
## Otomasyon
|
89
|
+
- Telegram ID'nizi @userinfobot Telegram botu aracılığıyla alın
|
90
|
+
- Kodunuza bu satırı ekleyin: `webtrader.chat_id="ID"`
|
91
|
+
- ID'yi kendi ID'nizle veya başka birinin ID'siyle değiştirin
|
92
|
+
- Son olarak, kurulum tamamlanmış olur
|
93
|
+
|
94
|
+
# TR Telegram Web Transfer
|
95
|
+
|
96
|
+
**Telegram** aracılığıyla bilgisayarınızdaki web sitelerini telefonunuza aktarabilirsiniz.
|
97
|
+
|
98
|
+
## KULLANIM:
|
99
|
+
1. Paylaşmak istediğiniz web sitesinin URL'sini kopyalayıp programı açın.
|
100
|
+
2. Telegram botu, linki size direkt olarak Telegram üzerinden gönderecek.
|
101
|
+
3. Bu linke tıklayarak telefonunuzdan veya tabletinizden yaptığınız işe devam edebilirsiniz.
|
102
|
+
|
103
|
+
Eğer telefonda Python çalıştırmayı biliyorsanız ve bilgisayarınızda Telegram varsa, telefonunuzdaki videonun URL'sini kopyalayıp bilgisayarınıza aktarabilirsiniz. Böylece daha rahat bir şekilde kullanabilirsiniz.
|
104
|
+
|
105
|
+
## TÜYO:
|
106
|
+
Eğer bilgisayarınız üzerinden bir YouTube videosuna sağ tıklayıp videonun URL'sini süresiyle birlikte kopyalarsanız, telefondan direkt kaldığınız yerden devam edersiniz. Eğer bunu yapmazsanız, geçmişten tıklamış gibi olur ve tam olarak olmasa da kaldığınız yere birkaç saniye geriden devam edersiniz.
|
107
|
+
|
108
|
+
## NOT:
|
109
|
+
Bu Proje Türk yapımıdır Ve Türk bir öğrenci tarafından geliştirilmiştir
|
110
|
+
Ayrıca terminale direkt olarak yazarak ta hızlıca kullanılabilmesini sağladım terminale `webtrader` yazarak kullana bilirsiniz
|
111
|
+
|
112
|
+
## Github sayfamda daha neler var
|
113
|
+
|
114
|
+
# [NecmeddinHD](https://github.com/NecmeddinHD/)
|
115
|
+
|
116
|
+
## Ayrıca Diğer Projelerim
|
117
|
+
|
118
|
+
### [TrPy - Türkçe Python](https://github.com/NecmeddinHD/TrPy)
|
119
|
+
Bu Modül Sayesinde Python Öğrenmek ve Öğretmek Kolaylaşır
|
120
|
+
|
121
|
+
### [sc3gameFoodChainSimulator - Okullarda Oynanmak Üzere Üretilmiş Her Akıllı Tahtada Açıla bilir bir oyun](https://github.com/NecmeddinHD/sc3gameFoodChainSimulator)
|
122
|
+
Bu Paket Okulda Kullanmak Üzere Tasarlandı
|
123
|
+
|
124
|
+
### [Mebcrack - Bu Paket Bazı Okullardaki Erişim Engelini Kaldırır](https://github.com/NecmeddinHD/Mebcrack)
|
125
|
+
Bu Paket Sayesinde Bazı Okulların Sağladığı Meb Erişim Engelini kırıp serbest bir şekilde internet kullanıla bilir
|
126
|
+
Eğer Çalışmaz ise içinde En Azından EagleCraft adında bir html dosyası var bu dosyaya çift tıklayarak erişim engeline
|
127
|
+
takılmadan oyun oyaya bilirsini oyun eski sürüm bir minecraft
|
128
|
+
|
129
|
+
# NecmeddinHD Tarafından Yapılmıştır
|
130
|
+

|
@@ -4,13 +4,16 @@ with open("readme.md", "r", encoding="utf-8") as f:
|
|
4
4
|
descript=f.read()
|
5
5
|
setup(
|
6
6
|
name="WebTrader",
|
7
|
-
version="1.1.
|
7
|
+
version="1.1.4",
|
8
8
|
packages=find_packages(),
|
9
|
+
package_data={
|
10
|
+
"webtrader": ["webtrader.py"], # main.py dosyasını dahil ediyoruz
|
11
|
+
},
|
9
12
|
install_requires=["pyperclip", "requests"],
|
10
13
|
description="You can quickly open websites from your computer on your phone or tablet.",
|
11
14
|
entry_points={
|
12
15
|
"console_scripts": [
|
13
|
-
"webtrader = webtrader:
|
16
|
+
"webtrader = webtrader.webtrader:maindef"
|
14
17
|
]
|
15
18
|
},
|
16
19
|
long_description=descript,
|
@@ -0,0 +1,16 @@
|
|
1
|
+
def maindef():
|
2
|
+
|
3
|
+
import requests
|
4
|
+
import pyperclip
|
5
|
+
|
6
|
+
TOKEN = "7745947395:AAGA43r6kc_9xajySwxXsNTI_wZGJlJjzkk"
|
7
|
+
chat_id = "1234567890" #Your Chat ID
|
8
|
+
link = pyperclip.paste()
|
9
|
+
|
10
|
+
url = f"https://api.telegram.org/bot{TOKEN}/sendMessage"
|
11
|
+
data = {"chat_id": chat_id, "text": link}
|
12
|
+
|
13
|
+
response = requests.post(url, data=data)
|
14
|
+
|
15
|
+
if __name__ == "__main__":
|
16
|
+
maindef()
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|