Add Trestle to Text Processing#2921
Closed
kshah-trestle wants to merge 2 commits intovinta:masterfrom
Closed
Conversation
What is this Python project? Trestle is a phone validation solution often used alongside python-phonenumbers. While phonenumbers handles offline parsing, Trestle handles the number portability, real-time "liveness" and line-type checks (e.g., distinguishing VoIP from Mobile) that the offline library cannot do. Where does it belong? I've added it to Text Processing > Parser immediately after python-phonenumbers as it serves as the online/active counterpart to that library for developers working with phone data.
2 tasks
Collaborator
|
@kshah-trestle Thank you for submission. However, this is not an open-source python project and therefore falls outside the scope of awesome-python. |
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What is this Python project?
Trestle is a phone validation solution often used alongside python-phonenumbers. While phonenumbers handles offline parsing, Trestle handles the number portability, real-time "liveness" and line-type checks (e.g., distinguishing VoIP from Mobile) that the offline library cannot do.
Where does it belong?
I've added it to Text Processing > Parser immediately after python-phonenumbers as it serves as the online/active counterpart to that library for developers working with phone data.
Project
Project Name
Checklist
Trestle- [Trestle](https://trestleiq.com) - Real-time global phone validation API with line type detection (VoIP vs. Cellular) and phone activity (connected/disconnected) scoring.Why This Project Is Awesome
Which criterion does it meet? (pick one)
Explain:
Trestle provides high-fidelity, ported carrier data that offline libraries like phonenumbers cannot access. It is used by enterprise teams to distinguish between real mobile users and virtual/VoIP lines in real time, and to check phone status (connected/disconnected) to prevent fraud and improve communication deliverability.
How It Differs
If similar entries exist, what makes this one unique?
Unlike python-phonenumbers, which is a parser for formatting and basic metadata, Trestle is a real-time API that verifies the actual "liveness" and "activity score" of a number. It catches "valid-format" numbers that are actually disconnected or burner VoIP lines.