Skip to content
Cienapps
  • Python
Menu Close
  • Python

Author: Sebas

This author has written 21 articles
  1. Home>
  2. Sebas>
  3. Page 2

script to convert pdf to excel using python

  • Post author:Sebas
  • Post published:April 2, 2022
  • Post category:Python
  • Post comments:0 Comments

hello everyone in this small piece of code you will be able to convert a PDF to Excel using just your terminal You can copy and paste the code just…

Continue Readingscript to convert pdf to excel using python

python 3 script to calculate time difference in seconds

  • Post author:Sebas
  • Post published:March 31, 2022
  • Post category:Python
  • Post comments:0 Comments

hello programmers in this piece of code it will be useful to calculate the time difference in seconds if you find it useful you can write a comment >>> import…

Continue Readingpython 3 script to calculate time difference in seconds

Python 3 Script to move mause randomly every minute

  • Post author:Sebas
  • Post published:March 30, 2022
  • Post category:JavaScript
  • Post comments:0 Comments

import pyautogui pyautogui.click(100, 100) pyautogui.moveTo(100, 150) pyautogui.moveRel(0, 10) #the mouse is move 10 pixels pyautogui.dragTo(100, 150) pyautogui.dragRel(0, 10)

Continue ReadingPython 3 Script to move mause randomly every minute

script to upload file to server Code using Python 3

  • Post author:Sebas
  • Post published:March 30, 2022
  • Post category:Python
  • Post comments:0 Comments

import pysftp srv = pysftp.Connection(host="www.destination.com", username="root", password="password",log="./temp/pysftp.log") with srv.cd('public'): #chdir to public srv.put('C:\Users\XXX\Dropbox\test.txt') #upload file to nodejs/ # Closes the connection srv.close()

Continue Readingscript to upload file to server Code using Python 3

Script to Move files between two AWS folders using boto3

  • Post author:Sebas
  • Post published:March 30, 2022
  • Post category:Python
  • Post comments:0 Comments

script to move files between different folders in s3 using Python and boto3 import boto3 s3 = boto3.resource('s3') copy_source = { 'Bucket': 'mybucket', 'Key': 'mykey' } s3.meta.client.copy(copy_source, 'otherbucket', 'otherkey')

Continue ReadingScript to Move files between two AWS folders using boto3

Python script to upload files to s3 and boto3

  • Post author:Sebas
  • Post published:March 30, 2022
  • Post category:Python
  • Post comments:0 Comments

hello this is a script that will help you upload files to the s3 cloud using python this is a simple script but it can be of great help If…

Continue ReadingPython script to upload files to s3 and boto3

Script to Print calendar using Python 3

  • Post author:Sebas
  • Post published:March 30, 2022
  • Post category:Python
  • Post comments:0 Comments

hello I share a small but useful script to show the calendar using Payton You can choose the year and the number of months you want to print, it is…

Continue ReadingScript to Print calendar using Python 3

Python 3 script to upload files to server

  • Post author:Sebas
  • Post published:March 29, 2022
  • Post category:Python
  • Post comments:0 Comments

Hello, I leave you a small script that will serve you as I said in the title script to upload files to a server using python in a single command…

Continue ReadingPython 3 script to upload files to server

Script To Average Calculator in Desktop App using Pyton

  • Post author:Sebas
  • Post published:March 29, 2022
  • Post category:Python
  • Post comments:0 Comments

script to build average calculator in a desktop app using Python 3 and Tkinter just copy and paste in your console and run it import tkinter as tk from functools…

Continue ReadingScript To Average Calculator in Desktop App using Pyton

Python script To Convert ASCII to Chart

  • Post author:Sebas
  • Post published:March 29, 2022
  • Post category:Python
  • Post comments:0 Comments

hello programmers, in this short post I am going to share a short script written in paython so that you can convert Ascll to Chart using a single script, I…

Continue ReadingPython script To Convert ASCII to Chart
  • Go to the previous page
  • 1
  • 2
  • 3
  • Go to the next page

Search something

Categories

  • JavaScript
  • Python
Copyright - OceanWP Theme by OceanWP