ParkSeoJoon2005
I like to Deploy Apps And learn languages Like Python, Also Astronomy and mysteries too Love korea Japan and K pop lover ARMY,ONCE,BLINK
StudentSouth Korea
Pinned Repositories
AstroSoul
ATHTML
Aurora-v0.1
A Modular Telegram Group Manager Bot With Cool Modules(Updating...)
Aurora-v2.0
An Astronomy Themed Telegram Group Manager Bot for Your Groups About Astronomy
Bae-Suzy-Bot-TG
A Telegram Filter Bot, Support Unlimited Filter. Also, The Bot can auto-filter telegram File | video
DaisyX
“ HOLA HUMANS 👋 I'M DAISYX 2.0 ❤️ „ OLD VERSION OF DAISYX.. Source Code of @Daisyxbot
LuciferMoringstar_Robot
Autofilter with imdb bot || broakcast , imdb poster and imdb rating
MaiSakurajima
Minatozaki-Sana
A Modular Telegram Group Help PROBOT by Sur_vivor...You Can Contact Me https://t.me/Surv_ivor
The-Piller-Of-Autumn
ParkSeoJoon2005's Repositories
ParkSeoJoon2005/AstroSoul
ParkSeoJoon2005/ATHTML
ParkSeoJoon2005/Bae-Suzy-Bot-TG
A Telegram Filter Bot, Support Unlimited Filter. Also, The Bot can auto-filter telegram File | video
ParkSeoJoon2005/DaisyX
“ HOLA HUMANS 👋 I'M DAISYX 2.0 ❤️ „ OLD VERSION OF DAISYX.. Source Code of @Daisyxbot
ParkSeoJoon2005/Anemanda
ParkSeoJoon2005/anjanamadu.net
My personal portfolio.
ParkSeoJoon2005/ATWEB-Startup-Website
ParkSeoJoon2005/AuroraSKBot
🔥“ Hey there 👋 I'm Max Robot „ PTB Group management bot with some extra features🔥
ParkSeoJoon2005/Auroraxtest
ParkSeoJoon2005/duwanranasinghe
Config files for my GitHub profile.
ParkSeoJoon2005/EvaMaria
ParkSeoJoon2005/GDUPLOAD_BOT2
Gdriver Upload Bot(Team Drive supported)
ParkSeoJoon2005/HexzyBot
ParkSeoJoon2005/kisarapesanjithperera.github.io
🧿My Mini Website Template👻
ParkSeoJoon2005/KukiChatbot
ParkSeoJoon2005/Max-Robot-1
👋Hi There 😊 I am Max Robot. A next gen powerful Telegram group manager bot for manage with cool, new, smart features.......
ParkSeoJoon2005/MinatozakiSana
ParkSeoJoon2005/mzlogin.github.io
Jekyll Themes / GitHub Pages 博客模板 / A template repository for Jekyll based blog
ParkSeoJoon2005/Sanara-
ParkSeoJoon2005/Shadow
“ Hey Guys 👋, I'm Shadow v3.0 ❤️„ This is the Source Code of @Mr_Shadow_Robot. Give a star and fork
ParkSeoJoon2005/sz-rose-bot
“Hey there 👋 I'm szrosebot .A Powerful, Smart And Simple Group Manager with some extra features..
ParkSeoJoon2005/sz-rosebot
szrose is an all in one group management bot made for managing your group effectively with some advance security tools & Suit For All Your Needs ❤️
ParkSeoJoon2005/Telegram_VC_Bot
Telegram Voice Chat Bot Written In Python Using Pytgcalls & Pyrogram.
ParkSeoJoon2005/template
Web Site Template that Can make a website easily
ParkSeoJoon2005/template-1
Web Site Template
ParkSeoJoon2005/VeezMusic
veez music is a telegram music bot project, allow you to play music on voice chat group telegram.
ParkSeoJoon2005/vps-heroku
ParkSeoJoon2005/web_scraping_challenge
## Step 1 - Scraping Complete your initial scraping using Jupyter Notebook, BeautifulSoup, Pandas, and Requests/Splinter. * Create a Jupyter Notebook file called `mission_to_mars.ipynb` and use this to complete all of your scraping and analysis tasks. The following outlines what you need to scrape. ### NASA Mars News * Scrape the [Mars News Site](https://redplanetscience.com/) and collect the latest News Title and Paragraph Text. Assign the text to variables that you can reference later. ```python # Example: news_title = "NASA's Next Mars Mission to Investigate Interior of Red Planet" news_p = "Preparation of NASA's next spacecraft to Mars, InSight, has ramped up this summer, on course for launch next May from Vandenberg Air Force Base in central California -- the first interplanetary launch in history from America's West Coast." ``` ### JPL Mars Space Images - Featured Image * Visit the url for the Featured Space Image site [here](https://spaceimages-mars.com). * Use splinter to navigate the site and find the image url for the current Featured Mars Image and assign the url string to a variable called `featured_image_url`. * Make sure to find the image url to the full size `.jpg` image. * Make sure to save a complete url string for this image. ```python # Example: featured_image_url = 'https://spaceimages-mars.com/image/featured/mars2.jpg' ``` ### Mars Facts * Visit the Mars Facts webpage [here](https://galaxyfacts-mars.com) and use Pandas to scrape the table containing facts about the planet including Diameter, Mass, etc. * Use Pandas to convert the data to a HTML table string. ### Mars Hemispheres * Visit the astrogeology site [here](https://marshemispheres.com/) to obtain high resolution images for each of Mar's hemispheres. * You will need to click each of the links to the hemispheres in order to find the image url to the full resolution image. * Save both the image url string for the full resolution hemisphere image, and the Hemisphere title containing the hemisphere name. Use a Python dictionary to store the data using the keys `img_url` and `title`. * Append the dictionary with the image url string and the hemisphere title to a list. This list will contain one dictionary for each hemisphere. ```python # Example: hemisphere_image_urls = [ {"title": "Valles Marineris Hemisphere", "img_url": "..."}, {"title": "Cerberus Hemisphere", "img_url": "..."}, {"title": "Schiaparelli Hemisphere", "img_url": "..."}, {"title": "Syrtis Major Hemisphere", "img_url": "..."}, ] ``` - - - ## Step 2 - MongoDB and Flask Application Use MongoDB with Flask templating to create a new HTML page that displays all of the information that was scraped from the URLs above. * Start by converting your Jupyter notebook into a Python script called `scrape_mars.py` with a function called `scrape` that will execute all of your scraping code from above and return one Python dictionary containing all of the scraped data. * Next, create a route called `/scrape` that will import your `scrape_mars.py` script and call your `scrape` function. * Store the return value in Mongo as a Python dictionary. * Create a root route `/` that will query your Mongo database and pass the mars data into an HTML template to display the data. * Create a template HTML file called `index.html` that will take the mars data dictionary and display all of the data in the appropriate HTML elements. Use the following as a guide for what the final product should look like, but feel free to create your own design. ![final_app_part1.png](Images/final_app.png) - - - ## Step 3 - Submission To submit your work to BootCampSpot, create a new GitHub repository and upload the following: 1. The Jupyter Notebook containing the scraping code used. 2. Screenshots of your final application. 3. Submit the link to your new repository to BootCampSpot. 4. Ensure your repository has regular commits and a thorough README.md file ## Hints * Use Splinter to navigate the sites when needed and BeautifulSoup to help find and parse out the necessary data. * Use Pymongo for CRUD applications for your database. For this homework, you can simply overwrite the existing document each time the `/scrape` url is visited and new data is obtained. * Use Bootstrap to structure your HTML template.
ParkSeoJoon2005/YukkiMusicBot
A Telegram Music Bot with proper functions written in Python with Pyrogram and Py-Tgcalls.
ParkSeoJoon2005/Zaid-Vc-Player
TELEGRAM MUSIC BOT SUPPORT EVERYTHING ... NOW STABLE+ UPDATED PYTGCALLS