help@rskworld.in +91 93305 39277
RSK World
  • Home
  • Development
    • Web Development
    • Mobile Apps
    • Software
    • Games
    • Project
  • Technologies
    • Data Science
    • AI Development
    • Cloud Development
    • Blockchain
    • Cyber Security
    • Dev Tools
    • Testing Tools
  • Blog
  • About
  • Contact

Theme Settings

Color Scheme
Display Options
Font Size
100%
Back to Project
RSK World
real-estate-bot
RSK World
real-estate-bot
Real Estate Bot - Python + Flask + OpenAI + SQLite + Property Search + AI Chatbot + Viewing Scheduler
real-estate-bot
  • __pycache__
  • data
  • src
  • static
  • templates
  • tests
  • .env608 B
  • .env.example608 B
  • .gitignore2.5 KB
  • AR_VR_FEATURES.md4.2 KB
  • CREATE_RELEASE.md2.1 KB
  • FEATURES.md6.1 KB
  • INSTALL.md2 KB
  • LICENSE1.3 KB
  • README.md7.8 KB
  • RELEASE_NOTES_v1.0.0.md7.3 KB
  • SETUP_GUIDE.md10.4 KB
  • STATUS_REPORT.md11.8 KB
  • requirements-optional.txt984 B
  • requirements.txt284 B
  • run.py2.7 KB
.gitignoreFEATURES_SUMMARY.txteducational-tutor-bot.png.envCREATE_RELEASE.md
.gitignore
Raw Download
Find: Go to:
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class

# C extensions
*.so

# Distribution / packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
pip-wheel-metadata/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST

# PyInstaller
#  Usually these files are written by a python script from a template
#  before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec

# Installer logs
pip-log.txt
pip-delete-this-directory.txt

# Unit test / coverage reports
htmlcov/
.tox/
.nox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
*.py,cover
.hypothesis/
.pytest_cache/

# Translations
*.mo
*.pot

# Django stuff:
*.log
local_settings.py
db.sqlite3
db.sqlite3-journal

# Flask stuff:
instance/
.webassets-cache

# Scrapy stuff:
.scrapy

# Sphinx documentation
docs/_build/

# PyBuilder
target/

# Jupyter Notebook
.ipynb_checkpoints

# IPython
profile_default/
ipython_config.py

# pyenv
.python-version

# pipenv
#   According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
#   However, in case of collaboration, if having platform-specific dependencies or dependencies
#   having no cross-platform support, pipenv may install dependencies that don't work, or not
#   install all needed dependencies.
#Pipfile.lock

# PEP 582; used by e.g. github.com/David-OConnor/pyflow
__pypackages__/

# Celery stuff
celerybeat-schedule
celerybeat.pid

# SageMath parsed files
*.sage.py

# Environments
.env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/

# Spyder project settings
.spyderproject
.spyproject

# Rope project settings
.ropeproject

# mkdocs documentation
/site

# mypy
.mypy_cache/
.dmypy.json
dmypy.json

# Pyre type checker
.pyre/

# Project specific
real_estate_bot.db
*.db
*.sqlite
*.sqlite3

# Logs
logs/
*.log

# IDE
.vscode/
.idea/
*.swp
*.swo
*~

# OS
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db

# Temporary files
tmp/
temp/
*.tmp
*.temp

# Node modules (if using npm for frontend dependencies)
node_modules/
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# Frontend build artifacts
static/dist/
static/build/

# Backup files
*.bak
*.backup
*.old

# Configuration files with sensitive data
config.json
secrets.json
credentials.json

# Upload directories
uploads/
media/
186 lines•2.5 KB
text
.env
Raw Download
Find: Go to:
# OpenAI API Configuration
OPENAI_API_KEY=your_openai_api_key_here

# Flask Configuration
FLASK_ENV=development
FLASK_DEBUG=True
SECRET_KEY=your_secret_key_here

