Option 1: Direct creation from terminal
# Create the README.md file with content
cat > README.md << 'EOF'
# ๐ซ Free Fire UID to INFO
A powerful Python script that extracts detailed player information from any Free Fire UID using the GameSkinbo API.
## โจ Features
- ๐ **Basic Profile** - Name, Gender, Level, EXP, Likes, Honor & Credit Score
- ๐ **Rank Statistics** - BR & CS ranks, rank points, max ranks achieved
- ๐ **Guild Information** - Guild name, level, members, leader details
- ๐พ **Pet Details** - Pet name, type, level, experience, skin ID
- ๐ **Account Assets** - Equipped avatar, banner, outfit, weapon
- ๐
**Timeline** - Account creation date & last login
- ๐ **Multi-Region Support** - 12+ regions including Advance Server
- ๐ **Auto Token Generation** - Secure API authentication
## ๐ Supported Regions
| Code | Region |
|------|--------|
| ind | ๐ฎ๐ณ India |
| sg | ๐ธ๐ฌ Singapore |
| id | ๐ฎ๐ฉ Indonesia |
| br | ๐ง๐ท Brazil |
| us | ๐บ๐ธ USA |
| th | ๐น๐ญ Thailand |
| vn | ๐ป๐ณ Vietnam |
| tw | ๐น๐ผ Taiwan |
| me | ๐ Middle East |
| pk | ๐ต๐ฐ Pakistan |
| bd | ๐ง๐ฉ Bangladesh |
| adv | ๐ฅ Advance Server |
## ๐ Requirements
- Python 3.6+
- `requests` library
## ๐ง Installation
```bash
# Clone the repository
git clone https://github.com/Ibrahim404-cyber/Free-Fire-UID-to-INFO.git
# Navigate to directory
cd Free-Fire-UID-to-INFO
# Install required package
pip install requests๐ Usage
python ff_updated.pySteps:
- Select option 1 to check a UID
- Enter the Free Fire UID (numbers only)
- Choose the player's region from the list
- View the complete player information
๐ธ Output Example
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
๐ UID Verification
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
UID : 1234567890
Nickname : ProPlayer
Gender : Male ๐ฆ
Region : ind
Account Level : 85
EXP : 1,234,567
Likes : 15,432
Honor Score : 5200
Credit Score : 100
Account Created : 2021-03-15
Last Login : 2026-06-12
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
๐ Rank & Stats
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
BR Rank : Grandmaster
BR Rank Points : 4200
BR Max Rank : Grandmaster
CS Rank Points : 3100
CS Max Rank : Heroic
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
๐ Guild Information
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
Guild Name : Elite Squad
Guild Level : 10
Guild Members : 45/50
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ
Check Complete!
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
This tool is for educational purposes only. Use it responsibly and only check UIDs you own or have permission to inspect. The developer is not responsible for any misuse of this script.
๐ License
MIT License - Free for personal and educational use.
๐จโ๐ป Author
Ibrahim404-cyber
โญ Star this repository if you found it useful! EOF
Add to git
git add README.md
Commit
git commit -m "Add README.md with documentation"
Push to GitHub
git push origin main
---
### Option 2: Complete step-by-step commands
```bash
# 1. Initialize git (if not already done)
git init
# 2. Add your Python file
git add ff_updated.py
# 3. Create and add README
echo "# Free Fire UID to INFO - Player Info Checker" > README.md
echo "" >> README.md
echo "Python script to extract Free Fire player details from UID. Supports 12+ regions." >> README.md
# 4. Commit both files
git commit -m "Initial commit: FF UID checker script and README"
# 5. Add remote origin (replace with your repo URL)
git remote add origin https://github.com/Ibrahim404-cyber/Free-Fire-UID-to-INFO.git
# 6. Push to GitHub
git branch -M main
git push -u origin main
Option 3: One-liner (fastest)
echo "# ๐ซ Free Fire UID to INFO\n\nPython script to extract player details from any Free Fire UID.\n\n## Usage\n\`\`\`bash\npython ff_updated.py\n\`\`\`\n\n## Features\n- Profile info (name, level, gender)\n- Rank stats (BR & CS)\n- Guild details\n- Pet information\n- 12+ regions supported\n\n## Requirements\n\`\`\`bash\npip install requests\n\`\`\`" > README.md && git add README.md && git commit -m "Add README" && git push