ferogram 0.0.0__py3-none-any.whl

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.
ferogram/__init__.py ADDED
@@ -0,0 +1,8 @@
1
+ __version__ = "0.0.0"
2
+ __author__ = "Ankit Chaubey"
3
+
4
+ raise ImportError(
5
+ "ferogram 0.0.0 is a fast wrapper on top of ferogram library"
6
+ "The actual library has not been released yet. "
7
+ "Follow https://github.com/ankit-chaubey/ferogram for updates."
8
+ )
@@ -0,0 +1,42 @@
1
+ Metadata-Version: 2.4
2
+ Name: ferogram
3
+ Version: 0.0.0
4
+ Summary: Python wrapper for ferogram a blazing-fast Rust MTProto library for Telegram clients and bots.
5
+ Project-URL: Homepage, https://github.com/ankit-chaubey/ferogram
6
+ Project-URL: Repository, https://github.com/ankit-chaubey/ferogram
7
+ Author-email: Ankit Chaubey <ankitchaubey.dev@gmail.com>
8
+ License: MIT OR Apache-2.0
9
+ License-File: LICENSE
10
+ Keywords: bot,client,mtproto,rust,telegram
11
+ Classifier: Development Status :: 1 - Planning
12
+ Classifier: Intended Audience :: Developers
13
+ Classifier: License :: OSI Approved :: MIT License
14
+ Classifier: Programming Language :: Python :: 3
15
+ Classifier: Programming Language :: Rust
16
+ Classifier: Topic :: Communications :: Chat
17
+ Classifier: Topic :: Software Development :: Libraries
18
+ Requires-Python: >=3.9
19
+ Description-Content-Type: text/markdown
20
+
21
+ # ferogram
22
+
23
+ > **This project is in development. The real release is coming.**
24
+
25
+ ## What is ferogram?
26
+
27
+ **ferogram** is an upcoming Python wrapper on top of ferogram library that wraps the [ferogram](https://github.com/ankit-chaubey/ferogram) Rust MTProto engine, giving you raw Rust speed with clean, fully-typed Python ergonomics for writing Telegram clients and bots.
28
+
29
+ The entire core will remain in Rust for maximum performance. Python sits on top as a developer-friendly interface.
30
+
31
+ ## Roadmap
32
+
33
+ - [x] Rust MTProto core (`ferogram` crate, already in development)
34
+ - [ ] PyO3-based Rust / Python bindings
35
+ - [ ] Typed Python wrapper (`ferogram` on PyPI)
36
+ - [ ] Async-first client and bot API
37
+ - [ ] Full release
38
+
39
+ ## Links
40
+
41
+ - **GitHub:** [github.com/ankit-chaubey/ferogram](https://github.com/ankit-chaubey/ferogram)
42
+ - **Author:** Ankit Chaubey, `ankitchaubey.dev@gmail.com`, Telegram [@AnkitChaubey](https://t.me/AnkitChaubey)
@@ -0,0 +1,5 @@
1
+ ferogram/__init__.py,sha256=dLAt5W5Xkhvk65s6E4BixaynCLSvKifChenkvX3ihFI,260
2
+ ferogram-0.0.0.dist-info/METADATA,sha256=2jVAx8n7gbU2pdrs8Zt0wbapnmZCvMTWFjnBhNCAxlk,1754
3
+ ferogram-0.0.0.dist-info/WHEEL,sha256=QccIxa26bgl1E6uMy58deGWi-0aeIkkangHcxk2kWfw,87
4
+ ferogram-0.0.0.dist-info/licenses/LICENSE,sha256=XtjnNMxiiRN4qQV3Wd5XcZ6OMtOdGyG6ZbwReRokh7E,1151
5
+ ferogram-0.0.0.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.29.0
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,24 @@
1
+ MIT OR Apache-2.0
2
+
3
+ This project is dual-licensed. You may choose either license.
4
+
5
+ MIT License
6
+ Copyright (c) 2024 Ankit Chaubey
7
+
8
+ Permission is hereby granted, free of charge, to any person obtaining a copy
9
+ of this software and associated documentation files (the "Software"), to deal
10
+ in the Software without restriction, including without limitation the rights
11
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
12
+ copies of the Software, and to permit persons to whom the Software is
13
+ furnished to do so, subject to the following conditions:
14
+
15
+ The above copyright notice and this permission notice shall be included in all
16
+ copies or substantial portions of the Software.
17
+
18
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
21
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
23
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
24
+ SOFTWARE.