# Database Configuration
DATABASE_URL=sqlite:///real_estate_bot.db

# Real Estate API Configuration (Optional)
REAL_ESTATE_API_KEY=your_real_estate_api_key_here
REAL_ESTATE_API_URL=https://api.example.com/properties

# Contact Information
CONTACT_EMAIL=info@rskworld.com
SUPPORT_EMAIL=support@rskworld.com
PHONE=+91 93305 39277

# Project Information
PROJECT_NAME=Real Estate Bot
VERSION=1.0.0
AUTHOR=RSK World
YEAR=2026
26 lines•608 B
text
CREATE_RELEASE.md
Raw Download

CREATE_RELEASE.md

# How to Create GitHub Release

All code and tags have been successfully pushed to GitHub. To create a release, follow one of these methods:

## Method 1: Using GitHub Web Interface (Recommended)

1. Go to your repository: https://github.com/rskworld/real-estate-bot
2. Click on **"Releases"** (right sidebar) or go to: https://github.com/rskworld/real-estate-bot/releases
3. Click **"Create a new release"** or **"Draft a new release"**
4. Select the tag: **v1.0.0**
5. Release title: **v1.0.0 - Initial Release**
6. Copy the contents from [RELEASE_NOTES_v1.0.0.md](RELEASE_NOTES_v1.0.0.md) and paste in the description
7. Check **"Set as the latest release"**
8. Click **"Publish release"**

## Method 2: Using GitHub CLI (if installed)

```bash
gh release create v1.0.0 \
--title "v1.0.0 - Initial Release" \
--notes-file RELEASE_NOTES_v1.0.0.md \
--latest
```

## Method 3: Using Git and GitHub API

You can use the GitHub API with a personal access token:

```bash
# Set your GitHub token
export GITHUB_TOKEN=your_github_personal_access_token

# Create release using curl
curl -X POST \
-H "Authorization: token $GITHUB_TOKEN" \
-H "Accept: application/vnd.github.v3+json" \
https://api.github.com/repos/rskworld/real-estate-bot/releases \
-d @- << EOF
{
"tag_name": "v1.0.0",
"target_commitish": "main",
"name": "v1.0.0 - Initial Release",
"body": "$(cat RELEASE_NOTES_v1.0.0.md | sed 's/"/\\"/g' | sed ':a;N;$!ba;s/\n/\\n/g')",
"draft": false,
"prerelease": false
}
EOF
```

## Quick Release Summary

- **Tag:** v1.0.0
- **Branch:** main
- **Title:** v1.0.0 - Initial Release
- **Description:** See RELEASE_NOTES_v1.0.0.md
- **Status:** Stable Release

## What Has Been Pushed

✅ All source code files
✅ Documentation (README, SETUP_GUIDE, etc.)
✅ Configuration files
✅ Static assets (CSS, JS, templates)
✅ Test files
✅ Git tags: v1.0.0, v1.0.0-stable
✅ Release notes

## Repository URL

https://github.com/rskworld/real-estate-bot

---

**Note:** The easiest method is using the GitHub web interface (Method 1).
🚀 Support RSK World

Subscribe to our YouTube channel for latest tutorials & updates!



Click subscribe & support our work ❤️

About RSK World

Founded by Molla Samser, with Designer & Tester Rima Khatun, RSK World is your one-stop destination for free programming resources, source code, and development tools.

Founder: Molla Samser
Designer & Tester: Rima Khatun

Development

  • Game Development
  • Web Development
  • Mobile Development
  • AI Development
  • Development Tools

Legal

  • Terms & Conditions
  • Privacy Policy
  • Disclaimer

Contact Info

Nutanhat, Mongolkote
Purba Burdwan, West Bengal
India, 713147

+91 93305 39277

hello@rskworld.in
support@rskworld.in

© 2026 RSK World. All rights reserved.

Content used for educational purposes only. View Disclaimer